Skip to main content

OpenAIMessage

@codebolt/agent


Interface: OpenAIMessage

Defined in: packages/agent/src/unified/types/libTypes.ts:67

OpenAI-compatible message format for conversations

Properties

PropertyTypeDescriptionDefined in
content| string | { text: string; type: string; }[]Content of the messagepackages/agent/src/unified/types/libTypes.ts:71
name?stringName for tool messagespackages/agent/src/unified/types/libTypes.ts:84
role"assistant" | "user" | "tool" | "system"Role of the message senderpackages/agent/src/unified/types/libTypes.ts:69
tool_call_id?stringTool call ID for tool messagespackages/agent/src/unified/types/libTypes.ts:73
tool_calls?{ function: { arguments: string; name: string; }; id: string; type: "function"; }[]Tool calls for assistant messagespackages/agent/src/unified/types/libTypes.ts:75