UNPKG

daggerai

Version:

A simple and powerful Typescript based agent framework to help businesses thrive in the AI Agent revolution.

15 lines 317 B
export declare class Agent { id: string; role: string; goal: string; backstory: string; constructor(params: AgentParams); getRolePlaying(): string; } export interface AgentParams { id: string; role: string; goal: string; backstory: string; } //# sourceMappingURL=agent.d.ts.map