UNPKG

@mastra/core

Version:

The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.

8 lines 561 B
import type { Metric } from '../eval'; import type { ToolAction } from '../tools'; import type { AgentConfig } from './types'; import { Agent as BaseAgent } from './index'; export declare class Agent<TAgentId extends string = string, TTools extends Record<string, ToolAction<any, any, any>> = Record<string, ToolAction<any, any, any>>, TMetrics extends Record<string, Metric> = Record<string, Metric>> extends BaseAgent<TAgentId, TTools, TMetrics> { constructor(config: AgentConfig<TAgentId, TTools, TMetrics>); } //# sourceMappingURL=index.warning.d.ts.map