File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/huggingface_hub/inference/_generated/types Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,7 @@ class ChatCompletionOutputToolCall(BaseInferenceType):
239
239
class ChatCompletionOutputMessage (BaseInferenceType ):
240
240
role : str
241
241
content : Optional [str ] = None
242
+ reasoning : Optional [str ] = None
242
243
tool_call_id : Optional [str ] = None
243
244
tool_calls : Optional [List [ChatCompletionOutputToolCall ]] = None
244
245
@@ -292,6 +293,7 @@ class ChatCompletionStreamOutputDeltaToolCall(BaseInferenceType):
292
293
class ChatCompletionStreamOutputDelta (BaseInferenceType ):
293
294
role : str
294
295
content : Optional [str ] = None
296
+ reasoning : Optional [str ] = None
295
297
tool_call_id : Optional [str ] = None
296
298
tool_calls : Optional [List [ChatCompletionStreamOutputDeltaToolCall ]] = None
297
299
You can’t perform that action at this time.
0 commit comments