UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

11 lines (8 loc) 305 B
import type { IAgenticaHistoryJson } from "../json/IAgenticaHistoryJson"; import type { AgenticaHistoryBase } from "./AgenticaHistoryBase"; export interface AgenticaAssistantMessageHistory extends AgenticaHistoryBase< "assistantMessage", IAgenticaHistoryJson.IAssistantMessage > { text: string; }