We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6905aba + 4a1299f commit e8619abCopy full SHA for e8619ab
src/fmcore/llm/types/llm_types.py
@@ -20,9 +20,9 @@ class ModelParams(MutableTyped):
20
only the tokens comprising the top `p` cumulative probability mass.
21
"""
22
23
- temperature: Optional[float] = 0.5
24
- max_tokens: Optional[int] = 1024
25
- top_p: Optional[float] = 0.5
+ temperature: Optional[float] = None
+ max_tokens: Optional[int] = None
+ top_p: Optional[float] = None
26
27
28
class LLMConfig(MutableTyped):
0 commit comments