backend
Candid Interface Definition
backend.did
backend.didType Definitions
type AssistantMessage = record {
content : opt text;
tool_calls : vec ToolCall;
};type ChatMessage = variant {
tool : record { content : text; tool_call_id : text };
user : record { content : text };
assistant : AssistantMessage;
system : record { content : text };
};Service Definition
Last updated