This is a Flask-based AI chatbox powered by a fine-tuned OpenAI model, designed to answer cryptocurrency-related queries. The app provides a user-friendly web interface for real-time interactions and is deployed using Render.
- Real-time chat interface for cryptocurrency queries.
- Powered by a fine-tuned OpenAI GPT model.
- Deployed for public access with a secure backend.
- Flask (Backend Framework)
- OpenAI API (AI Model Integration)
- HTML, CSS, JavaScript (Frontend)
- Gunicorn (Production Server)
- Render (Deployment Platform)
- Clone the repository
- Navigate to the project directory
- Create a virtual environment and activate it: python -m venv venv source venv/bin/activate or on Windows: venv\Scripts\activate
- Install dependencies: pip install -r requirements.txt
- Set your OpenAI API key:
- Create a
.envfile in the root directory. - Add: OPENAI_API_KEY=your_openai_api_key_here
- Create a
- Run the app locally: python app.py