(arg: str, other: Annotated[int, "int arg"])
| 103 | schema = tool.schema |
| 104 | |
| 105 | def my_function2(arg: str, other: Annotated[int, "int arg"]) -> MyResult: |
| 106 | return MyResult(result="test") |
| 107 | |
| 108 | tool = FunctionTool(my_function2, description="Function tool.", strict=True) |
| 109 | schema = tool.schema |