├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .gitignore ├── .streamlit └── config.toml ├── .vscode └── extensions.json ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── app.py ├── models.json ├── public └── oi-web.png ├── requirements.txt ├── src ├── data │ ├── database.py │ └── models.py └── utils │ ├── file_utils.py │ └── prompts.py ├── st_components ├── st_conversations.py ├── st_init.py ├── st_interpreter.py ├── st_main.py ├── st_messages.py ├── st_session_states.py └── st_sidebar.py ├── styles.css └── test.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/TODO.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/app.py -------------------------------------------------------------------------------- /models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/models.json -------------------------------------------------------------------------------- /public/oi-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/public/oi-web.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/data/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/src/data/database.py -------------------------------------------------------------------------------- /src/data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/src/data/models.py -------------------------------------------------------------------------------- /src/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/src/utils/file_utils.py -------------------------------------------------------------------------------- /src/utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/src/utils/prompts.py -------------------------------------------------------------------------------- /st_components/st_conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_conversations.py -------------------------------------------------------------------------------- /st_components/st_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_init.py -------------------------------------------------------------------------------- /st_components/st_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_interpreter.py -------------------------------------------------------------------------------- /st_components/st_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_main.py -------------------------------------------------------------------------------- /st_components/st_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_messages.py -------------------------------------------------------------------------------- /st_components/st_session_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_session_states.py -------------------------------------------------------------------------------- /st_components/st_sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/st_components/st_sidebar.py -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/styles.css -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blazzbyte/OpenInterpreterUI/HEAD/test.sh --------------------------------------------------------------------------------