Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md to fix typos #82

Merged
merged 3 commits into from
Mar 6, 2025
Merged
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
4 changes: 2 additions & 2 deletions 02-explore-agentic-frameworks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ Let's see if we can help you by going through some common use cases:

> Q: I'm still confused just give me one option
>
> A: A create choice is to build you application in Semantic Kernel first, and use Azure AI Agent Service to deploy you agent. This means you can easily perist your agents while still having the power to build multi-agent systems in Semantic Kernel. Semantic also has a connector in AutoGen to make it easy to use both frameworks together.
> A: A great choice is to build your application in Semantic Kernel first and then use Azure AI Agent Service to deploy your agent. This approach allows you to easily persist your agents while leveraging the power to build multi-agent systems in Semantic Kernel. Additionally, Semantic Kernel has a connector in AutoGen, making it easy to use both frameworks together.

Let's summarize the key differences in a table:

Expand All @@ -763,4 +763,4 @@ For AutoGen and Semantic Kernel, you can also integrate with Azure services, but
- <a href="https://learn.microsoft.com/semantic-kernel/frameworks/agent/?pivots=programming-language-python" target="_blank">Semantic Kernel Python Agent Framework</a>
- <a href="https://learn.microsoft.com/semantic-kernel/frameworks/agent/?pivots=programming-language-csharp" target="_blank">Semantic Kernel .Net Agent Framework</a>
- <a href="https://learn.microsoft.com/azure/ai-services/agents/overview" target="_blank">Azure AI Agent service</a>
- <a href="https://techcommunity.microsoft.com/blog/educatordeveloperblog/using-azure-ai-agent-service-with-autogen--semantic-kernel-to-build-a-multi-agen/4363121" target="_blank">Using Azure AI Agent Service with AutoGen / Semantic Kernel to build a multi-agent's solution</a>
- <a href="https://techcommunity.microsoft.com/blog/educatordeveloperblog/using-azure-ai-agent-service-with-autogen--semantic-kernel-to-build-a-multi-agen/4363121" target="_blank">Using Azure AI Agent Service with AutoGen / Semantic Kernel to build a multi-agent's solution</a>
2 changes: 1 addition & 1 deletion 04-tool-use/code_samples/04-autogen.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"outputs": [],
"source": [
"get_vacations = FunctionTool(\n",
" vacation_destinations, description=\"Search for vacation destinations and if they are availabe or not.\"\n",
" vacation_destinations, description=\"Search for vacation destinations and if they are available or not.\"\n",
")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion 04-tool-use/code_samples/04-semantic-kernel-tool.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"class DestinationsPlugin:\n",
" \"\"\"A List of Destinations for vacation.\"\"\"\n",
"\n",
" @kernel_function(description=\"Provides a list of vacation desinations.\")\n",
" @kernel_function(description=\"Provides a list of vacation destinations.\")\n",
" def get_destinations(self) -> Annotated[str, \"Returns the specials from the menu.\"]:\n",
" return \"\"\"\n",
" Barcelona, Spain\n",
Expand Down