UNPKG

aichat-core

Version:

AI 流式聊天业务核心TS模型封装及业务实现模块

6 lines (5 loc) 136 B
export default interface LLMMessage { role: "system" | "assistant" | "user"; content: string; reasoning_content?: string; }