We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94af76 commit 6011003Copy full SHA for 6011003
chatchat-server/chatchat/server/agent/graphs_factory/test_fastapi_streamlit.py
@@ -28,7 +28,7 @@ class State(TypedDict):
28
messages: Annotated[list, add_messages]
29
30
llm = create_agent_models(configs=None,
31
- model="Qwen2.5-72B-Instruct",
+ model="qwen2.5-instruct",
32
max_tokens=None,
33
temperature=0,
34
stream=True)
@@ -57,7 +57,7 @@ def chatbot(state: State):
57
return graph
58
59
60
-@app.get("/stream")
+@app.post("/stream")
61
async def openai_stream_output(request: Request):
62
async def generator():
63
graph = get_chatbot()
0 commit comments