Overview

This guide walks you through connecting Ollama to Telegram using OpenClaw. You'll learn how to configure authentication, set up the channel, and deploy your AI assistant.

Ollama Features

  • Completely local
  • No API costs
  • Privacy-focused
  • Many model options

Telegram Capabilities

  • Direct messages
  • Group chats
  • Media support
  • Reactions
  • Native commands

Step 1: Configure Ollama

No authentication required for local instance

  1. Install Ollama from ollama.ai
  2. Run 'ollama pull llama3.3'
  3. Start Ollama service
  4. Configure baseUrl in OpenClaw

Step 2: Configure Telegram

  1. Create a bot with @BotFather on Telegram
  2. Copy the bot token provided
  3. Set TELEGRAM_BOT_TOKEN environment variable
  4. Add telegram configuration to openclaw.json
  5. Start the gateway and message your bot

Step 3: Combined Configuration

Add both configurations to your openclaw.json:

{
  "agents": {
    "defaults": {
      "model": {
        "primary": "ollama/llama3.3"
      }
    }
  },
  "models": {
    "providers": {
      "ollama": {
  "models": {
    "providers": {
      "ollama": {
        "baseUrl": "http://localhost:11434"
      }
    }
  },
  "channels": {
    "telegram": {
      "botToken": "${TELEGRAM_BOT_TOKEN}",
      "dmPolicy": "pairing",
      "allowFrom": ["alice", "bob"],
      "historyLimit": 20,
      "reactionNotifications": "own"
    }
  }
}
}

Step 4: Start the Gateway

# Start the gateway
openclaw gateway start

# Check status
openclaw status

# View logs
openclaw logs --follow

Access Control

Telegram supports the following access control policies:

DM Policies

Policy Description
allowlist Only senders in allowFrom list are processed
pairing Unknown senders receive a pairing code; admin must approve
open All DMs are processed (requires allowFrom: ["*"])

Group Policies

Policy Description
allowlist Only groups in groupAllowFrom are processed
open All groups are processed

Deploy Options

Choose how to deploy your Ollama + Telegram setup:

Frequently Asked Questions

How do I set up Ollama with Telegram?
Configure Ollama as your AI provider and enable Telegram as a channel in openclaw.json. The gateway routes Telegram messages to Ollama for processing automatically.
Is Ollama a good choice for Telegram bots?
Ollama works great with Telegram. No API costs and Full data privacy make it well-suited for AI assistant bot and Group automation.