mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-08 15:05:17 +02:00
fix
This commit is contained in:
parent
e52b48ccc5
commit
3125441505
2 changed files with 7 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
aiohttp==3.8.4
|
||||
#azure_storage==0.37.0
|
||||
channels==4.0.0
|
||||
chromadb==0.4.21
|
||||
# chromadb
|
||||
# Django==4.1.5
|
||||
# docx==0.2.4
|
||||
#faiss==1.5.3
|
||||
|
|
|
|||
|
|
@ -23,7 +23,12 @@ default_resp = ChatCompletion(
|
|||
object="chat.completion",
|
||||
created=1703300855,
|
||||
choices=[
|
||||
Choice(finish_reason="stop", index=0, message=ChatCompletionMessage(role="assistant", content=resp_content))
|
||||
Choice(
|
||||
finish_reason="stop",
|
||||
logprobs=None,
|
||||
index=0,
|
||||
message=ChatCompletionMessage(role="assistant", content=resp_content),
|
||||
)
|
||||
],
|
||||
usage=CompletionUsage(completion_tokens=110, prompt_tokens=92, total_tokens=202),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue