We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8af8ac commit c1108baCopy full SHA for c1108ba
spec-grpc/src/main/java/io/a2a/grpc/utils/ProtoUtils.java
@@ -132,6 +132,9 @@ public static io.a2a.grpc.AgentCard agentCard(AgentCard agentCard) {
132
if (agentCard.signatures() != null) {
133
builder.addAllSignatures(agentCard.signatures().stream().map(ToProto::agentCardSignature).collect(Collectors.toList()));
134
}
135
+ if (agentCard.iconUrl() != null) {
136
+ builder.setIconUrl(agentCard.iconUrl());
137
+ }
138
return builder.build();
139
140
0 commit comments