(modelName: string, preferredQuantization?: string)
| 119 | } |
| 120 | |
| 121 | export async function pullModelWithRetry(modelName: string, preferredQuantization?: string): Promise<void> { |
| 122 | return await invoke<void>('pull_model_with_retry', { modelName, preferredQuantization }); |
| 123 | } |
| 124 | |
| 125 | export async function sendChatMessage( |
| 126 | dbPath: string, |
nothing calls this directly
no outgoing calls
no test coverage detected