├── .gitignore ├── LICENSE ├── gpt-interactions └── uuid.md ├── gpt.py ├── history_menu.py ├── icon.ico ├── main_window.py ├── preprompt_editor.py ├── preprompt_menu.py ├── preprompts.json ├── readme.md ├── requirements.txt ├── screenshots ├── history_menu.png ├── main_window.png ├── preprompts.png └── search_window.png ├── search_window.py ├── text_box.py └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /gpt-interactions/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/gpt-interactions/uuid.md -------------------------------------------------------------------------------- /gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/gpt.py -------------------------------------------------------------------------------- /history_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/history_menu.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/icon.ico -------------------------------------------------------------------------------- /main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/main_window.py -------------------------------------------------------------------------------- /preprompt_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/preprompt_editor.py -------------------------------------------------------------------------------- /preprompt_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/preprompt_menu.py -------------------------------------------------------------------------------- /preprompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/preprompts.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/history_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/screenshots/history_menu.png -------------------------------------------------------------------------------- /screenshots/main_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/screenshots/main_window.png -------------------------------------------------------------------------------- /screenshots/preprompts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/screenshots/preprompts.png -------------------------------------------------------------------------------- /screenshots/search_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/screenshots/search_window.png -------------------------------------------------------------------------------- /search_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/search_window.py -------------------------------------------------------------------------------- /text_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/text_box.py -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityAnchor/ries-gpt-ui/HEAD/todo.md --------------------------------------------------------------------------------