MCPcopy Create free account
hub / github.com/MiniMax-AI/OpenRoom / ChatMessage

Interface ChatMessage

apps/webuiapps/src/lib/llmClient.ts:57–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57export interface ChatMessage {
58 role: 'system' | 'user' | 'assistant' | 'tool';
59 content: string;
60 tool_call_id?: string;
61 tool_calls?: ToolCall[];
62}
63
64export interface ToolCall {
65 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected