Skip to content

Commit 2eca667

Browse files
committed
make llm optionals
1 parent c6a03fb commit 2eca667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/inferencesh/models/llm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ class LLMInput(BaseAppInput):
8787
context_size: int = Field(default=4096)
8888

8989
# Model specific flags
90-
reasoning: bool = Field(default=False)
90+
reasoning: Optional[bool] = Field(default=None)
9191

92-
tools: List[Dict[str, Any]] = Field(default=[])
92+
tools: Optional[List[Dict[str, Any]]] = Field(default=None)
9393

9494
class LLMUsage(BaseAppOutput):
9595
stop_reason: str = ""

0 commit comments

Comments
 (0)