Replies: 1 comment
-
If I set env: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
from fastapi.responses import StreamingResponse
@app.post(.......):
return StreamingResponse(
content=model.chat_stream(chat_request), media_type="text/event-stream"
)
Beta Was this translation helpful? Give feedback.
All reactions