(s: string)
| 43 | } |
| 44 | |
| 45 | function toPascalCase(s: string): string { |
| 46 | return s |
| 47 | .split(/[-_\s]+/) |
| 48 | .map((w) => w.charAt(0).toUpperCase() + w.slice(1).toLowerCase()) |
| 49 | .join(''); |
| 50 | } |
| 51 | |
| 52 | function loadLlmConfig(configFile: string): LlmConfig { |
| 53 | try { |