Request to validate a tool call against an ExecutionToken.
| 277 | |
| 278 | |
| 279 | class ScopeCheckRequest(BaseModel): |
| 280 | """Request to validate a tool call against an ExecutionToken.""" |
| 281 | token_id: str = Field(min_length=10, max_length=32) |
| 282 | tool_name: str = Field(min_length=1, max_length=64) |
| 283 | params: dict = Field(default_factory=dict) |
| 284 | |
| 285 | |
| 286 | class ScopeCheckResponse(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected