diff --git a/03_modern-Ai/02_agentic-ai.md b/03_modern-Ai/02_agentic-ai.md index 1e5681a..e6deb0e 100644 --- a/03_modern-Ai/02_agentic-ai.md +++ b/03_modern-Ai/02_agentic-ai.md @@ -1,6 +1,6 @@ # Agentic AI -Agentic AI refers to systems that operate autonomously, making decisions and taking actions toward goals without constant human supervision. This is a core area of modern AI, where models like LLMs are embedded within agents that can plan, reason, and interact with tools and environments. +Agentic AI refers to systems that operate autonomously, making decisions and taking actions toward goals without constant human supervision. This is a core area of modern AI, where models like LLMs[...] ## Learning Objectives @@ -13,7 +13,7 @@ By the end of this module, you should be able to: ## Why It’s Important -Agentic systems are key to making LLMs actually *useful* in real-world applications — from autonomous research assistants to customer service bots and AI co-pilots. They unlock continuous reasoning, memory, planning, and decision-making. +Agentic systems are key to making LLMs actually *useful* in real-world applications — from autonomous research assistants to customer service bots and AI co-pilots. They unlock continuous reason[...] ## Core Topics & Resources @@ -43,7 +43,7 @@ Covers: ### 3. Agentic Frameworks - [LangChain Agents](https://docs.langchain.com/docs/components/agents/) — **Free** -- [Auto-GPT](https://github.com/Torantulino/Auto-GPT) — **Free, Open Source** +- [Auto-GPT (Torantulino)](https://github.com/Torantulino/Auto-GPT) — **Free, Open Source** - [CrewAI (Multi-Agent Framework)](https://github.com/joaomdmoura/crewAI) — **Free** Covers: @@ -74,6 +74,19 @@ Covers: - Open-source agentic frameworks - Research directions and challenges +### Hands-on Tutorials & Example Repos + +- [ReAct: Synergizing Reasoning and Acting in Language Models (arXiv)](https://arxiv.org/abs/2210.03629) — Paper introducing the ReAct paradigm for combining reasoning and actions in LLMs — **Free** +- [langchain-ai/langchain-examples (GitHub)](https://github.com/langchain-ai/langchain-examples) — Example agent implementations, notebooks, and patterns for LangChain — **Free** +- [yoheinakajima/BabyAGI (GitHub)](https://github.com/yoheinakajima/babyagi) — Minimal agent loop implementation useful for prototyping ideas — **Free, Open Source** +- [Torantulino/Auto-GPT (GitHub)](https://github.com/Torantulino/Auto-GPT) — Autonomous agent that demonstrates goal-driven multi-step behavior — **Free, Open Source** +- [microsoft/autogen (GitHub)](https://github.com/microsoft/autogen) — Microsoft’s toolkit for multi-agent orchestration and simulations — **Free, Open Source** + +Covers: +- Ready-to-run examples and templates to build agents quickly +- Minimal implementations for learning agent loops and memory +- Notebooks and tutorials that demonstrate tool use and function calling + ## Suggested Projects & Practice - Build a Research Agent: takes a question and returns summarized answers diff --git a/03_modern-Ai/contrib/valentina-1.md b/03_modern-Ai/contrib/valentina-1.md new file mode 100644 index 0000000..6aa19f1 --- /dev/null +++ b/03_modern-Ai/contrib/valentina-1.md @@ -0,0 +1,6 @@ +# Chain-of-Thought (CoT) — valentina-starr1 contribution + +- Paper: [Chain of Thought Prompting Elicits Reasoning in Large Language Models](https://arxiv.org/abs/2201.11903) — Explains CoT prompting which helps LLMs perform multi-step reasoning, a useful technique when designing agent reasoning workflows. + +Why this matters for agents: +- CoT-style prompts can structure multi-step planning and reasoning inside an agent's thought process. diff --git a/03_modern-Ai/contrib/valentina-2.md b/03_modern-Ai/contrib/valentina-2.md new file mode 100644 index 0000000..775c1d0 --- /dev/null +++ b/03_modern-Ai/contrib/valentina-2.md @@ -0,0 +1,6 @@ +# ReAct (Reasoning and Acting) — valentina-starr1 contribution + +- Paper: [ReAct: Synergizing Reasoning and Acting in Language Models](https://arxiv.org/abs/2210.03629) — Introduces the ReAct approach that interleaves chain-of-thought style reasoning with external actions (API calls, tool use), which is directly applicable to agent decision loops. + +Why this matters for agents: +- ReAct shows how to structure prompts and agent loops so that models can both reason about tasks and perform actions, improving task decomposition and tool use. \ No newline at end of file