**Build conversational AI bots in minutes, not months.** General Bots lets you create intelligent chatbots by writing simple [BASIC scripts](./chapter-06-gbdialog/basics.md) and dropping in your [documents](./chapter-02/gbkb.md). No complex frameworks, no cloud dependencies, no AI expertise required.
<imgsrc="./assets/general-bots-2017.svg"alt="General Bots in 2017"style="max-height: 300px; width: 100%; object-fit: contain;">
Since 2017, Pragmatismo has championed the **No Forms** philosophy. The idea is simple but revolutionary:
> **People should converse, not fill forms.**
Traditional software forces users into rigid forms with dropdowns, checkboxes, and validation errors. But humans don't communicate that way. We talk. We explain. We ask questions.
General Bots was born from this vision: **replace forms with conversations**.
2.**Contextual projections** - Show relevant info when needed
3.**Minimal UI** - The less interface, the better
4.**AI interpretation** - Understand intent, not just input
## Quick Example
Want a student enrollment bot? Here's all you need:
1.**Drop your documents** in a [`.gbkb` folder](./chapter-02/gbkb.md):
```
edu.gbkb/
enrollment-policy.pdf
course-catalog.pdf
```
2.**Write a simple [tool](./chapter-03/kb-and-tools.md)** (optional):
```basic
' enrollment.bas
PARAM name, email, course
SAVE "enrollments.csv", name, email, course
TALK "Welcome to " + course + "!"
```
3.**Chat naturally**:
```
User: I want to enroll in computer science
Bot: I'll help you enroll! What's your name?
User: Sarah Chen
Bot: Welcome to Computer Science, Sarah!
```
No form. No UI. Just conversation.
## What Makes General Bots Different
### Just Run It
```bash
./botserver
```
That's it. No Kubernetes, no cloud accounts. The [bootstrap process](./chapter-01/installation.md) installs everything locally in 2-5 minutes. PostgreSQL, vector database, object storage, cache - all configured automatically with secure credentials stored in Vault.
### Real BASIC, Real Simple
We brought BASIC back for conversational AI. See our [complete keyword reference](./chapter-06-gbdialog/keywords.md):
```basic
' save-note.bas - A simple tool
PARAM topic, content
SAVE "notes.csv", topic, content, NOW()
TALK "Note saved!"
```
Four lines. That's a working tool the AI can call automatically.
### Documents = Knowledge
Drop PDFs, Word docs, or text files into `.gbkb/` folders. They're instantly searchable. No preprocessing, no configuration, no pipelines. The bot answers questions from your documents automatically.
### Tools = Functions
Create `.bas` files that the AI discovers and calls automatically. Need to save data? Send emails? Call APIs? Just write a tool. The AI figures out when and how to use it.
## Architecture at a Glance
General Bots is a single binary that includes everything:
The default bot is ready. Ask it anything. Modify `templates/default.gbai/` to customize.
## Core Philosophy
1.**No Forms** - Conversations replace forms everywhere
2.**Simplicity First** - If it needs documentation, it's too complex
3.**Everything Included** - No external dependencies to manage
4.**Production Ready** - Secure, scalable, enterprise-grade from day one
5.**AI Does the Work** - Don't write logic the LLM can handle
6.**Projections Over Screens** - Show data contextually, not in dashboards
## Technical Highlights
- **Language**: Written in Rust for performance and safety
- **Database**: PostgreSQL with Diesel ORM
- **Cache**: Redis-compatible cache for sessions
- **Storage**: S3-compatible object store (MinIO)
- **Vectors**: Qdrant for semantic search
- **Security**: Vault for secrets, Argon2 passwords, AES encryption
- **Identity**: Zitadel for authentication and MFA
- **LLM**: OpenAI API, Anthropic, Groq, or local models
- **Scripting**: Rhai-powered BASIC interpreter
## A Brief History
**2017** - Pragmatismo launches General Bots with the No Forms manifesto. The vision: conversational interfaces should replace traditional forms in enterprise software.
**2018-2020** - Node.js implementation gains traction. Hundreds of bots deployed across banking, healthcare, education, and government sectors in Brazil and beyond.
**2021-2023** - Major enterprises adopt General Bots for customer service automation. The platform handles millions of conversations.
**2024** - Complete rewrite in Rust for performance, security, and reliability. Version 6.0 introduces the new architecture with integrated services.
**Today** - General Bots powers conversational AI for organizations worldwide, staying true to the original vision: **people should converse, not fill forms**.
## What's Next?
- **[Chapter 01](./chapter-01/README.md)** - Install and run your first bot