mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-08 15:05:17 +02:00
[fix] change default value of LLMConfig.stream to True
This commit is contained in:
parent
f31d2a198e
commit
1c9214e18d
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class LLMConfig(YamlModel):
|
|||
frequency_penalty: float = 0.0
|
||||
best_of: Optional[int] = None
|
||||
n: Optional[int] = None
|
||||
stream: bool = False
|
||||
stream: bool = True
|
||||
logprobs: Optional[bool] = None # https://cookbook.openai.com/examples/using_logprobs
|
||||
top_logprobs: Optional[int] = None
|
||||
timeout: int = 600
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue