gnilets commited on
Commit
5773582
·
verified ·
1 Parent(s): 4b750bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -124,7 +124,7 @@ async def proxy_openai_api(request: Request):
124
 
125
  content = bytearray()
126
  async for chunk in stream_response.aiter_bytes():
127
- if chunk.strip()
128
  yield chunk.strip()
129
  content.extend(chunk.strip())
130
 
 
124
 
125
  content = bytearray()
126
  async for chunk in stream_response.aiter_bytes():
127
+ if chunk.strip():
128
  yield chunk.strip()
129
  content.extend(chunk.strip())
130