├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .dockerignore ├── .env ├── .env.secret ├── Dockerfile ├── app_backend.py └── utils.py ├── frontend ├── Dockerfile └── app_frontend.py └── misc └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | pdf 3 | data 4 | notebook 5 | csv 6 | .env* 7 | frontend/flagged 8 | __pycache__ 9 | NOTES* 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.env.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/.env.secret -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/app_backend.py -------------------------------------------------------------------------------- /backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/backend/utils.py -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/app_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/frontend/app_frontend.py -------------------------------------------------------------------------------- /misc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonjj/multi-llm-chat/HEAD/misc/screenshot.png --------------------------------------------------------------------------------