| 25 | from numpy.linalg import norm |
| 26 | |
| 27 | class CodeSearchArgs(BaseModel): |
| 28 | names: list[str] = Field(..., description="The names of the identifiers to search. Identifier should be a single word like `some_function` not `something.something`") |
| 29 | |
| 30 | class CodeSearchTool(BaseTool): |
| 31 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected