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.
1 parent c6a03fb commit 2eca667Copy full SHA for 2eca667
src/inferencesh/models/llm.py
@@ -87,9 +87,9 @@ class LLMInput(BaseAppInput):
87
context_size: int = Field(default=4096)
88
89
# Model specific flags
90
- reasoning: bool = Field(default=False)
+ reasoning: Optional[bool] = Field(default=None)
91
92
- tools: List[Dict[str, Any]] = Field(default=[])
+ tools: Optional[List[Dict[str, Any]]] = Field(default=None)
93
94
class LLMUsage(BaseAppOutput):
95
stop_reason: str = ""
0 commit comments