(surface: string, model: ModelName)
| 235 | * Format: "surface/model" (e.g., "cli/claude-sonnet") |
| 236 | */ |
| 237 | export function buildSurfaceKey(surface: string, model: ModelName): string { |
| 238 | return `${surface}/${getCanonicalName(model)}` |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * Compute SHA-256 hash of content. |
nothing calls this directly
no test coverage detected