Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

ovos-a2a-solver-plugin

An OVOS ChatEngine plugin. It lets an ovos-persona send its reasoning to an external agent that speaks the Agent2Agent (A2A) protocol.

This plugin implements the consumer side of OpenVoiceOS/ovos-persona#164.


What is A2A?

Agent2Agent (A2A) is an open protocol. It lets software agents work together no matter how each one is built inside. An A2A-compliant server does three things:

  1. It exposes a discovery document at GET /.well-known/agent.json (the agent card). This card describes the server's identity and its skills and capabilities.
  2. It accepts tasks at its root URL as JSON-RPC 2.0 requests (tasks/send for a blocking call, tasks/sendSubscribe for SSE streaming).
  3. It returns structured responses with typed artifact parts: text, file, or data.

This plugin implements only the client (consumer) side. It calls remote A2A agents from inside an OVOS persona.


Installation

pip install ovos-a2a-solver-plugin

This plugin needs Python 3.10 or later, and ovos-plugin-manager >= 2.3.0a1.


Configuration

Add the plugin as the engine for an ovos-persona persona:

# ~/.config/mycroft/personas/my-a2a-persona.yaml
name: my-a2a-persona
engine: ovos-a2a-solver
engine_config:
  agent_url: "https://my-a2a-agent.example.com"   # required
  auth_header: "Bearer <token>"                    # optional
  timeout: 60                                      # seconds (default 60)
  streaming: false                                 # set true to use SSE streaming
Key Type Default Description
agent_url str (none) Required. Root URL of the A2A server.
auth_header str None Full Authorization header value, for example Bearer <token>.
Key Type Default Description
timeout float 60 HTTP timeout in seconds.
streaming bool False Use tasks/sendSubscribe (SSE) instead of the blocking tasks/send. The server must advertise capabilities.streaming: true.

Persona wiring example

from ovos_persona import PersonaService
# PersonaService loads persona YAML files automatically.
# Once the plugin is installed, setting engine: ovos-a2a-solver in the
# persona YAML is all that is needed.
svc = PersonaService(config={})
reply = svc.chat("What is the capital of Portugal?", persona="my-a2a-persona")
print(reply)  # "Lisbon."

You can also use the engine directly:

from ovos_a2a_solver import A2AChatEngine
from ovos_plugin_manager.templates.agents import AgentMessage, MessageRole

engine = A2AChatEngine(config={
    "agent_url": "https://my-a2a-agent.example.com",
})

messages = [
    AgentMessage(role=MessageRole.SYSTEM, content="You are a helpful assistant."),
    AgentMessage(role=MessageRole.USER, content="Hello!"),
]
reply = engine.continue_chat(messages)
print(reply.content)

For streaming:

engine = A2AChatEngine(config={
    "agent_url": "https://my-a2a-agent.example.com",
    "streaming": True,
})

for chunk in engine.stream_tokens(messages):
    print(chunk, end="", flush=True)

A2AClient (low-level usage)

Use the A2AClient class on its own, without OPM:

from ovos_a2a_solver import A2AClient

with A2AClient("https://my-a2a-agent.example.com") as client:
    card = client.fetch_agent_card()
    print(card.name, card.skills)

    answer = client.send_task(
        "Summarise the A2A spec in one sentence.",
        session_id="my-session",
    )
    print(answer)

Protocol notes

Agent-card discovery

On __init__ the engine fetches GET {agent_url}/.well-known/agent.json and logs the agent's name. A failure here is not fatal. The engine continues and still attempts tasks. This matters when the card endpoint sits behind auth.

Message history

The OVOS ChatEngine receives the full conversation list. The plugin maps it to A2A history as follows:

OVOS role A2A mapping
system Injected as the first user-role history turn (A2A has no system role)
user user history turns. The last user message becomes the task message
assistant assistant history turns

Streaming

When streaming: true, the plugin calls tasks/sendSubscribe and yields text chunks over SSE. If the server's agent card reports capabilities.streaming: false, the plugin falls back to the blocking tasks/send and logs a warning.


Development

git clone https://github.com/TigreGotico/ovos-a2a-solver-plugin
cd ovos-a2a-solver-plugin
pip install -e ".[test]"
pytest test/ -v

Related projects


Credits

Developed by TigreGótico for OpenVoiceOS.

NGI0 Commons Fund

This project was funded through the NGI0 Commons Fund, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme, under the aegis of DG Communications Networks, Content and Technology under grant agreement No 101135429.


License

Apache License 2.0. See LICENSE.

Download files

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

Source Distribution

ovos_a2a_solver_plugin-0.0.1a2.tar.gz (20.3 kB view details)

Uploaded Source

Built Distribution

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

ovos_a2a_solver_plugin-0.0.1a2-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

Details for the file ovos_a2a_solver_plugin-0.0.1a2.tar.gz.

File metadata

  • Download URL: ovos_a2a_solver_plugin-0.0.1a2.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ovos_a2a_solver_plugin-0.0.1a2.tar.gz
Algorithm Hash digest
SHA256 60e5a99b5dbd2b559c75e56902f5c52f50d5a8b56538c9eee3ae1ba8fd5b2a39
MD5 4819c3ece7f1f89f308c6b427fe97c7c
BLAKE2b-256 59649944e9a27bcff72a85297b1f2be8e54e9055d14dc096c203f269299148c1

See more details on using hashes here.

File details

Details for the file ovos_a2a_solver_plugin-0.0.1a2-py3-none-any.whl.

File metadata

File hashes

Hashes for ovos_a2a_solver_plugin-0.0.1a2-py3-none-any.whl
Algorithm Hash digest
SHA256 2deb8e10f9c51baac0ae3c83b0572cbd2c07f78fea7d0e7d7c37af90af29069c
MD5 b15bd3169752c07fc824d910b2f9c301
BLAKE2b-256 6efc9e407152dabf197b5067f9397f94a99b7d53fc77e5b527dd405851963b3a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.0.1a2 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page