Files
shockbot/agents/index.ts
T
2025-11-12 19:57:34 -05:00

10 lines
209 B
TypeScript

import { claude } from "./claude.ts";
import { codex } from "./codex.ts";
export const agents = {
claude,
codex,
} as const;
export type AgentInputKey = (typeof agents)[keyof typeof agents]["inputKey"];