Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Platform Capabilities

General Bots provides a unique combination of capabilities that differentiate it from other AI platforms. This document outlines what makes General Bots suitable for organizations seeking customizable, self-hosted AI automation.

General Bots

Core Differentiators

Self-Hosted & Open Source

General Bots runs entirely on your infrastructure. Your data never leaves your servers, and you have full access to the source code under AGPL licensing.

CapabilityGeneral Bots
Self-hosted deployment✅ Full control
Open source✅ AGPL licensed
Data sovereignty✅ Your infrastructure
Custom modifications✅ Full source access
Per-user licensing✅ None required

Customization & Extensibility

Build exactly what you need with BASIC scripting and instant API creation:

' Create a custom API endpoint
WEBHOOK "customer-lookup"

customer_id = params.id
USE KB "customer-data"

response = LLM "Get information about customer " + customer_id

WITH result = NEW OBJECT
    .customer_id = customer_id
    .data = response
    .generated_at = NOW()
END WITH

This creates a working API endpoint in seconds without separate deployment or infrastructure configuration.

You can build custom webhooks and APIs, automated workflows with BASIC scripts, integrations with any external system, multi-channel chatbots, document processing pipelines, and scheduled automation tasks.

Knowledge Base & RAG

Full control over your knowledge base with built-in retrieval-augmented generation:

' Load multiple knowledge sources
USE KB "company-policies"
USE KB "product-catalog"
USE KB "customer-faq"

SET CONTEXT "You are a helpful customer service agent."

answer = LLM user_question

' Save for training and analysis
INSERT "conversations", #{
    question: user_question,
    answer: answer,
    timestamp: NOW()
}

The knowledge base system supports multiple vector collections, custom embedding models, semantic search, context compaction, semantic caching, and full document indexing.

Multi-Channel Deployment

Deploy once, reach users everywhere:

' Same code works across all channels
TALK "How can I help you today?"
HEAR question
response = LLM question
TALK response

Supported channels include web chat, WhatsApp Business, Teams, Slack, Telegram, SMS, email, and voice through LiveKit.

Database & Integration

Direct database access and unlimited API integrations:

' Direct SQL access
customers = FIND "customers", "region = 'EMEA'"

' REST APIs
data = GET "https://api.example.com/data"
POST "https://api.crm.com/leads", lead_data

' GraphQL
result = GRAPHQL "https://api.github.com/graphql", query, vars

There is no connector marketplace and no per-integration fees. You can connect to anything with HTTP.

AI Capabilities

Native AI integration without additional licensing:

FeatureImplementation
Chat assistanceLLM keyword
Document Q&AUSE KB + RAG
Image generationIMAGE keyword
Video generationVIDEO keyword
Speech-to-textHEAR AS AUDIO
Text-to-speechAUDIO keyword
Vision/OCRSEE keyword

Use any LLM provider including OpenAI, Anthropic, or local models. You can run entirely offline with local inference.

Automation Power

BASIC scripting provides full programming capabilities:

SET SCHEDULE "every day at 9am"

' Daily report automation
sales = AGGREGATE "orders", "SUM", "total", "date = TODAY()"
count = AGGREGATE "orders", "COUNT", "id", "date = TODAY()"

SET CONTEXT "You are a business analyst."
summary = LLM "Sales: $" + sales + ", Orders: " + count

SEND MAIL TO "team@company.com" SUBJECT "Daily Report" BODY summary

Automation features include scheduled tasks using cron syntax, event-driven webhooks, database triggers, conditional logic, loops and iterations, error handling, and multi-step workflows.

When General Bots Excels

General Bots is the right choice when you need custom chatbots for customer service, internal support, or specialized domains where you control the knowledge base and conversation flow.

Workflow automation that goes beyond simple triggers benefits from the full programming logic with database access, API calls, and AI integration that General Bots provides.

Multi-channel deployment where the same bot serves users on web, mobile messaging, and enterprise platforms is straightforward with General Bots.

Data sovereignty requirements are met through self-hosted deployment that keeps all data on your infrastructure.

Cost control is achieved without per-user licensing that scales with your organization.

Integration flexibility allows connecting to any system without marketplace limitations.

Deployment Options

Self-Hosted

Run General Bots on your own infrastructure with single binary deployment, container support through LXC and Docker, horizontal scaling, and full observability.

Quick Start

./botserver

Access at http://localhost:8080 and start building.

Summary

General Bots combines self-hosting for complete data control, BASIC scripting for powerful automation, multi-channel support for broad reach, native AI without extra licensing, open source for transparency and customization, and no per-user fees for predictable costs.

For organizations that need more than a simple chatbot—those requiring custom integrations, complex workflows, and full control over their AI deployment—General Bots provides the foundation to build exactly what you need.

See Also