Files
aicode/app.py

18 lines
544 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# AI 智能问答项目 - zcj 专属
import streamlit as st
from datetime import datetime
st.title("✅ AI 智能助手 - zcj")
st.subheader("Claude 自动生成代码")
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
st.write(f"当前时间:{now}")
user_input = st.text_input("请输入你的问题:")
if user_input:
st.success(f"AI 回复:你输入的内容是 → {user_input}")
st.info("状态:代码运行正常")
st.markdown("---")
st.caption("作者zcj | 仓库ssh://git@82.156.249.211:2222/zcj/aicode.git")