import { type Api, type AssistantMessage, type Context, type Model } from "@mariozechner/pi-ai"; export type RecipeAnthropicReply = { text: string; message: AssistantMessage; }; export type RecipeAnthropicReplyOptions = { sessionId?: string; systemPrompt?: string; tools?: Context["tools"]; requireText?: boolean; }; /** * Calls Anthropic with current recipe messages and returns assistant text + message. * Expects: messages contain valid chat turns and apiKey is authorized. */ export declare function recipeAnthropicReplyGet(messages: Context["messages"], apiKey: string, model: Model, options?: RecipeAnthropicReplyOptions): Promise; //# sourceMappingURL=recipeAnthropicReplyGet.d.ts.map