Skip to content

Commit 759a7c4

Browse files
committed
fixing, relative links
1 parent e7dabbd commit 759a7c4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

learn-pr/wwl-data-ai/implement-generative-ai-agents-azure-postgresql/includes/04-evaluate-agentic-frameworks-integration-postgresql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ AI agents rely on orchestration frameworks to manage tasks, coordinate tools, an
44

55
Several open-source and Microsoft-supported frameworks help developers build and manage AI agents. For example, at Margie's Travel these frameworks play different roles in supporting guest interactions and property recommendations:
66

7-
- [**Microsoft Agent Framework**](https://learn.microsoft.com/en-us/agent-framework/overview/agent-framework-overview) is a unified framework that merges the best capabilities of *AutoGen* and *Semantic Kernel*. It provides connectors for memory storage, tool calling, multi-agent orchestration, and enterprise integration. It integrates with Azure Database for PostgreSQL for storing embeddings and chat history. Margie's Travel uses Microsoft Agent Framework to manage guest conversations, coordinate tools that access booking data, and enable dynamic handoffs between specialized agents.
7+
- [**Microsoft Agent Framework**](/agent-framework/overview/agent-framework-overview) is a unified framework that merges the best capabilities of *AutoGen* and *Semantic Kernel*. It provides connectors for memory storage, tool calling, multi-agent orchestration, and enterprise integration. It integrates with Azure Database for PostgreSQL for storing embeddings and chat history. Margie's Travel uses Microsoft Agent Framework to manage guest conversations, coordinate tools that access booking data, and enable dynamic handoffs between specialized agents.
88
- [**LangGraph**](https://github.com/langchain-ai/langgraph) enables multi-agent workflows with branching logic and memory. It works well for orchestrating agents that handle inventory, personalization, and presentation tasks. Margie's Travel uses LangGraph to coordinate agents that respond to complex guest queries involving multiple steps.
99
- [**LlamaIndex**](https://www.llamaindex.ai/) offers indexing and retrieval capabilities, allowing agents to search structured and unstructured data stored in PostgreSQL. Margie's Travel uses LlamaIndex to surface relevant property descriptions and reviews from both relational tables and freeform notes.
10-
- [**Foundry Agent Service**](https://learn.microsoft.com/en-us/azure/ai-foundry/agents/overview) provides a hosted orchestration layer for building and deploying agents with built-in support for Azure services. Margie's Travel uses this service to deploy agents that interact with *Azure OpenAI*, Azure Search, and other tools in production.
10+
- [**Foundry Agent Service**](/azure/ai-foundry/agents/overview) provides a hosted orchestration layer for building and deploying agents with built-in support for Azure services. Margie's Travel uses this service to deploy agents that interact with *Azure OpenAI*, Azure Search, and other tools in production.
1111

1212
## Compare framework capabilities
1313

@@ -22,7 +22,7 @@ Although all frameworks support agent orchestration, they differ in focus:
2222

2323
Each framework can connect to Azure Database for PostgreSQL to support agent memory, retrieval, and context management:
2424

25-
- **Microsoft Agent Framework** uses memory connectors to store and retrieve embeddings from PostgreSQL with the `pgvector` extension, combining capabilities from both *Semantic Kernel* and *AutoGen*. Learn more in the [Microsoft Agent Framework documentation](https://learn.microsoft.com/en-us/agent-framework/overview/agent-framework-overview).
25+
- **Microsoft Agent Framework** uses memory connectors to store and retrieve embeddings from PostgreSQL with the `pgvector` extension, combining capabilities from both *Semantic Kernel* and *AutoGen*. Learn more in the [Microsoft Agent Framework documentation](/agent-framework/overview/agent-framework-overview).
2626
- **LangGraph** integrates through [LangChain's PostgreSQL components](https://python.langchain.com/docs/integrations/vectorstores/pgvector) for vector storage and retrieval in multi-agent workflows.
2727
- **LlamaIndex** provides [PostgreSQL vector store integration](https://docs.llamaindex.ai/en/stable/examples/vector_stores/postgres/) for document indexing and semantic search.
2828
- **Foundry Agent Service** connects to PostgreSQL through custom tools and API endpoints, as demonstrated in this module's exercise.

0 commit comments

Comments
 (0)