| 12 | description: str = Field(description="Field description") |
| 13 | |
| 14 | class SchemaInput(BaseModel): |
| 15 | fields: List[SchemaField] = Field(description="List of schema fields") |
| 16 | |
| 17 | @tool |
| 18 | def add_url(url: str) -> Dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected