Skip to content

Commit 4a1299f

Browse files
author
Sarisha Bidawatka
committed
Removing defaults for ModelParams
1 parent 6905aba commit 4a1299f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fmcore/llm/types/llm_types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class ModelParams(MutableTyped):
2020
only the tokens comprising the top `p` cumulative probability mass.
2121
"""
2222

23-
temperature: Optional[float] = 0.5
24-
max_tokens: Optional[int] = 1024
25-
top_p: Optional[float] = 0.5
23+
temperature: Optional[float] = None
24+
max_tokens: Optional[int] = None
25+
top_p: Optional[float] = None
2626

2727

2828
class LLMConfig(MutableTyped):

0 commit comments

Comments
 (0)