AgentOS Extensions API - v1.0.3
    Preparing search index...

    Tool for handling Telegram callback queries

    HandleCallbackTool

    Implements

    Index

    Constructors

    Properties

    category: "communication" = 'communication'
    description: "Handle callback queries from inline keyboard buttons in Telegram messages." = 'Handle callback queries from inline keyboard buttons in Telegram messages.'
    displayName: "Handle Telegram Callback" = 'Handle Telegram Callback'
    hasSideEffects: true
    id: "telegramHandleCallback" = 'telegramHandleCallback'
    inputSchema: {
        properties: {
            cacheTime: { default: number; description: string; type: string };
            callbackQueryId: { description: string; type: string };
            showAlert: { default: boolean; description: string; type: string };
            text: { description: string; type: string };
            url: { description: string; type: string };
        };
        required: string[];
        type: string;
    } = ...
    name: "telegramHandleCallback" = 'telegramHandleCallback'
    version: "1.0.0" = '1.0.0'

    Methods

    • Parameters

      • args: {
            cacheTime?: number;
            callbackQueryId: string;
            showAlert?: boolean;
            text?: string;
            url?: string;
        }
      • context: ToolExecutionContext

      Returns Promise<ToolExecutionResult>