mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
fix: api streaming TypeError: Object of type generator is not JSON serializable
This commit is contained in:
parent
483673f7ed
commit
ee5f2a4ab1
1 changed files with 2 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
from fastapi import FastAPI, Response, Request
|
||||
from fastapi.responses import StreamingResponse
|
||||
from typing import List, Union, Any, Dict, AnyStr
|
||||
from ._tokenizer import tokenize
|
||||
from .. import BaseProvider
|
||||
|
|
@ -151,7 +152,7 @@ class Api:
|
|||
except GeneratorExit:
|
||||
pass
|
||||
|
||||
return Response(content=json.dumps(streaming(), indent=4), media_type="application/json")
|
||||
return StreamingResponse(streaming(), media_type="text/event-stream")
|
||||
|
||||
@self.app.post("/v1/completions")
|
||||
async def completions():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue