(url?: string)
| 70 | return type as CommitType; |
| 71 | }, |
| 72 | proxy(url?: string) { |
| 73 | if (!url || url.length === 0) { |
| 74 | return undefined; |
| 75 | } |
| 76 | |
| 77 | parseAssert('proxy', /^https?:\/\//.test(url), 'Must be a valid URL'); |
| 78 | |
| 79 | return url; |
| 80 | }, |
| 81 | model(model?: string) { |
| 82 | if (!model || model.length === 0) { |
| 83 | return 'openai/gpt-oss-120b'; |
nothing calls this directly
no test coverage detected