├── .gitignore ├── LICENSE ├── README.md ├── backend ├── requirements.txt └── src │ ├── .env │ ├── autogen_chat.py │ ├── autogen_group_chat.py │ ├── groupchatweb.py │ ├── main.py │ └── user_proxy_webagent.py ├── chat.png └── react-frontend ├── .env.dev ├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── src ├── ApiPath.js ├── App.jsx ├── components │ └── chat │ │ └── layout │ │ ├── Chat.jsx │ │ ├── ChatDialog.jsx │ │ ├── Header1.jsx │ │ ├── HeaderSection.jsx │ │ ├── Navigator.jsx │ │ └── Theme.js ├── main.jsx └── stores │ ├── ChatStore.js │ └── index.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/README.md -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn[standard] 3 | pyautogen 4 | -------------------------------------------------------------------------------- /backend/src/.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | -------------------------------------------------------------------------------- /backend/src/autogen_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/backend/src/autogen_chat.py -------------------------------------------------------------------------------- /backend/src/autogen_group_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/backend/src/autogen_group_chat.py -------------------------------------------------------------------------------- /backend/src/groupchatweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/backend/src/groupchatweb.py -------------------------------------------------------------------------------- /backend/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/backend/src/main.py -------------------------------------------------------------------------------- /backend/src/user_proxy_webagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/backend/src/user_proxy_webagent.py -------------------------------------------------------------------------------- /chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/chat.png -------------------------------------------------------------------------------- /react-frontend/.env.dev: -------------------------------------------------------------------------------- 1 | VITE_API_PATH="ws://localhost:8000/ws/" 2 | -------------------------------------------------------------------------------- /react-frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /react-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/.gitignore -------------------------------------------------------------------------------- /react-frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/index.html -------------------------------------------------------------------------------- /react-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/package-lock.json -------------------------------------------------------------------------------- /react-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/package.json -------------------------------------------------------------------------------- /react-frontend/src/ApiPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/ApiPath.js -------------------------------------------------------------------------------- /react-frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/App.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/Chat.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/ChatDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/ChatDialog.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/Header1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/Header1.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/HeaderSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/HeaderSection.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/Navigator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/Navigator.jsx -------------------------------------------------------------------------------- /react-frontend/src/components/chat/layout/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/components/chat/layout/Theme.js -------------------------------------------------------------------------------- /react-frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/main.jsx -------------------------------------------------------------------------------- /react-frontend/src/stores/ChatStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/stores/ChatStore.js -------------------------------------------------------------------------------- /react-frontend/src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/src/stores/index.js -------------------------------------------------------------------------------- /react-frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonadio/autogenwebdemo/HEAD/react-frontend/vite.config.js --------------------------------------------------------------------------------