├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── general_issue.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AutoGen_HumanInput_Gradio4 ├── README.md ├── app.py ├── autogen-human-input.gif ├── autogen.png ├── human.png └── requirements.txt ├── AutoGen_Panel ├── .dockerignore ├── AutoGenPanel.gif ├── Dockerfile ├── README.md ├── app.py ├── autogen-icons │ ├── agent_blue.png │ ├── agent_dark.png │ ├── agent_gray.png │ ├── agent_green.png │ ├── agent_orange.png │ ├── agent_plum.png │ ├── agent_turquoise.png │ ├── user_blue.png │ ├── user_green.png │ └── user_orange.png ├── autogen_playground.png ├── autogen_utils.py ├── configs.py ├── custom_widgets.py ├── requirements.txt ├── run.sh └── wenxin │ ├── addwenxin.png │ ├── chat-ernie.png │ ├── one-api.png │ ├── oneapitoken.png │ ├── oneapitoken2.png │ ├── qianfan.png │ ├── qianfanernie.png │ └── usagelog.png ├── AutoGen_RAG_Gradio3 ├── Dockerfile ├── README.md ├── app.py ├── autogen-rag.gif ├── autogen.png └── requirements.txt ├── LICENSE ├── README.md ├── Tasks4AutoGen ├── README.md ├── autogen-rag.drawio ├── autogen-rag.drawio.png ├── snake_game.gif └── snake_game.py └── pyproject.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.github/ISSUE_TEMPLATE/general_issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_HumanInput_Gradio4/README.md -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_HumanInput_Gradio4/app.py -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/autogen-human-input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_HumanInput_Gradio4/autogen-human-input.gif -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/autogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_HumanInput_Gradio4/autogen.png -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_HumanInput_Gradio4/human.png -------------------------------------------------------------------------------- /AutoGen_HumanInput_Gradio4/requirements.txt: -------------------------------------------------------------------------------- 1 | pyautogen==0.2.0b4 2 | gradio>=4.0.0 3 | yfinance 4 | -------------------------------------------------------------------------------- /AutoGen_Panel/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/.dockerignore -------------------------------------------------------------------------------- /AutoGen_Panel/AutoGenPanel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/AutoGenPanel.gif -------------------------------------------------------------------------------- /AutoGen_Panel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/Dockerfile -------------------------------------------------------------------------------- /AutoGen_Panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/README.md -------------------------------------------------------------------------------- /AutoGen_Panel/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/app.py -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_blue.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_dark.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_gray.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_green.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_orange.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_plum.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/agent_turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/agent_turquoise.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/user_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/user_blue.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/user_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/user_green.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen-icons/user_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen-icons/user_orange.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen_playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen_playground.png -------------------------------------------------------------------------------- /AutoGen_Panel/autogen_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/autogen_utils.py -------------------------------------------------------------------------------- /AutoGen_Panel/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/configs.py -------------------------------------------------------------------------------- /AutoGen_Panel/custom_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/custom_widgets.py -------------------------------------------------------------------------------- /AutoGen_Panel/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/requirements.txt -------------------------------------------------------------------------------- /AutoGen_Panel/run.sh: -------------------------------------------------------------------------------- 1 | panel serve app.py 2 | -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/addwenxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/addwenxin.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/chat-ernie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/chat-ernie.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/one-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/one-api.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/oneapitoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/oneapitoken.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/oneapitoken2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/oneapitoken2.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/qianfan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/qianfan.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/qianfanernie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/qianfanernie.png -------------------------------------------------------------------------------- /AutoGen_Panel/wenxin/usagelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_Panel/wenxin/usagelog.png -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_RAG_Gradio3/Dockerfile -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_RAG_Gradio3/README.md -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_RAG_Gradio3/app.py -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/autogen-rag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_RAG_Gradio3/autogen-rag.gif -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/autogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/AutoGen_RAG_Gradio3/autogen.png -------------------------------------------------------------------------------- /AutoGen_RAG_Gradio3/requirements.txt: -------------------------------------------------------------------------------- 1 | pyautogen[retrievechat]==0.1.14 2 | gradio<4.0.0 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/README.md -------------------------------------------------------------------------------- /Tasks4AutoGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/Tasks4AutoGen/README.md -------------------------------------------------------------------------------- /Tasks4AutoGen/autogen-rag.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/Tasks4AutoGen/autogen-rag.drawio -------------------------------------------------------------------------------- /Tasks4AutoGen/autogen-rag.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/Tasks4AutoGen/autogen-rag.drawio.png -------------------------------------------------------------------------------- /Tasks4AutoGen/snake_game.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/Tasks4AutoGen/snake_game.gif -------------------------------------------------------------------------------- /Tasks4AutoGen/snake_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/Tasks4AutoGen/snake_game.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkall/autogen-demos/HEAD/pyproject.toml --------------------------------------------------------------------------------