├── .env ├── LICENSE.md ├── README.md ├── app.py ├── audio_handler.py ├── chat_api_handler.py ├── chat_icons ├── bot_image.png └── user_image.png ├── chat_sessions └── .gitkeep ├── config.yaml ├── database_operations.py ├── docker-compose.yml ├── docker-compose_without_ollama.yml ├── docker └── Dockerfile ├── html_templates.py ├── models ├── .gitkeep └── llava │ └── .gitkeep ├── pdf_handler.py ├── pdfs └── hover.pdf ├── prompt_templates.py ├── requirements.txt ├── utils.py └── vectordb_handler.py /.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/app.py -------------------------------------------------------------------------------- /audio_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/audio_handler.py -------------------------------------------------------------------------------- /chat_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/chat_api_handler.py -------------------------------------------------------------------------------- /chat_icons/bot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/chat_icons/bot_image.png -------------------------------------------------------------------------------- /chat_icons/user_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/chat_icons/user_image.png -------------------------------------------------------------------------------- /chat_sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/config.yaml -------------------------------------------------------------------------------- /database_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/database_operations.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose_without_ollama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/docker-compose_without_ollama.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /html_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/html_templates.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/llava/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pdf_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/pdf_handler.py -------------------------------------------------------------------------------- /pdfs/hover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/pdfs/hover.pdf -------------------------------------------------------------------------------- /prompt_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/prompt_templates.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/utils.py -------------------------------------------------------------------------------- /vectordb_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Sander/Local-Multimodal-AI-Chat/HEAD/vectordb_handler.py --------------------------------------------------------------------------------