[PR #792] [CLOSED] fix: migrate AutoGen to ag2, fix langchain imports, and update dependencies #5814

Closed
opened 2026-05-17 05:44:39 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/792
Author: @Ggboykxz
Created: 5/8/2026
Status: Closed

Base: mainHead: autogen-migration


📝 Commits (1)

  • 862119b fix: migrate AutoGen to ag2, fix langchain imports, and update dependencies

📊 Changes

21 files changed (+275 additions, -480 deletions)

View changed files

📝 advanced_ai_agents/autonomous_game_playing_agent_apps/ai_chess_agent/ai_chess_agent.py (+81 -113)
📝 advanced_ai_agents/autonomous_game_playing_agent_apps/ai_chess_agent/requirements.txt (+1 -1)
📝 advanced_ai_agents/multi_agent_apps/agent_teams/ai_competitor_intelligence_agent_team/requirements.txt (+1 -1)
📝 advanced_ai_agents/multi_agent_apps/agent_teams/ai_game_design_agent_team/game_design_agent_team.py (+91 -188)
📝 advanced_ai_agents/multi_agent_apps/agent_teams/multimodal_design_agent_team/requirements.txt (+1 -1)
📝 advanced_ai_agents/multi_agent_apps/ai_financial_coach_agent/ai_financial_coach_agent.py (+4 -4)
📝 advanced_ai_agents/multi_agent_apps/ai_mental_wellbeing_agent/ai_mental_wellbeing_agent.py (+71 -136)
📝 advanced_ai_agents/multi_agent_apps/ai_mental_wellbeing_agent/requirements.txt (+2 -4)
📝 advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/beifong/requirements.txt (+1 -1)
📝 advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/prompt/service.py (+1 -1)
📝 advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/registry/service.py (+1 -1)
📝 advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/tools/service.py (+1 -1)
📝 advanced_llm_apps/chat-with-tarots/app.py (+1 -1)
📝 rag_tutorials/corrective_rag/corrective_rag.py (+1 -1)
📝 rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py (+1 -1)
📝 rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py (+1 -1)
📝 rag_tutorials/llama3.1_local_rag/llama3.1_local_rag.py (+2 -2)
📝 rag_tutorials/qwen_local_rag/qwen_local_rag_agent.py (+1 -1)
📝 rag_tutorials/rag_agent_cohere/rag_agent_cohere.py (+5 -6)
📝 rag_tutorials/rag_database_routing/rag_database_routing.py (+6 -14)

...and 1 more files

📄 Description

Split from #787 per owner's request - autogen-to-ag2 framework migration for chess, game design, and mental wellbeing agents


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/792 **Author:** [@Ggboykxz](https://github.com/Ggboykxz) **Created:** 5/8/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `autogen-migration` --- ### 📝 Commits (1) - [`862119b`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/862119bba39b72cf9da5e0614496bbb7753dd5c7) fix: migrate AutoGen to ag2, fix langchain imports, and update dependencies ### 📊 Changes **21 files changed** (+275 additions, -480 deletions) <details> <summary>View changed files</summary> 📝 `advanced_ai_agents/autonomous_game_playing_agent_apps/ai_chess_agent/ai_chess_agent.py` (+81 -113) 📝 `advanced_ai_agents/autonomous_game_playing_agent_apps/ai_chess_agent/requirements.txt` (+1 -1) 📝 `advanced_ai_agents/multi_agent_apps/agent_teams/ai_competitor_intelligence_agent_team/requirements.txt` (+1 -1) 📝 `advanced_ai_agents/multi_agent_apps/agent_teams/ai_game_design_agent_team/game_design_agent_team.py` (+91 -188) 📝 `advanced_ai_agents/multi_agent_apps/agent_teams/multimodal_design_agent_team/requirements.txt` (+1 -1) 📝 `advanced_ai_agents/multi_agent_apps/ai_financial_coach_agent/ai_financial_coach_agent.py` (+4 -4) 📝 `advanced_ai_agents/multi_agent_apps/ai_mental_wellbeing_agent/ai_mental_wellbeing_agent.py` (+71 -136) 📝 `advanced_ai_agents/multi_agent_apps/ai_mental_wellbeing_agent/requirements.txt` (+2 -4) 📝 `advanced_ai_agents/multi_agent_apps/ai_news_and_podcast_agents/beifong/requirements.txt` (+1 -1) 📝 `advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/prompt/service.py` (+1 -1) 📝 `advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/registry/service.py` (+1 -1) 📝 `advanced_ai_agents/single_agent_apps/windows_use_autonomous_agent/windows_use/agent/tools/service.py` (+1 -1) 📝 `advanced_llm_apps/chat-with-tarots/app.py` (+1 -1) 📝 `rag_tutorials/corrective_rag/corrective_rag.py` (+1 -1) 📝 `rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py` (+1 -1) 📝 `rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py` (+1 -1) 📝 `rag_tutorials/llama3.1_local_rag/llama3.1_local_rag.py` (+2 -2) 📝 `rag_tutorials/qwen_local_rag/qwen_local_rag_agent.py` (+1 -1) 📝 `rag_tutorials/rag_agent_cohere/rag_agent_cohere.py` (+5 -6) 📝 `rag_tutorials/rag_database_routing/rag_database_routing.py` (+6 -14) _...and 1 more files_ </details> ### 📄 Description Split from #787 per owner's request - autogen-to-ag2 framework migration for chess, game design, and mental wellbeing agents --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-17 05:44:39 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#5814