Spaces:
Running
Running
File size: 8,913 Bytes
49fc911 17d9154 49fc911 c8aeeb9 17d9154 49fc911 17d9154 0bf6104 17eaf84 0bf6104 17d9154 49fc911 ecf5360 49fc911 17d9154 c8aeeb9 17b5c7c c8aeeb9 ecf5360 c8aeeb9 ecf5360 17b5c7c ecf5360 c8aeeb9 ecf5360 17b5c7c c8aeeb9 ecf5360 d62d920 c8aeeb9 ecf5360 17b5c7c c8aeeb9 ecf5360 d62d920 17b5c7c 17d9154 49fc911 17d9154 49fc911 17b5c7c 49fc911 17d9154 49fc911 17b5c7c 17d9154 49fc911 17d9154 c8aeeb9 49fc911 8d5c525 49fc911 9fecfa8 40d2a31 9fecfa8 49fc911 8d5c525 d62d920 8d5c525 17d9154 ecf5360 c8aeeb9 ecf5360 17eaf84 c8aeeb9 8d5c525 ecf5360 8d5c525 ecf5360 8d5c525 ecf5360 8d5c525 ecf5360 8d5c525 c8aeeb9 17eaf84 c8aeeb9 17b5c7c 17d9154 49fc911 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
import streamlit as st
import httpx
import json
import os
import re
# ============================================================
# 配置
# ============================================================
STEPFUN_API_KEY = os.environ.get("STEPFUN_API_KEY", "")
STEPFUN_BASE_URL = "https://api.stepfun.com/v1"
MODEL_NAME = "step-3.5-flash"
HF_CONFIG_URL = "https://huggingface.co/stepfun-ai/Step-3.5-Flash/raw/main/config.json"
STEPFUN_LOGO_URL = "https://huggingface.co/stepfun-ai/Step-3.5-Flash/resolve/main/stepfun.svg"
STEPFUN_LOGO_PATH = "/tmp/stepfun_logo.svg"
def download_logo():
"""下载 StepFun logo 到本地"""
try:
response = httpx.get(STEPFUN_LOGO_URL, timeout=10.0, follow_redirects=True)
if response.status_code == 200:
with open(STEPFUN_LOGO_PATH, "wb") as f:
f.write(response.content)
return True
except Exception:
pass
return False
def get_assistant_avatar():
"""获取助手头像,优先使用下载的 logo,失败则用 emoji"""
if os.path.exists(STEPFUN_LOGO_PATH):
return STEPFUN_LOGO_PATH
return "🚀"
# 启动时下载 logo
download_logo()
st.set_page_config(
page_title="Step-3.5-Flash",
page_icon="🚀",
layout="centered",
)
# 简化样式 - 只定义思考区域
st.markdown("""
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
.thinking-container {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 10px 14px;
margin-bottom: 10px;
max-height: 150px;
overflow-y: auto;
font-size: 13px;
line-height: 1.5;
color: #64748b;
}
.thinking-container::-webkit-scrollbar {
width: 4px;
}
.thinking-container::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 2px;
}
.thinking-label {
font-size: 12px;
color: #94a3b8;
margin-bottom: 4px;
}
</style>
""", unsafe_allow_html=True)
@st.cache_data(ttl=3600)
def fetch_model_config():
try:
response = httpx.get(HF_CONFIG_URL, timeout=10.0)
if response.status_code == 200:
return response.json()
except:
pass
return None
def format_messages(history, system_prompt: str, user_message: str):
messages = []
if system_prompt.strip():
messages.append({"role": "system", "content": system_prompt})
for msg in history:
if msg["role"] in ["user", "assistant"]:
content = msg.get("content", "")
if content:
messages.append({"role": msg["role"], "content": content})
messages.append({"role": "user", "content": user_message})
return messages
def chat_stream(message: str, history: list, system_prompt: str, max_tokens: int, temperature: float, top_p: float):
"""流式聊天,返回 (reasoning, content) 生成器"""
messages = format_messages(history, system_prompt, message)
reasoning = ""
content = ""
try:
headers = {
"Authorization": f"Bearer {STEPFUN_API_KEY}",
"Content-Type": "application/json",
}
payload = {
"model": MODEL_NAME,
"messages": messages,
"stream": True,
"max_tokens": max_tokens,
"temperature": temperature if temperature > 0 else 0.01,
"top_p": top_p,
}
with httpx.stream("POST", f"{STEPFUN_BASE_URL}/chat/completions", headers=headers, json=payload, timeout=120.0) as response:
response.raise_for_status()
for line in response.iter_lines():
if not line or not line.startswith("data: "):
continue
data_str = line[6:]
if data_str == "[DONE]":
break
try:
chunk = json.loads(data_str)
delta = chunk.get("choices", [{}])[0].get("delta", {})
if delta.get("reasoning"):
reasoning += delta["reasoning"]
yield reasoning, content
if delta.get("content"):
content += delta["content"]
yield reasoning, content
except json.JSONDecodeError:
continue
yield reasoning, content
except httpx.HTTPStatusError as e:
yield reasoning, f"❌ API 错误: {e.response.status_code}"
except Exception as e:
yield reasoning, f"❌ 错误: {str(e)}"
def clean_thinking(text: str) -> str:
"""清理思考内容中的标签"""
if not text:
return ""
# 移除 <think> 标签
text = re.sub(r'</?think>', '', text)
return text.strip()
def render_thinking_expander(thinking_text: str, is_streaming: bool = False):
"""使用 expander 渲染思考内容"""
if thinking_text:
cleaned = clean_thinking(thinking_text)
with st.expander("💭 思考过程", expanded=is_streaming):
st.text(cleaned)
def main():
# 侧边栏设置
with st.sidebar:
st.header("⚙️ 设置")
system_prompt = st.text_area("系统提示词", value="你是一个有帮助的 AI 助手。", height=80)
max_tokens = st.slider("最大长度", 256, 256000, 4096, step=256, help="最大 128k")
temperature = st.slider("Temperature", 0.0, 1.0, 0.7, step=0.1)
top_p = st.slider("Top-p", 0.1, 0.99, 0.9, step=0.05)
st.divider()
if st.button("🗑️ 清空对话", use_container_width=True):
st.session_state.messages = []
st.rerun()
st.divider()
with st.expander("📋 模型配置"):
config = fetch_model_config()
if config:
st.json(config)
# 初始化 session state
if "messages" not in st.session_state:
st.session_state.messages = []
if "pending_prompt" not in st.session_state:
st.session_state.pending_prompt = None
# 标题
st.title("🚀 Step-3.5-Flash")
# 显示历史消息
for msg in st.session_state.messages:
if msg["role"] == "user":
with st.chat_message("user"):
st.markdown(msg["content"])
elif msg["role"] == "assistant":
with st.chat_message("assistant", avatar=get_assistant_avatar()):
# 思考内容用 expander
if msg.get("thinking"):
render_thinking_expander(msg["thinking"], is_streaming=False)
# 回答内容用 markdown
st.markdown(msg.get("content", ""))
# 示例问题(无消息时显示)
if not st.session_state.messages:
st.caption("💡 试试这些问题:")
examples = [
"请解释一下什么是机器学习?",
"帮我写一个 Python 快速排序算法",
"1000以内有多少个质数?",
]
cols = st.columns(len(examples))
for i, example in enumerate(examples):
if cols[i].button(example, key=f"ex_{i}", use_container_width=True):
st.session_state.pending_prompt = example
st.rerun()
# 输入框(固定在底部)
prompt = st.chat_input("输入消息...")
# 处理 pending_prompt(来自示例按钮)
if st.session_state.pending_prompt:
prompt = st.session_state.pending_prompt
st.session_state.pending_prompt = None
if prompt:
# 添加并显示用户消息
st.session_state.messages.append({"role": "user", "content": prompt})
with st.chat_message("user"):
st.markdown(prompt)
# 助手回复
with st.chat_message("assistant", avatar=get_assistant_avatar()):
# 思考内容占位符
thinking_placeholder = st.empty()
# 回答内容占位符
answer_placeholder = st.empty()
full_response = ""
full_thinking = ""
for thinking, response in chat_stream(
prompt,
st.session_state.messages[:-1],
system_prompt,
max_tokens,
temperature,
top_p,
):
full_thinking = thinking
full_response = response if response else "▌"
# 更新思考内容
if full_thinking:
with thinking_placeholder.container():
render_thinking_expander(full_thinking, is_streaming=True)
# 更新回答内容
answer_placeholder.markdown(full_response)
# 保存消息
st.session_state.messages.append({
"role": "assistant",
"content": full_response,
"thinking": full_thinking,
})
st.rerun()
if __name__ == "__main__":
main()
|