Generic integration test for Unicode characters in tool calls.
test_unicode_tool_call_integration(
self,
model: BaseChatModel,
*,
tool_choice: str | None = None,
force_tool_call: bool = True
) -> NoneTests that Unicode characters in tool call arguments are preserved correctly,
not escaped as \\uXXXX sequences.
| Name | Type | Description |
|---|---|---|
model* | BaseChatModel | The chat model to test |
tool_choice | str | None | Default: NoneTool choice parameter to pass to |
force_tool_call | bool | Default: TrueWhether to force a tool call
(use |