(slug: string)
| 172 | } |
| 173 | |
| 174 | export function isKnownModel(slug: string): boolean { |
| 175 | return MODEL_CATALOG.some(m => m.slug === slug); |
| 176 | } |
| 177 | |
| 178 | /** Unknown slugs pass through as a bare `{ id }` so planners can reach |
| 179 | * server-side models that aren't in our prescriptive catalog. */ |
no outgoing calls
no test coverage detected