Different User Interfaces:
| Interface | Description | URL |
|---|---|---|
| UI | Multi-Agent Systems Interface | https://docs.praison.ai/ui/ui |
| Chat | Chat with 100+ LLMs, single AI Agent | https://docs.praison.ai/ui/chat |
| Code | Chat with entire Codebase, single AI Agent | https://docs.praison.ai/ui/code |
Quick Start
- Install PraisonAI Chat:
- Set up your OpenAI API key:
- Set up your Database URL:
- Launch PraisonAI Chat:
- URL : http://localhost:8084/
- Username: admin
- Password: admin
- Set Model name to be gpt-4o-mini in the settings
Key Features
Internet Search
PraisonAI Chat now includes internet search capabilities using Crawl4AI and Tavily. This feature allows you to retrieve up-to-date information during your conversations, enhancing the AI’s ability to provide current and relevant information.Vision Language Model (VLM) Support
You can now upload images and ask questions based on them using Vision Language Models. This multimodal support enables visual understanding and analysis within your chat sessions, allowing for a more comprehensive interaction with the AI. To use this feature:- Upload an image to the chat interface
- Ask questions or request analysis based on the uploaded image
- The VLM will process the image and provide insights or answers based on its visual content
External Agents
The PraisonAI Chat interface includes sidebar Switch widgets that allow you to toggle external AI coding CLI tools when they are installed on your system. These toggles enhance your chat experience by adding specialized coding capabilities.Available External Agents
When the corresponding CLIs are installed, the following toggle switches appear in the sidebar:- Claude Code: Toggle for Claude Code CLI integration (file editing, coding tasks)
- Gemini CLI: Toggle for Google Gemini CLI (analysis, search capabilities)
- Codex CLI: Toggle for OpenAI Codex CLI (refactoring, optimization)
- Cursor CLI: Toggle for Cursor CLI (IDE-style development)
How It Works
- Automatic Detection: Only CLIs that are installed and available on PATH show toggles
- Persistent Settings: Toggle states are saved to Chainlit settings and persist across sessions
- Enhanced Capability: Enabled external agents add specialized tools to your chat agent
- Workspace Integration: External agents operate within your
PRAISONAI_WORKSPACEdirectory
Usage Example
When you enable external agents and ask coding-related questions, your chat agent can delegate to the appropriate external CLI:For complete documentation on external agents across all PraisonAI interfaces, see External Agents in UI.
Custom Database
PraisonAI Chat supports custom database configurations, allowing you to use PostgreSQL or other databases instead of the default SQLite database. This is particularly useful for production environments or when you need more advanced database features.PostgreSQL Configuration
To use PostgreSQL as your database backend:-
Install Required Dependencies
For local development:
For Replit:
- Open the “Packages” tab in the Tools section
- Search for and install:
python3-devlibpq-dev
- Then install Python packages:
-
Set Environment Variables
Add these variables to your
.envfile or Replit Secrets:For Replit:- Click on “Tools” in the left sidebar
- Select “Secrets”
- Add your database configuration as
DATABASE_URL
-
Database Tables
The application will automatically:
- Detect PostgreSQL connections
- Create all necessary tables if they don’t exist
- Set up proper indexes and constraints
- Handle table creation errors
-
Cloud Database Services
For Replit, we recommend using cloud database services that provide free tiers:
- Neon (Recommended)
- Supabase
- ElephantSQL
- Free PostgreSQL hosting
- Automatic SSL configuration
- Connection string ready to use
Default Configuration
If noDATABASE_URL is provided, PraisonAI Chat will automatically use SQLite with the following default configuration:
Supported Database Types
PraisonAI Chat supports these database backends for chat storage:Currently Supported Chat Storage Backends
- PostgreSQL (recommended for production)
postgresql+asyncpg://user:password@host:port/database
- SQLite (default)
sqlite+aiosqlite:///path/to/database.db
- MongoDB (document database)
mongodb://user:password@host:port/database
- Redis (key-value store with persistence)
redis://user:password@host:port/database
- DynamoDB (AWS managed NoSQL)
dynamodb://region/table-name
Cloud Database Services
- Supabase (PostgreSQL-based)
postgresql+asyncpg://user:password@db.supabase.co:5432/postgres
- Neon (PostgreSQL-based)
postgresql+asyncpg://user:password@endpoint.neon.tech:5432/database
For SurrealDB and vector databases, use their dedicated tool integrations instead of
DATABASE_URL chat storage configuration. Other databases may be possible via custom adapters or future support.Local Docker Development with Live Reload
To facilitate local development with live reload, you can use Docker. Follow the steps below:-
Create a
Dockerfile.dev: -
Create a
docker-compose.yml: -
Run Docker Compose:

