提交 b2278f2f 作者: hzg0601

更改api.py的chat函数的history的类型为Optional,修复chat接口不可调用的问题

上级 3b6819f0
......@@ -374,7 +374,7 @@ async def bing_search_chat(
async def chat(
question: str = Body(..., description="Question", example="工伤保险是什么?"),
history: List[List[str]] = Body(
history: Optional[List[List[str]]] = Body(
[],
description="History of previous questions and answers",
example=[
......@@ -392,7 +392,6 @@ async def chat(
resp = answer_result.llm_output["answer"]
history = answer_result.history
pass
return ChatMessage(
question=question,
response=resp,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论