(modelName: string)
| 28 | ); |
| 29 | |
| 30 | function modelFileName(modelName: string): string { |
| 31 | return modelName + ".toml"; |
| 32 | } |
| 33 | |
| 34 | type OllamaModel = Omit<Model, "id"> & { |
| 35 | limit: Model["limit"] & { output?: number }; |
no outgoing calls
no test coverage detected