UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

6 lines (5 loc) 290 B
import type { IAgenticaHistoryJson } from "../json/IAgenticaHistoryJson"; import type { AgenticaHistoryBase } from "./AgenticaHistoryBase"; export interface AgenticaSystemMessageHistory extends AgenticaHistoryBase<"systemMessage", IAgenticaHistoryJson.ISystemMessage> { text: string; }