Skip to content

Commit 9aff148

Browse files
authored
Merge branch 'main' into fix_message_stream
2 parents 2d7bcba + 98c200e commit 9aff148

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/update-a2a-types.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
token: ${{ secrets.A2A_BOT_PAT }}
6969
committer: "a2a-bot <[email protected]>"
7070
author: "a2a-bot <[email protected]>"
71-
commit-message: "${{github.event.client_payload.message}} 🤖"
72-
title: "${{github.event.client_payload.message}} 🤖"
71+
commit-message: "chore: Update A2A types from specification 🤖"
72+
title: "chore: Update A2A types from specification 🤖"
7373
body: |
7474
This PR updates `src/a2a/types.py` based on the latest `specification/json/a2a.json` from [google-a2a/A2A](https://github.com/google-a2a/A2A/commit/${{ github.event.client_payload.sha }}).
7575
branch: "auto-update-a2a-types-${{ github.event.client_payload.sha }}"

src/a2a/types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ class AgentSkill(BaseModel):
100100
"""
101101
The set of interaction modes that the skill supports
102102
(if different than the default).
103-
Supported mime types for input.
103+
Supported media types for input.
104104
"""
105105
name: str
106106
"""
107107
Human readable name of the skill.
108108
"""
109109
outputModes: list[str] | None = None
110110
"""
111-
Supported mime types for output.
111+
Supported media types for output.
112112
"""
113113
tags: list[str]
114114
"""
@@ -1372,11 +1372,11 @@ class AgentCard(BaseModel):
13721372
defaultInputModes: list[str]
13731373
"""
13741374
The set of interaction modes that the agent supports across all skills. This can be overridden per-skill.
1375-
Supported mime types for input.
1375+
Supported media types for input.
13761376
"""
13771377
defaultOutputModes: list[str]
13781378
"""
1379-
Supported mime types for output.
1379+
Supported media types for output.
13801380
"""
13811381
description: str
13821382
"""

0 commit comments

Comments
 (0)