AI Agent Chatbot
Structure
├── README.md # Monorepo root guide
├── ai-chatbot-server/ # Python Flask backend
│ └── README.md
├── ai-chatbot-app/ # React + Vite frontend
│ └── README.mdInstallation
1. Clone the repository
git clone https://github.com/crypto-com/developer-platform-sdk-examples.git
cd developer-platform-sdk-examples/sdk-examples/categories/chatbot2. Backend setup (Python)
cd ai-chatbot-server
python -m venv venv
source venv/bin/activate # or .\venv\Scripts\activate on Windows
pip install -r requirements.txt3. Frontend setup (React + Vite)
4. Config environment variables
Usage
Start the backend (Flask)
Start the frontend (Vite)
Demo Video
Last updated
Was this helpful?