Unverified 提交 dc52bb13 作者: zzxs 提交者: GitHub

Update api.py (#540)

修改api部署json解析
上级 33683f44
......@@ -310,7 +310,7 @@ async def stream_chat(websocket: WebSocket, knowledge_base_id: str):
turn = 1
while True:
input_json = await websocket.receive_json()
question, history, knowledge_base_id = input_json[""], input_json["history"], input_json["knowledge_base_id"]
question, history, knowledge_base_id = input_json["question"], input_json["history"], input_json["knowledge_base_id"]
vs_path = os.path.join(VS_ROOT_PATH, knowledge_base_id)
if not os.path.exists(vs_path):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论