(modelId: string)
| 179 | * Check if a model ID is a foundation model (e.g., "anthropic.claude-sonnet-4-5-20250929-v1:0") |
| 180 | */ |
| 181 | export function isFoundationModel(modelId: string): boolean { |
| 182 | return modelId.startsWith('anthropic.') |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Cross-region inference profile prefixes for Bedrock. |
no outgoing calls
no test coverage detected