electron-ollama
Version:
Bundle Ollama with your Electron.js app for seamless user experience
13 lines • 346 B
TypeScript
import { OllamaServerConfig } from './types';
export declare class ElectronOllamaServer {
private process;
private binPath;
private log;
constructor(config: OllamaServerConfig);
start(executableName: string): void;
/**
* Stop the Ollama server
*/
stop(): Promise<void>;
}
//# sourceMappingURL=server.d.ts.map