UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

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