(values: string[])
| 61 | const ALLOWED_MODALITIES = new Set(["text", "audio", "image", "video", "pdf"]); |
| 62 | |
| 63 | function modalities(values: string[]): string[] { |
| 64 | return values |
| 65 | .map((v) => v.toLowerCase()) |
| 66 | .filter((v) => ALLOWED_MODALITIES.has(v)); |
| 67 | } |
| 68 | |
| 69 | function perMTok(price: string): number { |
| 70 | const n = parseFloat(price); |