| 55 | .passthrough(); |
| 56 | |
| 57 | interface ExistingModel { |
| 58 | base_model?: string; |
| 59 | base_model_omit?: string[]; |
| 60 | } |
| 61 | |
| 62 | async function loadExistingModel(filePath: string): Promise<ExistingModel | undefined> { |
| 63 | const file = Bun.file(filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected