├── .gitignore ├── .gitpod.yml ├── .vscode ├── extensions.json └── tasks.json ├── LICENSE ├── README.md ├── apps ├── backend │ ├── package.json │ └── server.js └── frontend │ ├── .env.example │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.animations.css │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── AboutInfoModal.tsx │ │ ├── CommandStringBar.tsx │ │ ├── EditAIProfileModal.tsx │ │ ├── ListOfAIProfiles.tsx │ │ ├── OutputSegmentsList.tsx │ │ ├── SettingsDrawer.tsx │ │ ├── SettingsDrawerContent.tsx │ │ ├── StartNewProcessMenu.tsx │ │ ├── TheAreaAtTheBottom.tsx │ │ ├── TheAreaAtTheTop.tsx │ │ ├── TheAreaInTheMiddle.tsx │ │ ├── TheHiddenServiceRunner.tsx │ │ └── smol │ │ │ └── ColorModeSwitcher.tsx │ ├── config │ │ ├── BackendConfigurationKeys.ts │ │ ├── BackendUrl.ts │ │ ├── SHELL_COMMANDS.ts │ │ └── theme.ts │ ├── data │ │ └── example-profiles.yaml │ ├── entities │ │ ├── AIProfile.d.ts │ │ └── BackendServiceState.d.ts │ ├── hooks │ │ ├── useApiService.ts │ │ ├── useAutoGPTStarter.ts │ │ ├── useRemoteConsoleOutput.ts │ │ ├── useToastShortcuts.ts │ │ ├── useUpdateLocalStorage.ts │ │ └── useWebSocketConnection.ts │ ├── main.tsx │ ├── services │ │ └── APIService.ts │ ├── store │ │ ├── useContextStore.ts │ │ └── useSettingsStore.ts │ ├── utils │ │ ├── createSimpleZustandStore.ts │ │ ├── createStoreWrappedWithProxy.ts │ │ ├── generateSimpleUniqueId.ts │ │ ├── getPseudoRandomColorFromString.ts │ │ └── getRandomProfileDataFiller.ts │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── scripts ├── mock-continuous.sh ├── mock-spinner.sh ├── mock-user-input.sh └── setup-auto-gpt.sh └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/backend/server.js -------------------------------------------------------------------------------- /apps/frontend/.env.example: -------------------------------------------------------------------------------- 1 | BACKEND_URL=http://localhost:2200 2 | -------------------------------------------------------------------------------- /apps/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/.gitignore -------------------------------------------------------------------------------- /apps/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/index.html -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/favicon.png -------------------------------------------------------------------------------- /apps/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/logo192.png -------------------------------------------------------------------------------- /apps/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/logo512.png -------------------------------------------------------------------------------- /apps/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/manifest.json -------------------------------------------------------------------------------- /apps/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/public/robots.txt -------------------------------------------------------------------------------- /apps/frontend/src/App.animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/App.animations.css -------------------------------------------------------------------------------- /apps/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/App.css -------------------------------------------------------------------------------- /apps/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/App.tsx -------------------------------------------------------------------------------- /apps/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /apps/frontend/src/components/AboutInfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/AboutInfoModal.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/CommandStringBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/CommandStringBar.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/EditAIProfileModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/EditAIProfileModal.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/ListOfAIProfiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/ListOfAIProfiles.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/OutputSegmentsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/OutputSegmentsList.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/SettingsDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/SettingsDrawer.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/SettingsDrawerContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/SettingsDrawerContent.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/StartNewProcessMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/StartNewProcessMenu.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/TheAreaAtTheBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/TheAreaAtTheBottom.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/TheAreaAtTheTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/TheAreaAtTheTop.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/TheAreaInTheMiddle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/TheAreaInTheMiddle.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/TheHiddenServiceRunner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/TheHiddenServiceRunner.tsx -------------------------------------------------------------------------------- /apps/frontend/src/components/smol/ColorModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/components/smol/ColorModeSwitcher.tsx -------------------------------------------------------------------------------- /apps/frontend/src/config/BackendConfigurationKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/config/BackendConfigurationKeys.ts -------------------------------------------------------------------------------- /apps/frontend/src/config/BackendUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/config/BackendUrl.ts -------------------------------------------------------------------------------- /apps/frontend/src/config/SHELL_COMMANDS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/config/SHELL_COMMANDS.ts -------------------------------------------------------------------------------- /apps/frontend/src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/config/theme.ts -------------------------------------------------------------------------------- /apps/frontend/src/data/example-profiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/data/example-profiles.yaml -------------------------------------------------------------------------------- /apps/frontend/src/entities/AIProfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/entities/AIProfile.d.ts -------------------------------------------------------------------------------- /apps/frontend/src/entities/BackendServiceState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/entities/BackendServiceState.d.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useApiService.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useAutoGPTStarter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useAutoGPTStarter.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useRemoteConsoleOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useRemoteConsoleOutput.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useToastShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useToastShortcuts.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useUpdateLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useUpdateLocalStorage.ts -------------------------------------------------------------------------------- /apps/frontend/src/hooks/useWebSocketConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/hooks/useWebSocketConnection.ts -------------------------------------------------------------------------------- /apps/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/main.tsx -------------------------------------------------------------------------------- /apps/frontend/src/services/APIService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/services/APIService.ts -------------------------------------------------------------------------------- /apps/frontend/src/store/useContextStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/store/useContextStore.ts -------------------------------------------------------------------------------- /apps/frontend/src/store/useSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/store/useSettingsStore.ts -------------------------------------------------------------------------------- /apps/frontend/src/utils/createSimpleZustandStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/utils/createSimpleZustandStore.ts -------------------------------------------------------------------------------- /apps/frontend/src/utils/createStoreWrappedWithProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/utils/createStoreWrappedWithProxy.ts -------------------------------------------------------------------------------- /apps/frontend/src/utils/generateSimpleUniqueId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/utils/generateSimpleUniqueId.ts -------------------------------------------------------------------------------- /apps/frontend/src/utils/getPseudoRandomColorFromString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/utils/getPseudoRandomColorFromString.ts -------------------------------------------------------------------------------- /apps/frontend/src/utils/getRandomProfileDataFiller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/src/utils/getRandomProfileDataFiller.ts -------------------------------------------------------------------------------- /apps/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /apps/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/apps/frontend/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/package.json -------------------------------------------------------------------------------- /scripts/mock-continuous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/scripts/mock-continuous.sh -------------------------------------------------------------------------------- /scripts/mock-spinner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/scripts/mock-spinner.sh -------------------------------------------------------------------------------- /scripts/mock-user-input.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/scripts/mock-user-input.sh -------------------------------------------------------------------------------- /scripts/setup-auto-gpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/scripts/setup-auto-gpt.sh -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choephix/auto-gpt-webui/HEAD/turbo.json --------------------------------------------------------------------------------