https://github.com/igopalakrishna/multi-modal_ai_assistant
A Python-based application utilizing OpenAI, Gradio, and other libraries for AI-driven functionalities.
https://github.com/igopalakrishna/multi-modal_ai_assistant
Last synced: about 1 year ago
JSON representation
A Python-based application utilizing OpenAI, Gradio, and other libraries for AI-driven functionalities.
- Host: GitHub
- URL: https://github.com/igopalakrishna/multi-modal_ai_assistant
- Owner: igopalakrishna
- Created: 2025-02-25T05:54:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-27T01:49:22.000Z (about 1 year ago)
- Last Synced: 2025-03-27T02:39:25.396Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multi-Modal AI Assitant
A Python-based application utilizing OpenAI, Gradio, and other libraries for AI-driven functionalities.
## Installation
1. **Clone the Repository:**
```bash
git clone
cd
```
2. **Set Up a Virtual Environment:**
```bash
python -m venv venv
source venv/bin/activate # On Windows use `venv\\Scripts\\activate`
```
3. **Install Dependencies:**
```bash
pip install -r requirements.txt
```
### Dependencies
- Pillow
- dotenv
- gradio
- json
- openai
- os
- pydub
## Environment Variables
Ensure you have a `.env` file in the root directory with the following content:
```env
OPENAI_API_KEY=your_openai_api_key_here
```
Replace `your_openai_api_key_here` with your actual OpenAI API key.
## Usage
To start the application, run:
```bash
python app.py
```
## File Structure
- `app.py`: Main application script.
- `requirements.txt`: List of required Python packages.
## License
This project is licensed under the MIT License.