| 134 | |
| 135 | |
| 136 | class AnthropicModelConfig(BaseModelConfig): |
| 137 | model_name: OptStr = "claude-opus-4-7" |
| 138 | anthropic_api_key: OptStr = "" |
| 139 | anthropic_endpoint: OptStr = "https://api.anthropic.com/v1/messages" |
| 140 | anthropic_version: OptStr = "2023-06-01" |
| 141 | max_output_tokens: int = 8000 |
| 142 | |
| 143 | |
| 144 | class AnthropicModel(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected