Skip to content

@pgege/kaboo-runtime


Function: createKabooRunner()

createKabooRunner(store, options?): KabooAgentRunner

Defined in: src/runner.ts:357

Create a KabooAgentRunner bound to a ThreadStore. Pass the result to new CopilotRuntime({ agents, runner }).

const runtime = new CopilotRuntime({
  agents: { research_pipeline: new HttpAgent({ url: pipelineUrl }) },
  runner: createKabooRunner(new PostgresThreadStore({ dsn })),
});

Parameters

store

ThreadStore

options?

KabooRunnerOptions

Returns

KabooAgentRunner