(real_func: ToolFunction[...])
| 2043 | |
| 2044 | # Otherwise, we were used as @function_tool(...), so return a decorator |
| 2045 | def decorator(real_func: ToolFunction[...]) -> FunctionTool: |
| 2046 | return _create_function_tool(real_func) |
| 2047 | |
| 2048 | return decorator |
| 2049 |
nothing calls this directly
no test coverage detected