---
title: Examples
 | Developer Documentation
---

LlamaIndex provides a rich collection of examples demonstrating diverse use cases, integrations, and features. This page highlights key examples to help you get started.

In the navigation to the left, you will also find many example notebooks, displaying the usage of various llama-index components and use-cases.

## Agents

Build powerful AI assistants with LlamaIndex’s agent capabilities:

- [Function Calling Agent](/python/examples/agent/agent_workflow_basic/index.md) - Learn the basics of Function Calling Agents and `AgentWorkflow`
- [React Agent](/python/examples/agent/react_agent/index.md) - Use the ReAct (Reasoning and Acting) pattern with agents
- [Code Act Agent](/python/examples/agent/code_act_agent/index.md) - Agents that can write and execute code
- [Multi-Agent Workflow](/python/examples/agent/agent_workflow_multi/index.md) - Build a multi-agent workflow with `AgentWorkflow`

You might also be interested in the [general introduction to agents](/python/framework/understanding/agent/index.md).

## Agentic Workflows

Use LlamaIndex Workflows to build agentic systems:

- [Function Calling Agent from Scratch](/python/examples/workflow/function_calling_agent/index.md) - Build a Function Calling agent from scratch
- [React Agent](/python/examples/workflow/react_agent/index.md) - Build a ReAct agent
- [CodeAct Agent from Scratch](/python/examples/agent/from_scratch_code_act_agent/index.md) - Build a CodeAct agent from scratch
- [Basic RAG](/python/examples/workflow/rag/index.md) - Simple RAG workflow implementation
- [Advanced Text-to-SQL](/python/examples/workflow/advanced_text_to_sql/index.md) - Use LlamaIndex to generate SQL queries and execute them

You might also be interested in the [general introduction to agentic workflows](/python/llamaagents/workflows/index.md).

## LLM Integrations

Connect with popular LLM providers:

- [OpenAI](/python/examples/llm/openai/index.md) - Use OpenAI models (GPT-3.5, GPT-4, etc.)
- [Anthropic](/python/examples/llm/anthropic/index.md) - Integrate with Claude models
- [Bedrock](/python/examples/llm/bedrock_converse/index.md) - Work with Meta’s Llama 3 models
- [Gemini/Vertex](/python/examples/llm/gemini/index.md) - Use Google’s Gemini/Vertex models
- [Mistral](/python/examples/llm/mistralai/index.md) - Integrate with Mistral AI models
- [Ollama](/python/examples/llm/ollama/index.md) - Use Ollama models locally

You might also be interested in the [general introduction to LLM in LlamaIndex](/python/framework/understanding/using_llms/index.md).

## Embedding Models

Various embedding model integrations:

- [OpenAI Embeddings](/python/examples/embeddings/openai/index.md) - OpenAI’s text embedding models
- [Cohere Embeddings](/python/examples/embeddings/cohereai/index.md) - Cohere’s embedding models
- [HuggingFace Embeddings](/python/examples/embeddings/huggingface/index.md) - Use open-source embeddings from HuggingFace locally
- [Jina Embeddings](/python/examples/embeddings/jina_embeddings/index.md) - Jina AI’s embedding models
- [Ollama Embeddings](/python/examples/embeddings/ollama_embedding/index.md) - Ollama’s embedding models
- [VoyageAI Embeddings](/python/examples/embeddings/voyageai/index.md) - VoyageAI’s embedding models

## Vector Stores

Store and retrieve vector embeddings:

- [Pinecone](/python/examples/vector_stores/pineconeindexdemo/index.md) - Pinecone vector database integration
- [Chroma](/python/examples/vector_stores/chromaindexdemo/index.md) - Chroma vector store
- [Weaviate](/python/examples/vector_stores/weaviateindexdemo/index.md) - Weaviate vector database
- [Qdrant](/python/examples/vector_stores/qdrantindexdemo/index.md) - Qdrant vector database
- [MongoDB Atlas](/python/examples/vector_stores/mongodbatlasvectorsearch/index.md) - MongoDB Atlas Vector Search
- [Redis](/python/examples/vector_stores/redisindexdemo/index.md) - Redis vector database
- [Milvus](/python/examples/vector_stores/milvusindexdemo/index.md) - Milvus vector database
- [Azure AI Search](/python/examples/vector_stores/azureaisearchindexdemo/index.md) - Azure AI Search vector database

You might also be interested in the [general introduction to vector stores and retrieval](/python/framework/understanding/rag/index.md).
