a2a-adapter 0.1.1__tar.gz → 0.1.3__tar.gz
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.
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/PKG-INFO +28 -28
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/README.md +22 -22
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/__init__.py +1 -1
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter.egg-info/PKG-INFO +28 -28
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/pyproject.toml +6 -6
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/LICENSE +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/adapter.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/client.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/integrations/__init__.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/integrations/callable.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/integrations/crewai.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/integrations/langchain.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/integrations/n8n.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter/loader.py +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter.egg-info/SOURCES.txt +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter.egg-info/dependency_links.txt +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter.egg-info/requires.txt +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/a2a_adapter.egg-info/top_level.txt +0 -0
- {a2a_adapter-0.1.1 → a2a_adapter-0.1.3}/setup.cfg +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a2a-adapter
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A2A Protocol Adapter SDK for integrating various agent frameworks
|
|
5
5
|
Author-email: HYBRO AI <info@hybro.ai>
|
|
6
|
-
License:
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Repository, https://github.com/
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/hybroai/a2a-adapter
|
|
8
|
+
Project-URL: Documentation, https://github.com/hybroai/a2a-adapter#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/hybroai/a2a-adapter
|
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved ::
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -94,15 +94,15 @@ A Python SDK that enables seamless integration of various agent frameworks (n8n,
|
|
|
94
94
|
|
|
95
95
|
**Single-Agent Design**: Each server hosts exactly one agent. Multi-agent orchestration is handled externally via A2A protocol or orchestration frameworks like LangGraph.
|
|
96
96
|
|
|
97
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
|
|
97
|
+
See [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md) for detailed design documentation.
|
|
98
98
|
|
|
99
99
|
## Documentation
|
|
100
100
|
|
|
101
|
-
- 🚀 Quick Start: [QUICKSTART.md](QUICKSTART.md)
|
|
102
|
-
- 🧪 Examples: [examples/](examples/)
|
|
103
|
-
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](GETTING_STARTED_DEBUG.md)
|
|
104
|
-
- 🧠 Architecture: [ARCHITECTURE.md](ARCHITECTURE.md)
|
|
105
|
-
- 🤝 Contributing: [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
101
|
+
- 🚀 Quick Start: [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)
|
|
102
|
+
- 🧪 Examples: [examples/](https://github.com/hybroai/a2a-adapter/tree/main/examples/)
|
|
103
|
+
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](https://github.com/hybroai/a2a-adapter/blob/main/GETTING_STARTED_DEBUG.md)
|
|
104
|
+
- 🧠 Architecture: [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)
|
|
105
|
+
- 🤝 Contributing: [CONTRIBUTING.md](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)
|
|
106
106
|
|
|
107
107
|
## Installation
|
|
108
108
|
|
|
@@ -136,7 +136,7 @@ pip install a2a-adapter[dev]
|
|
|
136
136
|
|
|
137
137
|
## 🚀 Quick Start
|
|
138
138
|
|
|
139
|
-
**Get started in 5 minutes!** See [QUICKSTART.md](QUICKSTART.md) for detailed guide.
|
|
139
|
+
**Get started in 5 minutes!** See [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md) for detailed guide.
|
|
140
140
|
|
|
141
141
|
### Install
|
|
142
142
|
|
|
@@ -166,7 +166,7 @@ asyncio.run(main())
|
|
|
166
166
|
|
|
167
167
|
**That's it!** Your agent is now A2A-compatible and ready to communicate with other A2A agents.
|
|
168
168
|
|
|
169
|
-
👉 **[Read the full Quick Start Guide →](QUICKSTART.md)**
|
|
169
|
+
👉 **[Read the full Quick Start Guide →](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)**
|
|
170
170
|
|
|
171
171
|
## 📖 Usage Examples
|
|
172
172
|
|
|
@@ -210,7 +210,7 @@ adapter = await load_a2a_agent({
|
|
|
210
210
|
})
|
|
211
211
|
```
|
|
212
212
|
|
|
213
|
-
📚 **[View all examples →](examples/)**
|
|
213
|
+
📚 **[View all examples →](https://github.com/hybroai/a2a-adapter/tree/main/examples/)**
|
|
214
214
|
|
|
215
215
|
## Advanced Usage
|
|
216
216
|
|
|
@@ -294,7 +294,7 @@ graph = StateGraph(...)
|
|
|
294
294
|
graph.add_node("math", call_math_agent)
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
See [examples/06_langgraph_single_agent.py](examples/06_langgraph_single_agent.py) for complete example.
|
|
297
|
+
See [examples/06_langgraph_single_agent.py](https://github.com/hybroai/a2a-adapter/blob/main/examples/06_langgraph_single_agent.py) for complete example.
|
|
298
298
|
|
|
299
299
|
## Configuration
|
|
300
300
|
|
|
@@ -483,7 +483,7 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
483
483
|
4. Run tests (`pytest`)
|
|
484
484
|
5. Submit a pull request
|
|
485
485
|
|
|
486
|
-
📖 **[Read our Contributing Guide →](CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
486
|
+
📖 **[Read our Contributing Guide →](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
487
487
|
|
|
488
488
|
## Roadmap
|
|
489
489
|
|
|
@@ -526,32 +526,32 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
526
526
|
|
|
527
527
|
## License
|
|
528
528
|
|
|
529
|
-
Apache-2.0 License - see [LICENSE](LICENSE) file for details.
|
|
529
|
+
Apache-2.0 License - see [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
530
530
|
|
|
531
531
|
## Credits
|
|
532
532
|
|
|
533
533
|
Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
534
534
|
|
|
535
|
-
Powered by the [A2A Protocol](https://github.com/
|
|
535
|
+
Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
536
536
|
|
|
537
537
|
## 💬 Community & Support
|
|
538
538
|
|
|
539
|
-
- 📚 **[Full Documentation](README.md)** - Complete API reference and guides
|
|
540
|
-
- 🚀 **[Quick Start Guide](QUICKSTART.md)** - Get started in 5 minutes
|
|
541
|
-
- 🏗️ **[Architecture Guide](ARCHITECTURE.md)** - Deep dive into design decisions
|
|
542
|
-
- 🐛 **[Report Issues](https://github.com/
|
|
543
|
-
- 💬 **[Discussions](https://github.com/
|
|
544
|
-
- 🤝 **[Contributing Guide](CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
539
|
+
- 📚 **[Full Documentation](https://github.com/hybroai/a2a-adapter/blob/main/README.md)** - Complete API reference and guides
|
|
540
|
+
- 🚀 **[Quick Start Guide](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)** - Get started in 5 minutes
|
|
541
|
+
- 🏗️ **[Architecture Guide](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)** - Deep dive into design decisions
|
|
542
|
+
- 🐛 **[Report Issues](https://github.com/hybroai/a2a-adapter/issues)** - Found a bug? Let us know!
|
|
543
|
+
- 💬 **[Discussions](https://github.com/hybroai/a2a-adapter/discussions)** - Ask questions and share ideas
|
|
544
|
+
- 🤝 **[Contributing Guide](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
545
545
|
|
|
546
546
|
## 📄 License
|
|
547
547
|
|
|
548
|
-
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
|
|
548
|
+
This project is licensed under the Apache License 2.0 - see the [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
549
549
|
|
|
550
550
|
## 🙏 Acknowledgments
|
|
551
551
|
|
|
552
552
|
- Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
553
|
-
- Powered by the [A2A Protocol](https://github.com/
|
|
554
|
-
- Thanks to all [contributors](https://github.com/
|
|
553
|
+
- Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
554
|
+
- Thanks to all [contributors](https://github.com/hybroai/a2a-adapter/graphs/contributors) who make this project better!
|
|
555
555
|
|
|
556
556
|
---
|
|
557
557
|
|
|
@@ -49,15 +49,15 @@ A Python SDK that enables seamless integration of various agent frameworks (n8n,
|
|
|
49
49
|
|
|
50
50
|
**Single-Agent Design**: Each server hosts exactly one agent. Multi-agent orchestration is handled externally via A2A protocol or orchestration frameworks like LangGraph.
|
|
51
51
|
|
|
52
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
|
|
52
|
+
See [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md) for detailed design documentation.
|
|
53
53
|
|
|
54
54
|
## Documentation
|
|
55
55
|
|
|
56
|
-
- 🚀 Quick Start: [QUICKSTART.md](QUICKSTART.md)
|
|
57
|
-
- 🧪 Examples: [examples/](examples/)
|
|
58
|
-
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](GETTING_STARTED_DEBUG.md)
|
|
59
|
-
- 🧠 Architecture: [ARCHITECTURE.md](ARCHITECTURE.md)
|
|
60
|
-
- 🤝 Contributing: [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
56
|
+
- 🚀 Quick Start: [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)
|
|
57
|
+
- 🧪 Examples: [examples/](https://github.com/hybroai/a2a-adapter/tree/main/examples/)
|
|
58
|
+
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](https://github.com/hybroai/a2a-adapter/blob/main/GETTING_STARTED_DEBUG.md)
|
|
59
|
+
- 🧠 Architecture: [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)
|
|
60
|
+
- 🤝 Contributing: [CONTRIBUTING.md](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)
|
|
61
61
|
|
|
62
62
|
## Installation
|
|
63
63
|
|
|
@@ -91,7 +91,7 @@ pip install a2a-adapter[dev]
|
|
|
91
91
|
|
|
92
92
|
## 🚀 Quick Start
|
|
93
93
|
|
|
94
|
-
**Get started in 5 minutes!** See [QUICKSTART.md](QUICKSTART.md) for detailed guide.
|
|
94
|
+
**Get started in 5 minutes!** See [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md) for detailed guide.
|
|
95
95
|
|
|
96
96
|
### Install
|
|
97
97
|
|
|
@@ -121,7 +121,7 @@ asyncio.run(main())
|
|
|
121
121
|
|
|
122
122
|
**That's it!** Your agent is now A2A-compatible and ready to communicate with other A2A agents.
|
|
123
123
|
|
|
124
|
-
👉 **[Read the full Quick Start Guide →](QUICKSTART.md)**
|
|
124
|
+
👉 **[Read the full Quick Start Guide →](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)**
|
|
125
125
|
|
|
126
126
|
## 📖 Usage Examples
|
|
127
127
|
|
|
@@ -165,7 +165,7 @@ adapter = await load_a2a_agent({
|
|
|
165
165
|
})
|
|
166
166
|
```
|
|
167
167
|
|
|
168
|
-
📚 **[View all examples →](examples/)**
|
|
168
|
+
📚 **[View all examples →](https://github.com/hybroai/a2a-adapter/tree/main/examples/)**
|
|
169
169
|
|
|
170
170
|
## Advanced Usage
|
|
171
171
|
|
|
@@ -249,7 +249,7 @@ graph = StateGraph(...)
|
|
|
249
249
|
graph.add_node("math", call_math_agent)
|
|
250
250
|
```
|
|
251
251
|
|
|
252
|
-
See [examples/06_langgraph_single_agent.py](examples/06_langgraph_single_agent.py) for complete example.
|
|
252
|
+
See [examples/06_langgraph_single_agent.py](https://github.com/hybroai/a2a-adapter/blob/main/examples/06_langgraph_single_agent.py) for complete example.
|
|
253
253
|
|
|
254
254
|
## Configuration
|
|
255
255
|
|
|
@@ -438,7 +438,7 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
438
438
|
4. Run tests (`pytest`)
|
|
439
439
|
5. Submit a pull request
|
|
440
440
|
|
|
441
|
-
📖 **[Read our Contributing Guide →](CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
441
|
+
📖 **[Read our Contributing Guide →](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
442
442
|
|
|
443
443
|
## Roadmap
|
|
444
444
|
|
|
@@ -481,32 +481,32 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
481
481
|
|
|
482
482
|
## License
|
|
483
483
|
|
|
484
|
-
Apache-2.0 License - see [LICENSE](LICENSE) file for details.
|
|
484
|
+
Apache-2.0 License - see [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
485
485
|
|
|
486
486
|
## Credits
|
|
487
487
|
|
|
488
488
|
Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
489
489
|
|
|
490
|
-
Powered by the [A2A Protocol](https://github.com/
|
|
490
|
+
Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
491
491
|
|
|
492
492
|
## 💬 Community & Support
|
|
493
493
|
|
|
494
|
-
- 📚 **[Full Documentation](README.md)** - Complete API reference and guides
|
|
495
|
-
- 🚀 **[Quick Start Guide](QUICKSTART.md)** - Get started in 5 minutes
|
|
496
|
-
- 🏗️ **[Architecture Guide](ARCHITECTURE.md)** - Deep dive into design decisions
|
|
497
|
-
- 🐛 **[Report Issues](https://github.com/
|
|
498
|
-
- 💬 **[Discussions](https://github.com/
|
|
499
|
-
- 🤝 **[Contributing Guide](CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
494
|
+
- 📚 **[Full Documentation](https://github.com/hybroai/a2a-adapter/blob/main/README.md)** - Complete API reference and guides
|
|
495
|
+
- 🚀 **[Quick Start Guide](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)** - Get started in 5 minutes
|
|
496
|
+
- 🏗️ **[Architecture Guide](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)** - Deep dive into design decisions
|
|
497
|
+
- 🐛 **[Report Issues](https://github.com/hybroai/a2a-adapter/issues)** - Found a bug? Let us know!
|
|
498
|
+
- 💬 **[Discussions](https://github.com/hybroai/a2a-adapter/discussions)** - Ask questions and share ideas
|
|
499
|
+
- 🤝 **[Contributing Guide](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
500
500
|
|
|
501
501
|
## 📄 License
|
|
502
502
|
|
|
503
|
-
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
|
|
503
|
+
This project is licensed under the Apache License 2.0 - see the [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
504
504
|
|
|
505
505
|
## 🙏 Acknowledgments
|
|
506
506
|
|
|
507
507
|
- Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
508
|
-
- Powered by the [A2A Protocol](https://github.com/
|
|
509
|
-
- Thanks to all [contributors](https://github.com/
|
|
508
|
+
- Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
509
|
+
- Thanks to all [contributors](https://github.com/hybroai/a2a-adapter/graphs/contributors) who make this project better!
|
|
510
510
|
|
|
511
511
|
---
|
|
512
512
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a2a-adapter
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A2A Protocol Adapter SDK for integrating various agent frameworks
|
|
5
5
|
Author-email: HYBRO AI <info@hybro.ai>
|
|
6
|
-
License:
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Repository, https://github.com/
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/hybroai/a2a-adapter
|
|
8
|
+
Project-URL: Documentation, https://github.com/hybroai/a2a-adapter#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/hybroai/a2a-adapter
|
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved ::
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -94,15 +94,15 @@ A Python SDK that enables seamless integration of various agent frameworks (n8n,
|
|
|
94
94
|
|
|
95
95
|
**Single-Agent Design**: Each server hosts exactly one agent. Multi-agent orchestration is handled externally via A2A protocol or orchestration frameworks like LangGraph.
|
|
96
96
|
|
|
97
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
|
|
97
|
+
See [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md) for detailed design documentation.
|
|
98
98
|
|
|
99
99
|
## Documentation
|
|
100
100
|
|
|
101
|
-
- 🚀 Quick Start: [QUICKSTART.md](QUICKSTART.md)
|
|
102
|
-
- 🧪 Examples: [examples/](examples/)
|
|
103
|
-
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](GETTING_STARTED_DEBUG.md)
|
|
104
|
-
- 🧠 Architecture: [ARCHITECTURE.md](ARCHITECTURE.md)
|
|
105
|
-
- 🤝 Contributing: [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
101
|
+
- 🚀 Quick Start: [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)
|
|
102
|
+
- 🧪 Examples: [examples/](https://github.com/hybroai/a2a-adapter/tree/main/examples/)
|
|
103
|
+
- 🛠 Debug & Advanced Usage: [GETTING_STARTED_DEBUG.md](https://github.com/hybroai/a2a-adapter/blob/main/GETTING_STARTED_DEBUG.md)
|
|
104
|
+
- 🧠 Architecture: [ARCHITECTURE.md](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)
|
|
105
|
+
- 🤝 Contributing: [CONTRIBUTING.md](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)
|
|
106
106
|
|
|
107
107
|
## Installation
|
|
108
108
|
|
|
@@ -136,7 +136,7 @@ pip install a2a-adapter[dev]
|
|
|
136
136
|
|
|
137
137
|
## 🚀 Quick Start
|
|
138
138
|
|
|
139
|
-
**Get started in 5 minutes!** See [QUICKSTART.md](QUICKSTART.md) for detailed guide.
|
|
139
|
+
**Get started in 5 minutes!** See [QUICKSTART.md](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md) for detailed guide.
|
|
140
140
|
|
|
141
141
|
### Install
|
|
142
142
|
|
|
@@ -166,7 +166,7 @@ asyncio.run(main())
|
|
|
166
166
|
|
|
167
167
|
**That's it!** Your agent is now A2A-compatible and ready to communicate with other A2A agents.
|
|
168
168
|
|
|
169
|
-
👉 **[Read the full Quick Start Guide →](QUICKSTART.md)**
|
|
169
|
+
👉 **[Read the full Quick Start Guide →](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)**
|
|
170
170
|
|
|
171
171
|
## 📖 Usage Examples
|
|
172
172
|
|
|
@@ -210,7 +210,7 @@ adapter = await load_a2a_agent({
|
|
|
210
210
|
})
|
|
211
211
|
```
|
|
212
212
|
|
|
213
|
-
📚 **[View all examples →](examples/)**
|
|
213
|
+
📚 **[View all examples →](https://github.com/hybroai/a2a-adapter/tree/main/examples/)**
|
|
214
214
|
|
|
215
215
|
## Advanced Usage
|
|
216
216
|
|
|
@@ -294,7 +294,7 @@ graph = StateGraph(...)
|
|
|
294
294
|
graph.add_node("math", call_math_agent)
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
See [examples/06_langgraph_single_agent.py](examples/06_langgraph_single_agent.py) for complete example.
|
|
297
|
+
See [examples/06_langgraph_single_agent.py](https://github.com/hybroai/a2a-adapter/blob/main/examples/06_langgraph_single_agent.py) for complete example.
|
|
298
298
|
|
|
299
299
|
## Configuration
|
|
300
300
|
|
|
@@ -483,7 +483,7 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
483
483
|
4. Run tests (`pytest`)
|
|
484
484
|
5. Submit a pull request
|
|
485
485
|
|
|
486
|
-
📖 **[Read our Contributing Guide →](CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
486
|
+
📖 **[Read our Contributing Guide →](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** for detailed instructions, coding standards, and development setup.
|
|
487
487
|
|
|
488
488
|
## Roadmap
|
|
489
489
|
|
|
@@ -526,32 +526,32 @@ We welcome contributions from the community! Whether you're fixing bugs, adding
|
|
|
526
526
|
|
|
527
527
|
## License
|
|
528
528
|
|
|
529
|
-
Apache-2.0 License - see [LICENSE](LICENSE) file for details.
|
|
529
|
+
Apache-2.0 License - see [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
530
530
|
|
|
531
531
|
## Credits
|
|
532
532
|
|
|
533
533
|
Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
534
534
|
|
|
535
|
-
Powered by the [A2A Protocol](https://github.com/
|
|
535
|
+
Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
536
536
|
|
|
537
537
|
## 💬 Community & Support
|
|
538
538
|
|
|
539
|
-
- 📚 **[Full Documentation](README.md)** - Complete API reference and guides
|
|
540
|
-
- 🚀 **[Quick Start Guide](QUICKSTART.md)** - Get started in 5 minutes
|
|
541
|
-
- 🏗️ **[Architecture Guide](ARCHITECTURE.md)** - Deep dive into design decisions
|
|
542
|
-
- 🐛 **[Report Issues](https://github.com/
|
|
543
|
-
- 💬 **[Discussions](https://github.com/
|
|
544
|
-
- 🤝 **[Contributing Guide](CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
539
|
+
- 📚 **[Full Documentation](https://github.com/hybroai/a2a-adapter/blob/main/README.md)** - Complete API reference and guides
|
|
540
|
+
- 🚀 **[Quick Start Guide](https://github.com/hybroai/a2a-adapter/blob/main/QUICKSTART.md)** - Get started in 5 minutes
|
|
541
|
+
- 🏗️ **[Architecture Guide](https://github.com/hybroai/a2a-adapter/blob/main/ARCHITECTURE.md)** - Deep dive into design decisions
|
|
542
|
+
- 🐛 **[Report Issues](https://github.com/hybroai/a2a-adapter/issues)** - Found a bug? Let us know!
|
|
543
|
+
- 💬 **[Discussions](https://github.com/hybroai/a2a-adapter/discussions)** - Ask questions and share ideas
|
|
544
|
+
- 🤝 **[Contributing Guide](https://github.com/hybroai/a2a-adapter/blob/main/CONTRIBUTING.md)** - Want to contribute? Start here!
|
|
545
545
|
|
|
546
546
|
## 📄 License
|
|
547
547
|
|
|
548
|
-
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
|
|
548
|
+
This project is licensed under the Apache License 2.0 - see the [LICENSE](https://github.com/hybroai/a2a-adapter/blob/main/LICENSE) file for details.
|
|
549
549
|
|
|
550
550
|
## 🙏 Acknowledgments
|
|
551
551
|
|
|
552
552
|
- Built with ❤️ by [HYBRO AI](https://hybro.ai)
|
|
553
|
-
- Powered by the [A2A Protocol](https://github.com/
|
|
554
|
-
- Thanks to all [contributors](https://github.com/
|
|
553
|
+
- Powered by the [A2A Protocol](https://github.com/a2aproject/A2A)
|
|
554
|
+
- Thanks to all [contributors](https://github.com/hybroai/a2a-adapter/graphs/contributors) who make this project better!
|
|
555
555
|
|
|
556
556
|
---
|
|
557
557
|
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "a2a-adapter"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "A2A Protocol Adapter SDK for integrating various agent frameworks"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
license = {text = "
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
11
|
authors = [
|
|
12
12
|
{name = "HYBRO AI", email = "info@hybro.ai"}
|
|
13
13
|
]
|
|
@@ -15,7 +15,7 @@ requires-python = ">=3.11"
|
|
|
15
15
|
classifiers = [
|
|
16
16
|
"Development Status :: 3 - Alpha",
|
|
17
17
|
"Intended Audience :: Developers",
|
|
18
|
-
"License :: OSI Approved ::
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
19
|
"Programming Language :: Python :: 3",
|
|
20
20
|
"Programming Language :: Python :: 3.11",
|
|
21
21
|
"Programming Language :: Python :: 3.12",
|
|
@@ -49,9 +49,9 @@ dev = [
|
|
|
49
49
|
]
|
|
50
50
|
|
|
51
51
|
[project.urls]
|
|
52
|
-
Homepage = "https://github.com/
|
|
53
|
-
Documentation = "https://github.com/
|
|
54
|
-
Repository = "https://github.com/
|
|
52
|
+
Homepage = "https://github.com/hybroai/a2a-adapter"
|
|
53
|
+
Documentation = "https://github.com/hybroai/a2a-adapter#readme"
|
|
54
|
+
Repository = "https://github.com/hybroai/a2a-adapter"
|
|
55
55
|
|
|
56
56
|
[tool.setuptools]
|
|
57
57
|
packages = ["a2a_adapter", "a2a_adapter.integrations"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|