ADK TypeScript Documentation - v0.0.4
    Preparing search index...

    Interface Message

    Represents a message in the conversation

    interface Message {
        content: MessageContent;
        function_call?: { arguments: string; name: string };
        name?: string;
        role: MessageRole;
        tool_call_id?: string;
        tool_calls?: ToolCall[];
    }
    Index

    Properties

    function_call?: { arguments: string; name: string }
    name?: string
    tool_call_id?: string
    tool_calls?: ToolCall[]