Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions 03_modern-Ai/02_agentic-ai.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions 03_modern-Ai/contrib/valentina-1.md
Original file line number Diff line number Diff line change
@@ -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.
6 changes: 6 additions & 0 deletions 03_modern-Ai/contrib/valentina-2.md
Original file line number Diff line number Diff line change
@@ -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.