UNPKG

aichat-core

Version:

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

11 lines (10 loc) 228 B
import Chioce from "./LLMChoice"; import LLMUsage from "./LLMUsage"; export default interface LLMResponse { id: string; choices: Chioce[]; created: number; model: string; msg?: string; usage: LLMUsage; }