PraisonAI Chat
Guide to PraisonAI’s chat interface with support for 100+ LLMs, internet search, vision models, and custom database configurations
Different User Interfaces:
Interface | Description | URL |
---|---|---|
UI | Multi Agents such as CrewAI or AutoGen | 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
These new features significantly expand the capabilities of PraisonAI Chat, allowing for more diverse and informative interactions.
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-dev
libpq-dev
- Then install Python packages:
-
Set Environment Variables Add these variables to your
.env
file 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
These services provide:
- Free PostgreSQL hosting
- Automatic SSL configuration
- Connection string ready to use
Default Configuration
If no DATABASE_URL
is provided, PraisonAI Chat will automatically use SQLite with the following default configuration:
Supported Database Types
PraisonAI Chat supports various database backends through SQLAlchemy:
- PostgreSQL (recommended for production)
- MySQL/MariaDB
- SQLite (default)
- Oracle
- Microsoft SQL Server
For other database types, refer to the SQLAlchemy documentation for the correct connection string format.
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:
This setup will allow you to develop locally with live reload, making it easier to test and iterate on your code.
Was this page helpful?