12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { claude } from "./claude.ts";
|
|
import { codex } from "./codex.ts";
|
|
import { jules } from "./jules.ts";
|
|
|
|
export const agents = {
|
|
claude,
|
|
codex,
|
|
jules,
|
|
} as const;
|
|
|
|
export type AgentInputKey = (typeof agents)[keyof typeof agents]["inputKey"];
|