Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/fmcore/llm/types/llm_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class ModelParams(MutableTyped):
only the tokens comprising the top `p` cumulative probability mass.
"""

temperature: Optional[float] = 0.5
max_tokens: Optional[int] = 1024
top_p: Optional[float] = 0.5
temperature: Optional[float] = None
max_tokens: Optional[int] = None
top_p: Optional[float] = None


class LLMConfig(MutableTyped):
Expand Down