| 31 | |
| 32 | |
| 33 | class ToolUsage(BaseModel): |
| 34 | total_calls: int = 0 |
| 35 | distinct_tools: int = 0 |
| 36 | per_tool: dict[str, int] = Field(default_factory=dict) |
| 37 | |
| 38 | |
| 39 | class PaperSearchUsage(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected