├── .env.example ├── .gitignore ├── Bard.py ├── Dockerfile ├── README.MD ├── main.py ├── requirements.txt ├── start-app-container.sh └── start-app.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /venv/ -------------------------------------------------------------------------------- /Bard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/Bard.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/README.MD -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /start-app-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra83205/google-bard-api/HEAD/start-app-container.sh -------------------------------------------------------------------------------- /start-app.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uvicorn main:app --reload --port 8000 3 | --------------------------------------------------------------------------------