(m: RawModel)
| 69 | } |
| 70 | |
| 71 | function hasAudioOutput(m: RawModel): boolean { |
| 72 | return typeof m !== "string" && !!m.output_modalities?.includes("audio"); |
| 73 | } |
| 74 | |
| 75 | function modelId(model: RawModel): string { |
| 76 | return typeof model === "string" ? model : model.id || model.name || ""; |
no outgoing calls
no test coverage detected