├── .gitignore ├── 01-twoway-chat ├── OAI_CONFIG_LIST.json ├── coding │ └── stock_price_chart.py └── main.py ├── 02-groupchat ├── .env └── main.py ├── 03-snake ├── OAI_CONFIG_LIST.json ├── code │ ├── snake_game.py │ └── snake_game_updated.py └── main.py ├── 04-sequence_chat ├── OAI_CONFIG_LIST.json └── main.py ├── 05-nested-chats ├── OAI_CONFIG_LIST.json └── main.py ├── 06-logging ├── OAI_CONFIG_LIST.json └── main.py ├── 07-vision ├── OAI_CONFIG_LIST.json └── vision.py ├── 08-dalle ├── OAI_CONFIG_LIST.json └── dalle.py ├── 09-lmstudio └── main.py ├── 10-function-calling ├── OAI_CONFIG_LIST.json └── main.py ├── 11-tools └── tools.py ├── 12-txt2img ├── main.py └── test.png ├── 13-simple-image ├── OAI_CONFIG_LIST.json ├── filename_859705.png └── image-generation.py ├── 14-reddit-newsletter ├── OAI_CONFIG_LIST.json ├── main.py └── reddit.md ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /01-twoway-chat/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/01-twoway-chat/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /01-twoway-chat/coding/stock_price_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/01-twoway-chat/coding/stock_price_chart.py -------------------------------------------------------------------------------- /01-twoway-chat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/01-twoway-chat/main.py -------------------------------------------------------------------------------- /02-groupchat/.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-proj-1111 -------------------------------------------------------------------------------- /02-groupchat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/02-groupchat/main.py -------------------------------------------------------------------------------- /03-snake/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/03-snake/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /03-snake/code/snake_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/03-snake/code/snake_game.py -------------------------------------------------------------------------------- /03-snake/code/snake_game_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/03-snake/code/snake_game_updated.py -------------------------------------------------------------------------------- /03-snake/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/03-snake/main.py -------------------------------------------------------------------------------- /04-sequence_chat/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/04-sequence_chat/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /04-sequence_chat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/04-sequence_chat/main.py -------------------------------------------------------------------------------- /05-nested-chats/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/05-nested-chats/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /05-nested-chats/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/05-nested-chats/main.py -------------------------------------------------------------------------------- /06-logging/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/06-logging/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /06-logging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/06-logging/main.py -------------------------------------------------------------------------------- /07-vision/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/07-vision/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /07-vision/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/07-vision/vision.py -------------------------------------------------------------------------------- /08-dalle/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/08-dalle/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /08-dalle/dalle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/08-dalle/dalle.py -------------------------------------------------------------------------------- /09-lmstudio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/09-lmstudio/main.py -------------------------------------------------------------------------------- /10-function-calling/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/10-function-calling/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /10-function-calling/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/10-function-calling/main.py -------------------------------------------------------------------------------- /11-tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/11-tools/tools.py -------------------------------------------------------------------------------- /12-txt2img/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/12-txt2img/main.py -------------------------------------------------------------------------------- /12-txt2img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/12-txt2img/test.png -------------------------------------------------------------------------------- /13-simple-image/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/13-simple-image/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /13-simple-image/filename_859705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/13-simple-image/filename_859705.png -------------------------------------------------------------------------------- /13-simple-image/image-generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/13-simple-image/image-generation.py -------------------------------------------------------------------------------- /14-reddit-newsletter/OAI_CONFIG_LIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/14-reddit-newsletter/OAI_CONFIG_LIST.json -------------------------------------------------------------------------------- /14-reddit-newsletter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/14-reddit-newsletter/main.py -------------------------------------------------------------------------------- /14-reddit-newsletter/reddit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/14-reddit-newsletter/reddit.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerprogramming/autogen-beginner-course/HEAD/requirements.txt --------------------------------------------------------------------------------