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

    Tool for sending photos via Telegram Bot API

    Implements

    Index

    Constructors

    Properties

    category: "communications" = 'communications'
    description: "Send a photo to a Telegram chat or user with an optional caption." = 'Send a photo to a Telegram chat or user with an optional caption.'
    displayName: "Send Telegram Photo" = 'Send Telegram Photo'
    hasSideEffects: true
    id: "telegramSendPhoto" = 'telegramSendPhoto'
    inputSchema: {
        properties: {
            caption: { description: string; type: string };
            chatId: { description: string; type: string[] };
            disableNotification: {
                default: boolean;
                description: string;
                type: string;
            };
            parseMode: { description: string; enum: string[]; type: string };
            photo: { description: string; type: string };
        };
        required: string[];
        type: string;
    } = ...
    name: "telegramSendPhoto" = 'telegramSendPhoto'
    outputSchema: {
        properties: {
            chatId: { type: string[] };
            date: { type: string };
            error: { type: string };
            messageId: { type: string };
            success: { type: string };
        };
        type: string;
    } = ...
    requiredCapabilities: string[] = ...
    version: "1.0.0" = '1.0.0'

    Methods