Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in playground for Azure OpenAI #493

Merged
merged 2 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions backend/chainlit/playground/providers/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,11 @@ async def create_completion(self, request):

async def create_event_stream():
async for stream_resp in response:
token = stream_resp.choices[0]["delta"].get("content", "")
yield token
if hasattr(stream_resp, 'choices') and len(stream_resp.choices) > 0:
token = stream_resp.choices[0]["delta"].get("content", "")
yield token
else:
continue

return StreamingResponse(create_event_stream())

Expand Down