This Django application interfaces with OpenAI's GPT-3.5-turbo model to provide AI-driven text processing capabilities. Users can input text through a web interface, which is then sent to the GPT-3.5-turbo via OpenAI api to process and give a response. The project demonstrates the integration of advanced AI language models in web applications.
- Before installing the application, ensure you have Python and pip installed on your system.
- To use this application, you will need an API key from OpenAI. Visit OpenAI's API page for instructions on how to obtain your API key.
- Python 3.x
- pip
- Virtualenv
python -m venv venv
venv\Scripts\activate
source venv/bin/activate
pip install -r requirements.txt
