File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
pydantic_ai_slim/pydantic_ai Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -545,7 +545,6 @@ def identifier(self) -> str:
545545 It's also included in inline-text delimiters for providers that require inlining text documents, so the model can
546546 distinguish multiple files.
547547 """
548- print (self ._identifier )
549548 return self ._identifier or _multi_modal_content_identifier (self .data )
550549
551550 @property
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ class ModelRequestParameters:
306306 function_tools : list [ToolDefinition ] = field (default_factory = list )
307307 builtin_tools : list [AbstractBuiltinTool ] = field (default_factory = list )
308308
309- output_mode : OutputMode | None = 'text'
309+ output_mode : OutputMode | None = 'text' # TODO (DouweM): None or new `'auto'` value? AutoOutputSchema is not bad.
310310 output_object : OutputObjectDefinition | None = None
311311 output_tools : list [ToolDefinition ] = field (default_factory = list )
312312 prompted_output_template : str | None = None
You can’t perform that action at this time.
0 commit comments