import type { ProviderName } from '../core/src/index.ts'; export type AgentConfig = { name: string; prompt: string; tools: string[]; provider?: ProviderName; model?: string; }; export type AgentConfigEntry = { tools?: string[]; appendTools?: string[]; prompt?: string; provider?: string; model?: string; }; export type AgentsJson = Record;