├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── OAIWUI_GPT.py ├── OAIWUI_GPT_WebUI.py ├── OAIWUI_Images.py ├── OAIWUI_Images_WebUI.py ├── OAIWUI_WebUI.py ├── README.md ├── assets ├── Infotrend_Logo.png ├── Infotrend_LogoOnly.png ├── Screenshot-OAIWUI_WebUI_GPT.jpg ├── Screenshot-OAIWUI_WebUI_GPT_small.jpg ├── Screenshot-OAIWUI_WebUI_Image.jpg └── Screenshot-OAIWUI_WebUI_Image_small.jpg ├── common_functions.py ├── common_functions_WebUI.py ├── config.sh ├── entrypoint.sh ├── list_models.py ├── litellm_helper.py ├── models.json ├── models.md ├── models.txt ├── ollama_helper.py ├── prompt_presets.example └── shakespeare.json ├── prompt_presets_settings-example.json ├── pyproject.toml └── unraid └── OpenAI_WebUI.xml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/Makefile -------------------------------------------------------------------------------- /OAIWUI_GPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/OAIWUI_GPT.py -------------------------------------------------------------------------------- /OAIWUI_GPT_WebUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/OAIWUI_GPT_WebUI.py -------------------------------------------------------------------------------- /OAIWUI_Images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/OAIWUI_Images.py -------------------------------------------------------------------------------- /OAIWUI_Images_WebUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/OAIWUI_Images_WebUI.py -------------------------------------------------------------------------------- /OAIWUI_WebUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/OAIWUI_WebUI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/README.md -------------------------------------------------------------------------------- /assets/Infotrend_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Infotrend_Logo.png -------------------------------------------------------------------------------- /assets/Infotrend_LogoOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Infotrend_LogoOnly.png -------------------------------------------------------------------------------- /assets/Screenshot-OAIWUI_WebUI_GPT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Screenshot-OAIWUI_WebUI_GPT.jpg -------------------------------------------------------------------------------- /assets/Screenshot-OAIWUI_WebUI_GPT_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Screenshot-OAIWUI_WebUI_GPT_small.jpg -------------------------------------------------------------------------------- /assets/Screenshot-OAIWUI_WebUI_Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Screenshot-OAIWUI_WebUI_Image.jpg -------------------------------------------------------------------------------- /assets/Screenshot-OAIWUI_WebUI_Image_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/assets/Screenshot-OAIWUI_WebUI_Image_small.jpg -------------------------------------------------------------------------------- /common_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/common_functions.py -------------------------------------------------------------------------------- /common_functions_WebUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/common_functions_WebUI.py -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/config.sh -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /list_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/list_models.py -------------------------------------------------------------------------------- /litellm_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/litellm_helper.py -------------------------------------------------------------------------------- /models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/models.json -------------------------------------------------------------------------------- /models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/models.md -------------------------------------------------------------------------------- /models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/models.txt -------------------------------------------------------------------------------- /ollama_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/ollama_helper.py -------------------------------------------------------------------------------- /prompt_presets.example/shakespeare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/prompt_presets.example/shakespeare.json -------------------------------------------------------------------------------- /prompt_presets_settings-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/prompt_presets_settings-example.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /unraid/OpenAI_WebUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infotrend-Inc/OpenAI_WebUI/HEAD/unraid/OpenAI_WebUI.xml --------------------------------------------------------------------------------