Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions specification/a2a.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ service A2AService {
// Returns `UnsupportedOperationError` if the task is already in a terminal state (completed, failed, canceled, rejected).
rpc SubscribeToTask(SubscribeToTaskRequest) returns (stream StreamResponse) {
option (google.api.http) = {
get: "/tasks/{id=*}:subscribe"
post: "/tasks/{id=*}:subscribe"
body: "*"
additional_bindings: {
get: "/{tenant}/tasks/{id=*}:subscribe"
post: "/{tenant}/tasks/{id=*}:subscribe"
body: "*"
}
};
}
Expand Down
Loading