#28577 [Bug]: OpenAI→A2A bridge breaks for spec-compliant A2A agents (fasta2a / Pydantic AI)
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### What happened?
# OpenAI→A2A bridge breaks for spec-compliant A2A agents (fasta2a / Pydantic AI)
**Affected version**: `litellm-database:main-stable` (sha as of 2026-05-22, latest release at the time of testing) **Component**: `litellm/llms/a2a/` — OpenAI-compatible proxy for A2A Agent Gateway agents **Severity**: High — makes the OpenAI-compat path unusable for any A2A agent that - emits structured outputs (Pydantic AI `output_type=...`), and/or - validates incoming requests strictly against the A2A spec (fasta2a does).
## TL;DR
Calling `POST /v1/chat/completions` with `model="a2a/<name>"` (where `<name>` is a registered A2A agent backed by a fasta2a server, e.g. Pydantic AI's `agent.to_a2a()`) fails in four independent ways:
1. **`message.kind` missing** → agent rejects with 422 / LiteLLM bubbles up 500. 2. **`kind: "data"` parts dropped** → 200 OK but `message.content == ""`. 3. **No polling of async A2A tasks** → response carries `state="submitted"`, never `"completed"`, so artifacts are never fetched. 4. **`stream=true` maps to `message/stream` whi…