代码如下,目前可以流式返回内容到页面上,但是我希望流式返回结束后,我可以进行一些操作,例如保存完整返回到日志、计费等。但是目前 process_response 只会在页面打开后立即执行,并且打印的是“完成 [ ]” 空的 list
应该怎么写呢?(问了 GPT ,翻来覆去也是不对
@app.route("/chat/test", methods=["GET", "POST"])
def chat():
# app.logger.info
os.environ["API_URL"] = "https://api.openai.com/v1/chat/completions"
chatbot = Chatbot(api_key="key",
system_prompt='请帮我生成一句诗,描写春天的'
)
output = []
def generate_response():
for data in chatbot.ask_stream("生成"):
output.append(data)
yield data
@after_this_request
def process_response(response): # 响应结束后调用该函数
print("完成", output)
return response
return Response(generate_response(), mimetype="text/event-stream")
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.