a2a-adapter 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

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/__init__.py CHANGED
@@ -26,7 +26,7 @@ Example:
26
26
  >>> asyncio.run(main())
27
27
  """
28
28
 
29
- __version__ = "0.1.0"
29
+ __version__ = "0.1.3"
30
30
 
31
31
  from .adapter import BaseAgentAdapter
32
32
  from .client import build_agent_app, serve_agent
@@ -1,15 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: a2a-adapter
3
- Version: 0.1.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: MIT
7
- Project-URL: Homepage, https://github.com/hybro-ai/a2a-adapter
8
- Project-URL: Documentation, https://github.com/hybro-ai/a2a-adapter#readme
9
- Project-URL: Repository, https://github.com/hybro-ai/a2a-adapter
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 :: MIT License
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/a2a-protocol/a2a-protocol)
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/hybro-ai/a2a-adapter/issues)** - Found a bug? Let us know!
543
- - 💬 **[Discussions](https://github.com/hybro-ai/a2a-adapter/discussions)** - Ask questions and share ideas
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/a2a-protocol/a2a-protocol)
554
- - Thanks to all [contributors](https://github.com/hybro-ai/a2a-adapter/graphs/contributors) who make this project better!
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
 
@@ -1,4 +1,4 @@
1
- a2a_adapter/__init__.py,sha256=Qin3SI0AlS2VZYwJalOZAX2btECOXDgt2nuHDWsAjAg,1252
1
+ a2a_adapter/__init__.py,sha256=PZu--DO6e7lo5gr8OEmP8F64uJKrhG8_SCAF-kpGZyg,1252
2
2
  a2a_adapter/adapter.py,sha256=xCHmNNi5C_71A8OlIf_UZ1gUcvAFAIMrq8vGV_tYuTM,6098
3
3
  a2a_adapter/client.py,sha256=TLkYBGQitZdrw_FY_ov9EjHicJX0dqqXaQ-dwfkUv2I,7397
4
4
  a2a_adapter/loader.py,sha256=QEhozlS0dOu4qXoWpqglV1J2x2FN-CtWq4_ueq5Pr7o,4692
@@ -7,8 +7,8 @@ a2a_adapter/integrations/callable.py,sha256=GsKZO5TyJVMOAS21cr7JNVKqjg7Z2CSc9Q9v
7
7
  a2a_adapter/integrations/crewai.py,sha256=S4mF1mJeTAfMdif-su1E7jUjWgxAeFKlgz9WXlZEKN0,4813
8
8
  a2a_adapter/integrations/langchain.py,sha256=raaaJA_FS3qBsURbCbBq2bcfsRMdKgpVbKEUN3rWA4s,5866
9
9
  a2a_adapter/integrations/n8n.py,sha256=d9RqAS7y4eJZPWBaSOHBnT-wqFvTuJtmbE4rsvu5V2o,30171
10
- a2a_adapter-0.1.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
11
- a2a_adapter-0.1.1.dist-info/METADATA,sha256=KMdCWiROAWlADyhSFl6lmiTuznj4i53hk5meDyl2yQQ,16675
12
- a2a_adapter-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- a2a_adapter-0.1.1.dist-info/top_level.txt,sha256=b1O1dTJ2AoPEB2x-r5IHEsS2x1fczOzTrpR2DgF3LgE,12
14
- a2a_adapter-0.1.1.dist-info/RECORD,,
10
+ a2a_adapter-0.1.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
11
+ a2a_adapter-0.1.3.dist-info/METADATA,sha256=PDtE_QDY4006UYYEbSt_9FKOom9eXuXvPyHdszf6Gow,17499
12
+ a2a_adapter-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ a2a_adapter-0.1.3.dist-info/top_level.txt,sha256=b1O1dTJ2AoPEB2x-r5IHEsS2x1fczOzTrpR2DgF3LgE,12
14
+ a2a_adapter-0.1.3.dist-info/RECORD,,