Files
shockbot/agents/index.ts
T

7 lines
208 B
TypeScript

import { ollamaAgent } from "./ollama.ts";
import type { Agent } from "./shared.ts";
export type { Agent } from "./shared.ts";
export const agents = { ollama: ollamaAgent } satisfies Record<string, Agent>;