@a2a-js/sdk 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/chunk-DHC2REQH.js +2145 -0
- package/dist/{chunk-LTPINR5K.js → chunk-NUQQPJNY.js} +3 -60
- package/dist/chunk-UHZEIZLS.js +62 -0
- package/dist/client/index.cjs +2157 -26
- package/dist/client/index.js +99 -27
- package/dist/server/express/index.cjs +2067 -14
- package/dist/server/express/index.js +71 -17
- package/dist/server/index.js +4 -2
- package/package.json +14 -1
- package/dist/chunk-SJNAG4AL.js +0 -122
package/README.md
CHANGED
|
@@ -33,6 +33,16 @@ You can also find some samples [here](https://github.com/a2aproject/a2a-js/tree/
|
|
|
33
33
|
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
+
## Compatibility
|
|
37
|
+
|
|
38
|
+
This SDK implements the A2A Protocol Specification [`v0.3.0`](https://a2a-protocol.org/v0.3.0/specification).
|
|
39
|
+
|
|
40
|
+
| Transport | Client | Server |
|
|
41
|
+
| :--- | :---: | :---: |
|
|
42
|
+
| **JSON-RPC** | ✅ | ✅ |
|
|
43
|
+
| **HTTP+JSON/REST** | ✅ | ✅ |
|
|
44
|
+
| **gRPC** | ❌ | ❌ |
|
|
45
|
+
|
|
36
46
|
## Quickstart
|
|
37
47
|
|
|
38
48
|
This example shows how to create a simple "Hello World" agent server and a client to interact with it.
|