Files
vibn-agent-runner/dist/agents.d.ts
2026-02-26 14:50:20 -08:00

10 lines
250 B
TypeScript

import { ToolDefinition } from './tools';
export interface AgentConfig {
name: string;
description: string;
model: string;
systemPrompt: string;
tools: ToolDefinition[];
}
export declare const AGENTS: Record<string, AgentConfig>;