GeminiとランダムワードAPIを活用したTelegram英語語彙ボット

中級

これはMiscellaneous, Multimodal AI分野の自動化ワークフローで、6個のノードを含みます。主にSet, Telegram, Aggregate, HttpRequest, ScheduleTriggerなどのノードを使用。 GeminiとランダムワードAPIを使ったTelegram英語単語ボット

前提条件
  • Telegram Bot Token
  • ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "783d2046f405cc6ecb20ef185376ed1023323a3da628b9d8156b1fb75c75e037",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "4e12712b-5541-41e4-9cf5-181aed2682ed",
      "name": "スケジュールトリガー",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        0,
        0
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "hours",
              "hoursInterval": 3
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "8a025bc9-489d-4448-944d-652bfc2baf77",
      "name": "HTTP リクエスト",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        208,
        0
      ],
      "parameters": {
        "url": "https://random-word-api.vercel.app/api?words=3",
        "options": {}
      },
      "typeVersion": 4.2
    },
    {
      "id": "fb88b57f-7c18-431e-8d4b-429253803433",
      "name": "集約",
      "type": "n8n-nodes-base.aggregate",
      "position": [
        624,
        0
      ],
      "parameters": {
        "options": {},
        "fieldsToAggregate": {
          "fieldToAggregate": [
            {
              "fieldToAggregate": "word"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "e7b00fe8-0a71-4e00-af8f-703887170dde",
      "name": "フィールド編集",
      "type": "n8n-nodes-base.set",
      "position": [
        416,
        0
      ],
      "parameters": {
        "mode": "raw",
        "options": {},
        "jsonOutput": "={\n  \"word\": \"{{ $json }}\"\n}\n"
      },
      "typeVersion": 3.4
    },
    {
      "id": "eae51ae4-cfd4-4d5a-b522-1c55bcce4863",
      "name": "モデルへのメッセージ",
      "type": "@n8n/n8n-nodes-langchain.googleGemini",
      "position": [
        832,
        0
      ],
      "parameters": {
        "modelId": {
          "__rl": true,
          "mode": "list",
          "value": "models/gemini-1.5-flash",
          "cachedResultName": "models/gemini-1.5-flash"
        },
        "options": {},
        "messages": {
          "values": [
            {
              "content": "=You are a vocabulary-summarizing AI. Please write a vocabulary digest message using the provided English words, including: the English word, the Vietnamese meaning, and one example sentence that contains that English word.\nToday's vocabulary list:\n{{ $json.word }}"
            }
          ]
        }
      },
      "credentials": {
        "googlePalmApi": {
          "id": "Atcc45Iqep6u15qs",
          "name": "Google Gemini(PaLM) Api account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "97be971a-7304-4f6d-9b68-f2c1c8b90363",
      "name": "テキストメッセージ送信",
      "type": "n8n-nodes-base.telegram",
      "position": [
        1184,
        0
      ],
      "webhookId": "947f3fe3-d410-41f5-8340-247dbfeee897",
      "parameters": {
        "text": "={{ $json.content.parts[0].text }}",
        "chatId": "xxxxx",
        "additionalFields": {}
      },
      "credentials": {
        "telegramApi": {
          "id": "Pq1cc0nSnbtjpiPv",
          "name": "learn_english_bot"
        }
      },
      "typeVersion": 1.2
    }
  ],
  "pinData": {},
  "connections": {
    "fb88b57f-7c18-431e-8d4b-429253803433": {
      "main": [
        [
          {
            "node": "eae51ae4-cfd4-4d5a-b522-1c55bcce4863",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "e7b00fe8-0a71-4e00-af8f-703887170dde": {
      "main": [
        [
          {
            "node": "fb88b57f-7c18-431e-8d4b-429253803433",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "8a025bc9-489d-4448-944d-652bfc2baf77": {
      "main": [
        [
          {
            "node": "e7b00fe8-0a71-4e00-af8f-703887170dde",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "eae51ae4-cfd4-4d5a-b522-1c55bcce4863": {
      "main": [
        [
          {
            "node": "97be971a-7304-4f6d-9b68-f2c1c8b90363",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "4e12712b-5541-41e4-9cf5-181aed2682ed": {
      "main": [
        [
          {
            "node": "8a025bc9-489d-4448-944d-652bfc2baf77",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級 - その他, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

ApiFlash、Gemini Visionを使ってSheetsからTelegramへ自動送信する科技ニュースレポート
ApiFlash、Gemini Vision、SheetsからTelegramへの自動科技ニュースレポート
Set
Code
Limit
+
Set
Code
Limit
18 ノードCong Nguyen
市場調査
競合するWordPress分析器
毎日の競合対象WordPress分析(チャート、Gemini、Telegramを使用)
Limit
Merge
Telegram
+
Limit
Merge
Telegram
16 ノードCong Nguyen
市場調査
Gemini、Tavily および人間の審査を使用して SEO 最適化された WordPress ブログを生成
Gemini、Tavily、そして人間の審査を使ってSEO最適化されたWordPressブログを生成する
If
Set
Code
+
If
Set
Code
38 ノードAryan Shinde
コンテンツ作成
毎日の WhatsApp グループ スマート分析:GPT-4.1 による分析と音声メッセージの transcrição
毎日の WhatsApp グループ インタラクティブ分析:GPT-4.1 分析と音声メッセージ文字起こし
If
Set
Code
+
If
Set
Code
52 ノードDaniel Lianes
その他
AIを使用してウイルスのなYouTube動画を検出し、メールレポートを送信
AIを使ってウイルスのなYouTube動画を検出し、メールレポートを送信する
Set
Code
Sort
+
Set
Code
Sort
26 ノードgclbck
その他
Telegramフォーラムペルス:コミュニティモニタリングのためのGeminiとGroq AIモデル
Telegramフォーラムペルス:GeminiとGroq AIモデルを使ったコミュニティ監視
If
Set
Code
+
If
Set
Code
59 ノードNguyen Thieu Toan
その他
ワークフロー情報
難易度
中級
ノード数6
カテゴリー2
ノードタイプ6
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

作成者
Cong Nguyen

Cong Nguyen

@cong-nguyen

I’m a developer specialized in building web and mobile applications with AI integration and intelligent automation. With a solid background in data science, I help businesses build smarter digital solutions using cutting-edge technologies.

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34