Skip to content

Commit 649299f

Browse files
committed
added a2ui support and display part
1 parent 6ce8b1a commit 649299f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.vishalmysore</groupId>
88
<artifactId>a2ajava</artifactId>
9-
<version>1.0.1</version>
9+
<version>1.0.2</version>
1010
<name>A2A Protocol Implementation for Java</name>
1111
<description>
1212
Java implementation of the A2A protocol v1.0, which allows for the exchange of data between different AI systems.
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>io.github.vishalmysore</groupId>
8282
<artifactId>tools4ai</artifactId>
83-
<version>1.1.6.2</version>
83+
<version>1.1.8</version>
8484
</dependency>
8585

8686
<dependency>

src/main/java/io/github/vishalmysore/a2ui/A2UIDisplay.java renamed to src/main/java/io/github/vishalmysore/a2ui/A2UIAware.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package io.github.vishalmysore.a2ui;
22

33
import com.t4a.detect.ActionCallback;
4+
import com.t4a.processor.ActionCallbackAware;
45
import io.github.vishalmysore.common.CallBackType;
56

67
import java.util.*;
@@ -9,7 +10,7 @@
910
* Utility interface for creating A2UI display components
1011
* Provides reusable methods for building A2UI surface updates, components, and rendering messages
1112
*/
12-
public interface A2UIDisplay {
13+
public interface A2UIAware extends ActionCallbackAware {
1314

1415
/**
1516
* Creates a surface update map with the given surface ID

0 commit comments

Comments
 (0)