UNPKG

@tehreet/conduit

Version:

LLM API gateway with intelligent routing, robust process management, and health monitoring

12 lines 346 B
import { ConduitServer } from './server/ConduitServer'; export * from './lib'; export * from './core'; export * from './features'; interface RunOptions { port?: number; config?: any; silent?: boolean; } declare function run(options?: RunOptions): Promise<ConduitServer | undefined>; export { run }; //# sourceMappingURL=index.d.ts.map