Skip to main content

LlamaIndex AgentMesh Integration

AgentMesh trust layer integration for LlamaIndex - enabling cryptographic identity verification and trust-gated agent workflows.

Overview

This integration provides:

  • TrustedAgentWorker: Agent worker with cryptographic identity and trust verification
  • TrustGatedQueryEngine: Query engines with access control based on trust
  • Secure Data Access: Governance layer for RAG pipelines with identity-based policies

Installation

pip install llama-index-agent-agentmesh

Quick Start

Creating a Trusted Agent

from llama_index.agent.agentmesh import TrustedAgentWorker, CMVKIdentity

# Generate cryptographic identity
identity = CMVKIdentity.generate(
    agent_name="research-agent",
    capabilities=["document_search", "summarization"],
)

# Create trusted agent worker
worker = TrustedAgentWorker.from_tools(
    tools=[search_tool, summarize_tool],
    identity=identity,
    llm=llm,
)

# Create agent with trust verification
agent = worker.as_agent()

Trust-Gated Query Engine

from llama_index.agent.agentmesh import TrustGatedQueryEngine, TrustPolicy

# Wrap query engine with trust policy
trusted_engine = TrustGatedQueryEngine(
    query_engine=base_engine,
    policy=TrustPolicy(
        min_trust_score=0.8,
        required_capabilities=["document_access"],
        audit_queries=True,
    ),
)

# Query requires verified identity
response = trusted_engine.query(
    "What are the quarterly results?",
    invoker_card=requester_card,
)

Multi-Agent Trust Handoffs

from llama_index.agent.agentmesh import TrustHandshake, TrustedAgentCard

# Create agent card for discovery
card = TrustedAgentCard(
    name="research-agent",
    description="Performs document research",
    capabilities=["search", "summarize"],
    identity=identity,
)
card.sign(identity)

# Verify peer before task handoff
handshake = TrustHandshake(my_identity=identity)
result = handshake.verify_peer(peer_card)

if result.trusted:
    # Safe to delegate task
    pass

Features

TrustedAgentWorker

An agent worker that:

  • Has cryptographic identity for authentication
  • Verifies peer agents before accepting tasks
  • Signs outputs for verification by recipients
  • Supports capability-based access control

TrustGatedQueryEngine

A query engine wrapper that:

  • Requires identity verification for queries
  • Enforces trust score thresholds
  • Restricts access based on capabilities
  • Provides audit logging of all queries

Data Access Governance

Control access to your RAG pipeline:

from llama_index.agent.agentmesh import DataAccessPolicy

policy = DataAccessPolicy(
    allowed_collections=["public", "internal"],
    denied_collections=["confidential"],
    require_audit=True,
    max_results_per_query=100,
)

# Apply policy to index
trusted_index = TrustedVectorStoreIndex(
    index=base_index,
    policy=policy,
)

Security Model

AgentMesh uses Ed25519 cryptography for:

  • Identity Generation: Unique DID per agent
  • Request Signing: All queries are signed
  • Response Verification: Outputs can be verified

API Reference

Class Description
CMVKIdentity Cryptographic agent identity
TrustedAgentWorker Agent worker with trust verification
TrustGatedQueryEngine Query engine with access control
TrustHandshake Peer verification protocol
TrustedAgentCard Agent discovery card
DataAccessPolicy RAG access governance

License

MIT License

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_agent_agentmesh-0.3.0.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llama_index_agent_agentmesh-0.3.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_agent_agentmesh-0.3.0.tar.gz.

File metadata

  • Download URL: llama_index_agent_agentmesh-0.3.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for llama_index_agent_agentmesh-0.3.0.tar.gz
Algorithm Hash digest
SHA256 6a3f204e5673095d570f1dd86c183b3d69ffa0b767f628c1b5b50a6e8a25124b
MD5 65d0e29cd4e3b61177713d9db3b40f4d
BLAKE2b-256 7fce58e67c97a22f12334506a7ac020dc216a0af91fa077579107cb1f7d74fc9

See more details on using hashes here.

File details

Details for the file llama_index_agent_agentmesh-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: llama_index_agent_agentmesh-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for llama_index_agent_agentmesh-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d0c908320b477783d773df01506dde539ea57766e0c2bb0f74ad243756729608
MD5 edd197af037ec3aa81e76e70fc8d870c
BLAKE2b-256 1d4ba97722088995151032ae8bc59c2fe464523605591e76f1a6e9e6b8340e05

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page