@agi-cli/sdk
Version:
AI agent SDK for building intelligent assistants - tree-shakable and comprehensive
20 lines (16 loc) • 379 B
text/typescript
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<string, AgentConfigEntry>;