This app is an AI assistant that answers questions related to the Terms of Service.
python3 -m venv .venv
source .venv/bin/activate
pip install --requirement requirements.txtAPI_KEY=
OPENAI_API_KEY=To start the application you need to generate an API key
python3 utils.pyThen copy the key and paste it into the API_KEY variable in the .env After that we start the server for the API
uvicorn api:app --reloadUse /send endpoint to send question to the bot.
Documentation is available on /docs