Skip to content

AI & Agents

Use this category for LLM-backed endpoints, tool surfaces, and agent runtimes hosted on Azure Functions. These recipes focus on integrating model workflows with serverless execution and HTTP interfaces.

Category map

flowchart LR
    Client[Client / Caller] -->|HTTP request| Fn[Azure Function]
    Fn --> Model[LLM / Azure OpenAI]
    Fn --> Tools[Tools & retrieval]
    Model --> Fn
    Tools --> Fn
    Fn -->|response| Client
Recipe Trigger Difficulty
MCP Server Example HTTP + MCP tool endpoint Intermediate
LangGraph Agent HTTP + agent graph runtime Advanced
RAG Knowledge API HTTP + Azure AI Search + OpenAI Advanced
LangGraph RAG Agent HTTP + azure-functions-langgraph-python Advanced
Azure OpenAI Direct Chat HTTP + Azure OpenAI SDK Beginner
Durable AI Pipeline HTTP + Durable Functions + Azure OpenAI Advanced
Streaming AI Response HTTP + SSE streaming Intermediate
AI Image Generation HTTP + DALL-E 3 Intermediate
Embedding Vector Search HTTP + Azure OpenAI + AI Search Advanced