Skip to content

Commit 876f8ed

Browse files
committed
Run autoformatter
1 parent f7fbae9 commit 876f8ed

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/lmstudio/json_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,14 +1098,17 @@ def __init__(
10981098
class ToolParamDefDict(TypedDict):
10991099
type: type[Any]
11001100
default: NotRequired[Any]
1101+
11011102
ParamDefDict: TypeAlias = ToolParamDefDict
11021103
else:
11031104

11041105
class ToolParamDefDict(TypedDict, Generic[T]):
11051106
type: type[T]
11061107
default: NotRequired[T]
1108+
11071109
ParamDefDict: TypeAlias = ToolParamDefDict[Any]
11081110

1111+
11091112
class ToolFunctionDefDict(TypedDict):
11101113
"""SDK input format to specify an LLM tool call and its implementation (as a dict)."""
11111114

0 commit comments

Comments
 (0)