├── .devcontainer ├── Dockerfile ├── devcontainer.json └── noop.txt ├── .env.template ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── app.py ├── assets ├── demo.gif └── ksGPT.png ├── config.py ├── install.bat ├── output_methods ├── __init__.py └── audio_pyttsx3.py ├── plugins ├── __init__.py ├── _accuweather_plugin │ ├── __init__.py │ ├── accuweather_base.py │ └── accuweather_tools.py ├── _gemini_pro_plugin │ ├── __init__.py │ ├── gemini_pro_base.py │ ├── gemini_pro_tools.py │ └── gemini_pro_vision_tools.py ├── _gmail_plugin │ ├── __init__.py │ ├── calendar_tools.py │ ├── drive_tools.py │ ├── email_tools.py │ └── gmail_base.py ├── _google_search_plugin │ ├── __init__.py │ ├── google_search_base.py │ └── google_search_tools.py ├── _news_plugin │ ├── __init__.py │ ├── news_base.py │ ├── newsapi_tools.py │ └── nytimes_tools.py ├── _nhtsa_plugin │ ├── __init__.py │ ├── nhtsa_vpic_base.py │ └── nhtsa_vpic_tools.py ├── _system_commands │ ├── __init__.py │ ├── system_commands_base.py │ └── system_commands_tools.py ├── plugin_base.py └── plugins_enabled.py ├── requirements.txt ├── static ├── J5.webp ├── U1.webp ├── chat-style.css └── chat.js ├── templates └── index.html ├── uploads └── test_pic.jpg ├── utils ├── __init__.py ├── core_tools.py ├── openai_dalle_tools.py └── openai_model_tools.py └── web_app.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/noop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/.devcontainer/noop.txt -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/app.py -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/ksGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/assets/ksGPT.png -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/config.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/install.bat -------------------------------------------------------------------------------- /output_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output_methods/audio_pyttsx3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/output_methods/audio_pyttsx3.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_accuweather_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_accuweather_plugin/__init__.py -------------------------------------------------------------------------------- /plugins/_accuweather_plugin/accuweather_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_accuweather_plugin/accuweather_base.py -------------------------------------------------------------------------------- /plugins/_accuweather_plugin/accuweather_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_accuweather_plugin/accuweather_tools.py -------------------------------------------------------------------------------- /plugins/_gemini_pro_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_gemini_pro_plugin/gemini_pro_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gemini_pro_plugin/gemini_pro_base.py -------------------------------------------------------------------------------- /plugins/_gemini_pro_plugin/gemini_pro_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gemini_pro_plugin/gemini_pro_tools.py -------------------------------------------------------------------------------- /plugins/_gemini_pro_plugin/gemini_pro_vision_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gemini_pro_plugin/gemini_pro_vision_tools.py -------------------------------------------------------------------------------- /plugins/_gmail_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_gmail_plugin/calendar_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gmail_plugin/calendar_tools.py -------------------------------------------------------------------------------- /plugins/_gmail_plugin/drive_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gmail_plugin/drive_tools.py -------------------------------------------------------------------------------- /plugins/_gmail_plugin/email_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gmail_plugin/email_tools.py -------------------------------------------------------------------------------- /plugins/_gmail_plugin/gmail_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_gmail_plugin/gmail_base.py -------------------------------------------------------------------------------- /plugins/_google_search_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_google_search_plugin/google_search_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_google_search_plugin/google_search_base.py -------------------------------------------------------------------------------- /plugins/_google_search_plugin/google_search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_google_search_plugin/google_search_tools.py -------------------------------------------------------------------------------- /plugins/_news_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_news_plugin/news_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_news_plugin/news_base.py -------------------------------------------------------------------------------- /plugins/_news_plugin/newsapi_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_news_plugin/newsapi_tools.py -------------------------------------------------------------------------------- /plugins/_news_plugin/nytimes_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_news_plugin/nytimes_tools.py -------------------------------------------------------------------------------- /plugins/_nhtsa_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_nhtsa_plugin/nhtsa_vpic_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_nhtsa_plugin/nhtsa_vpic_base.py -------------------------------------------------------------------------------- /plugins/_nhtsa_plugin/nhtsa_vpic_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_nhtsa_plugin/nhtsa_vpic_tools.py -------------------------------------------------------------------------------- /plugins/_system_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/_system_commands/system_commands_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_system_commands/system_commands_base.py -------------------------------------------------------------------------------- /plugins/_system_commands/system_commands_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/_system_commands/system_commands_tools.py -------------------------------------------------------------------------------- /plugins/plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/plugin_base.py -------------------------------------------------------------------------------- /plugins/plugins_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/plugins/plugins_enabled.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/J5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/static/J5.webp -------------------------------------------------------------------------------- /static/U1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/static/U1.webp -------------------------------------------------------------------------------- /static/chat-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/static/chat-style.css -------------------------------------------------------------------------------- /static/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/static/chat.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/templates/index.html -------------------------------------------------------------------------------- /uploads/test_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/uploads/test_pic.jpg -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/core_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/utils/core_tools.py -------------------------------------------------------------------------------- /utils/openai_dalle_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/utils/openai_dalle_tools.py -------------------------------------------------------------------------------- /utils/openai_model_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/utils/openai_model_tools.py -------------------------------------------------------------------------------- /web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eloquent-Algorithmics/GPT_ALL/HEAD/web_app.py --------------------------------------------------------------------------------