Consume external A2A agents as OVOS persona solvers
Project description
ovos-a2a-solver-plugin
An OVOS ChatEngine plugin that lets an ovos-persona delegate its reasoning to any external agent that speaks the Agent2Agent (A2A) protocol.
Implements the consumer side of OpenVoiceOS/ovos-persona#164.
What is A2A?
Agent2Agent (A2A) is an open protocol that lets software agents interoperate regardless of their internal implementation. An A2A-compliant server:
- Exposes a discovery document at
GET /.well-known/agent.json(the agent card) that describes its identity, skills, and capabilities. - Accepts tasks at its root URL as JSON-RPC 2.0 requests (
tasks/sendfor blocking,tasks/sendSubscribefor SSE streaming). - Returns structured responses with typed artifact parts (text, file, data).
This plugin implements the client (consumer) side only — it calls remote A2A agents from within an OVOS persona.
Installation
pip install ovos-a2a-solver-plugin
Requires Python ≥ 3.10 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 |
— | Required. Root URL of the A2A server. |
auth_header |
str |
None |
Full Authorization header value, e.g. Bearer <token>. |
timeout |
float |
60 |
HTTP timeout in seconds. |
streaming |
bool |
False |
Use tasks/sendSubscribe (SSE) instead of blocking tasks/send. 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."
Or 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
The A2AClient class can be used independently of 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 is non-fatal — the engine continues and will
attempt tasks anyway (useful when the card endpoint is behind auth).
Message history
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 via SSE. If the server's agent card reports capabilities.streaming: false
the plugin falls back to blocking tasks/send and warns.
Development
git clone https://github.com/TigreGotico/ovos-a2a-solver-plugin
cd ovos-a2a-solver-plugin
pip install -e ".[test]"
pytest test/ -v
Credits
Developed by TigreGótico for OpenVoiceOS.
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ovos_a2a_solver_plugin-0.0.0a5.tar.gz.
File metadata
- Download URL: ovos_a2a_solver_plugin-0.0.0a5.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a421bc6504b19717519738e1c53dddf29a397f7c531f46d8a2d9c734ab6f575f
|
|
| MD5 |
6b28afb0d18d21484c4fc11829d7c1e0
|
|
| BLAKE2b-256 |
087e8be4552bc746e89a7755438b7421bb36c47d8e949becafb898f5e77fd90d
|
File details
Details for the file ovos_a2a_solver_plugin-0.0.0a5-py3-none-any.whl.
File metadata
- Download URL: ovos_a2a_solver_plugin-0.0.0a5-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48f8fa2e4969bf738f9be1ee9623af56dc1d27bafca5ce0820c060280b528155
|
|
| MD5 |
003a231c2bd968595c778dead67c3b5b
|
|
| BLAKE2b-256 |
0e545086b6b038413e507f21a06dc2d92554492bd6bb703b964c714d4440aeec
|