├── .env.example ├── .github └── workflows │ └── django.yml ├── .gitignore ├── README.md ├── app.py ├── app ├── __init__.py ├── routes.py ├── static │ ├── icon │ │ └── chat-icon.png │ └── styles.css └── templates │ └── index.html └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | GOOGLE_AI_API_KEY = -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/static/icon/chat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app/static/icon/chat-icon.png -------------------------------------------------------------------------------- /app/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app/static/styles.css -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielNat1/Py-Chat-GenerativeIA/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.2 2 | google-generativeai==0.2.2 --------------------------------------------------------------------------------