This API aims to integrate with Gemini as a fast implementation solution for an existing back-end in Java
Before running it, turn on the virtual env:
python -m venv venv
Then you can run using: on windows:
venv\Scripts\activate
on macOS/linux
source venv/bin/activate
Install requirements.txt
dependencies:
pip install -r requirements.txt
Create a config.py in the root of this project and paste:
API_KEY = 'your_api_key_here'
remember to use your Google Gemini API Key link for generating the key: https://aistudio.google.com/app/prompts/new_chat?pli=1
python app.py
For stoping the project, just type ctrl + c
on terminal
For deactivating env:
deactivate