llama-stack-mirror/docs/source/providers/agents/index.md
qifengleqifengle 35a0a6cb7b feat(vector-io): add OpenGauss vector database provider
Implement OpenGauss vector database integration for Llama Stack with the following features:
- Add OpenGaussVectorIOAdapter for vector storage and retrieval
- Support native vector similarity search operations
- Provide configuration template for easy setup
- Add comprehensive unit tests
- Align with the latest Llama Stack provider architecture, including KVStore and OpenAI Vector Store Mixin.

The implementation allows Llama Stack users to leverage OpenGauss as an
enterprise-grade vector database for RAG applications.
2025-08-19 17:13:24 +08:00

780 B

Agents

Overview

Agents API for creating and interacting with agentic systems.

Main functionalities provided by this API:

  • Create agents with specific instructions and ability to use tools.
  • Interactions with agents are grouped into sessions ("threads"), and each interaction is called a "turn".
  • Agents can be provided with various tools (see the ToolGroups and ToolRuntime APIs for more details).
  • Agents can be provided with various shields (see the Safety API for more details).
  • Agents can also use Memory to retrieve information from knowledge bases. See the RAG Tool and Vector IO APIs for more details.

This section contains documentation for all available providers for the agents API.

Providers

:maxdepth: 1

inline_meta-reference