From c635856e7ad7dd715feded0fb99e1114ac921cd1 Mon Sep 17 00:00:00 2001 From: Bruno Capuano Date: Fri, 14 Feb 2025 10:35:46 -0500 Subject: [PATCH 1/3] Fix typos "Ai" to "AI" --- 02-explore-agentic-frameworks/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/02-explore-agentic-frameworks/README.md b/02-explore-agentic-frameworks/README.md index 280ceb65..ad60e6bf 100644 --- a/02-explore-agentic-frameworks/README.md +++ b/02-explore-agentic-frameworks/README.md @@ -1,4 +1,4 @@ -# Explore Ai Agent Frameworks +# Explore AI Agent Frameworks AI agent frameworks are software platforms designed to simplify the creation, deployment, and management of AI agents. These frameworks provide developers with pre-built components, abstractions, and tools that streamline the development of complex AI systems. @@ -10,7 +10,7 @@ This lesson will cover: - What are AI Agent Frameworks and what do they enable developers to do? - How can teams use these to quickly prototype, iterate, and improve my agent’s capabilities? -- What are the difference between the frameworks and tools created by Microsoft ( [Autogen](https://aka.ms/ai-agents/autogen) / [Semantic Kernel](https://aka.ms/ai-agents-beginners/semantic-kernel) / [Azure AI Agent Service](https://aka.ms/ai-agents-beginners/ai-agent-service)) +- What are the difference between the frameworks and tools created by Microsoft ( [Autogen](https://aka.ms/ai-agents/autogen) / [Semantic Kernel](https://aka.ms/ai-agents-beginners/semantic-kernel) / [Azure AI Agent Service](https://aka.ms/ai-agents-beginners/ai-agent-service)) - Can I integrate my existing Azure ecosystem tools directly, or do I need standalone solutions? - what is Azure AI Agents service and how is this helping me? @@ -258,7 +258,7 @@ Semantic Kernel consists of two things, the Semantic Kernel Agent Framework and Let's first talk about the Semantic Kernel. It has the following core concepts: -- **Connections**: This is an interface with external Ai services and data sources. +- **Connections**: This is an interface with external AI services and data sources. ```csharp using Microsoft.SemanticKernel; @@ -371,7 +371,7 @@ Let's first talk about the Semantic Kernel. It has the following core concepts: These facts are then stored in the memory collection `SummarizedAzureDocs`. This is a very simplified example, but you can see how you can store information in the memory for the LLM to use. So that's the basics of the Semantic Kernel framework, what about the Agent Framework? - + ## Azure AI Agent Service Azure AI Agent Service is a more recent addition, introduced at Microsoft Ignite 2024. It allows for the development and deployment of AI agents with more flexible models, such as directly calling open-source LLMs like Llama 3, Mistral, and Cohere. From 1c275d66d98ea8113a21b45fc19b1630271f0707 Mon Sep 17 00:00:00 2001 From: Bruno Capuano Date: Fri, 14 Feb 2025 10:40:05 -0500 Subject: [PATCH 2/3] Fix link to "Understanding Agentic Design Patterns" in README.md and add VSCode settings for ignored pull request branches --- .vscode/settings.json | 5 +++++ README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..b242572e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] +} \ No newline at end of file diff --git a/README.md b/README.md index 9d111fb5..47556b10 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ If you get stuck or have any questions about bulding AI Agents, join our [Azure |----------------------------------------|--------------------------------------------| | Intro to AI Agents and Use Cases | [Link](./01-intro-to-ai-agents/README.md) | | Exploring Agentic Frameworks | [Link](./02-explore-agentic-frameworks/README.md) | -| Understanding Agentic Design Patterns | [Link](./03-explore-agentic-frameworks/README.md) | +| Understanding Agentic Design Patterns | [Link](./03-agentic-design-patterns/README.md) | | Tool Use Design Pattern | [Link](./04-tool-use/README.md) | | Agentic RAG | [Link](./05-agentic-rag/README.md) | | Building Trustworty AI Agents | [Link](./06-building-trustworthy-agents/README.md) | From c56cee05c6bef21a1ab3fc2a93a97c0d29d71427 Mon Sep 17 00:00:00 2001 From: Bruno Capuano Date: Fri, 14 Feb 2025 10:40:52 -0500 Subject: [PATCH 3/3] Remove VSCode settings for ignored pull request branches --- .vscode/settings.json | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index b242572e..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "githubPullRequests.ignoredPullRequestBranches": [ - "main" - ] -} \ No newline at end of file