UNPKG

@lamemind/react-agent-ts

Version:

Streaming ReAct agent in typescript with multiple LLM providers

15 lines (14 loc) 317 B
export declare function systemPrompt(prompt: string | undefined): { role: string; content: { type: string; text: string; cache_control: { type: string; }; }[]; }; export declare function userMessage(message: string): { role: string; content: string; };