├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── config.py ├── models.py ├── notepads.py ├── prompts.py ├── sessions.py ├── settings.py └── util.py ├── doc ├── colab.ipynb ├── manual-install.md ├── screenshot_1.png ├── screenshot_1_thumb.png ├── screenshot_2.png ├── screenshot_2_thumb.png ├── screenshot_3.png ├── screenshot_3_thumb.png ├── screenshot_4.png ├── screenshot_4_thumb.png ├── screenshot_5.png ├── screenshot_5_thumb.png ├── screenshot_6.png ├── screenshot_6_thumb.png ├── screenshot_7.png ├── screenshot_7_thumb.png ├── screenshot_8.png └── screenshot_8_thumb.png ├── requirements.txt ├── server.py ├── static ├── chat.css ├── chat.js ├── chatsettings.js ├── controls.css ├── controls.js ├── gfx │ ├── avatar_cat.png │ ├── avatar_dog.png │ ├── avatar_frog.png │ ├── avatar_monke.png │ ├── avatar_notcat.png │ ├── avatar_penguin.png │ ├── avatar_squirrel.png │ ├── avatar_unicorn.png │ ├── favicon.png │ ├── icon_chat.png │ ├── icon_model.png │ ├── icon_notepad.png │ └── icon_settings.png ├── globals.js ├── main.js ├── mainmenu.css ├── mainmenu.js ├── marked │ ├── LICENSE.md │ └── marked.min.js ├── models.css ├── models.js ├── notepad.css ├── notepad.js ├── notepadsettings.js ├── overlay.css ├── overlay.js ├── roles.js ├── scrollbar.css ├── settings.css ├── settings.js ├── slider.css ├── spinner.css ├── style.css ├── theme.css ├── theme.js └── util.js └── templates ├── index.html └── svg_icons.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: turboderp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/README.md -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/models.py -------------------------------------------------------------------------------- /backend/notepads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/notepads.py -------------------------------------------------------------------------------- /backend/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/prompts.py -------------------------------------------------------------------------------- /backend/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/sessions.py -------------------------------------------------------------------------------- /backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/settings.py -------------------------------------------------------------------------------- /backend/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/backend/util.py -------------------------------------------------------------------------------- /doc/colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/colab.ipynb -------------------------------------------------------------------------------- /doc/manual-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/manual-install.md -------------------------------------------------------------------------------- /doc/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_1.png -------------------------------------------------------------------------------- /doc/screenshot_1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_1_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_2.png -------------------------------------------------------------------------------- /doc/screenshot_2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_2_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_3.png -------------------------------------------------------------------------------- /doc/screenshot_3_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_3_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_4.png -------------------------------------------------------------------------------- /doc/screenshot_4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_4_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_5.png -------------------------------------------------------------------------------- /doc/screenshot_5_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_5_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_6.png -------------------------------------------------------------------------------- /doc/screenshot_6_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_6_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_7.png -------------------------------------------------------------------------------- /doc/screenshot_7_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_7_thumb.png -------------------------------------------------------------------------------- /doc/screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_8.png -------------------------------------------------------------------------------- /doc/screenshot_8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/doc/screenshot_8_thumb.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/server.py -------------------------------------------------------------------------------- /static/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/chat.css -------------------------------------------------------------------------------- /static/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/chat.js -------------------------------------------------------------------------------- /static/chatsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/chatsettings.js -------------------------------------------------------------------------------- /static/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/controls.css -------------------------------------------------------------------------------- /static/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/controls.js -------------------------------------------------------------------------------- /static/gfx/avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_cat.png -------------------------------------------------------------------------------- /static/gfx/avatar_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_dog.png -------------------------------------------------------------------------------- /static/gfx/avatar_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_frog.png -------------------------------------------------------------------------------- /static/gfx/avatar_monke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_monke.png -------------------------------------------------------------------------------- /static/gfx/avatar_notcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_notcat.png -------------------------------------------------------------------------------- /static/gfx/avatar_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_penguin.png -------------------------------------------------------------------------------- /static/gfx/avatar_squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_squirrel.png -------------------------------------------------------------------------------- /static/gfx/avatar_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/avatar_unicorn.png -------------------------------------------------------------------------------- /static/gfx/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/favicon.png -------------------------------------------------------------------------------- /static/gfx/icon_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/icon_chat.png -------------------------------------------------------------------------------- /static/gfx/icon_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/icon_model.png -------------------------------------------------------------------------------- /static/gfx/icon_notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/icon_notepad.png -------------------------------------------------------------------------------- /static/gfx/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/gfx/icon_settings.png -------------------------------------------------------------------------------- /static/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/globals.js -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/main.js -------------------------------------------------------------------------------- /static/mainmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/mainmenu.css -------------------------------------------------------------------------------- /static/mainmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/mainmenu.js -------------------------------------------------------------------------------- /static/marked/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/marked/LICENSE.md -------------------------------------------------------------------------------- /static/marked/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/marked/marked.min.js -------------------------------------------------------------------------------- /static/models.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/models.css -------------------------------------------------------------------------------- /static/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/models.js -------------------------------------------------------------------------------- /static/notepad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/notepad.css -------------------------------------------------------------------------------- /static/notepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/notepad.js -------------------------------------------------------------------------------- /static/notepadsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/notepadsettings.js -------------------------------------------------------------------------------- /static/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/overlay.css -------------------------------------------------------------------------------- /static/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/overlay.js -------------------------------------------------------------------------------- /static/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/roles.js -------------------------------------------------------------------------------- /static/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/scrollbar.css -------------------------------------------------------------------------------- /static/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/settings.css -------------------------------------------------------------------------------- /static/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/settings.js -------------------------------------------------------------------------------- /static/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/slider.css -------------------------------------------------------------------------------- /static/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/spinner.css -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/style.css -------------------------------------------------------------------------------- /static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/theme.css -------------------------------------------------------------------------------- /static/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/theme.js -------------------------------------------------------------------------------- /static/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/static/util.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/svg_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turboderp-org/exui/HEAD/templates/svg_icons.html --------------------------------------------------------------------------------