()
| 12 | |
| 13 | |
| 14 | def make_sample_tool(): |
| 15 | return ToolInfo( |
| 16 | name="t1", |
| 17 | namespace="ns1", |
| 18 | description="Test tool", |
| 19 | parameters={ |
| 20 | "properties": { |
| 21 | "a": {"type": "int"}, |
| 22 | "b": {"type": "string"}, |
| 23 | }, |
| 24 | "required": ["a"], |
| 25 | }, |
| 26 | is_async=False, |
| 27 | tags=["x"], |
| 28 | ) |
| 29 | |
| 30 | |
| 31 | def test_format_tool_for_display_minimal(): |
no test coverage detected