UNPKG

xinghuo-test

Version:

xinghuo

12 lines (11 loc) 278 B
import { MessageRole } from "./type"; export declare class ChatMessage { static fromUser(content: string): { role: MessageRole; content: string; }; static fromAssistant(content: string): { role: MessageRole; content: string; }; }