zyndai-agent 0.1.1__tar.gz → 0.1.2__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.
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/PKG-INFO +7 -11
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/README.md +5 -9
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/pyproject.toml +2 -2
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent.egg-info/PKG-INFO +7 -11
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/setup.cfg +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/__init__.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/agent.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/communication.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/identity.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/search.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent/utils.py +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent.egg-info/SOURCES.txt +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent.egg-info/dependency_links.txt +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent.egg-info/requires.txt +0 -0
- {zyndai_agent-0.1.1 → zyndai_agent-0.1.2}/zyndai_agent.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zyndai-agent
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the Zynd AI Network. This SDK provides three core capabilities: Identity Management, Agent Discovery & Search, and MQTT-based Communication.
|
|
5
5
|
Author-email: Swapnil Shinde <swapnilshinde9382@gmail.com>
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
@@ -36,7 +36,7 @@ pip install zyndai-agent
|
|
|
36
36
|
Or install from source:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
git clone https://github.com/
|
|
39
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
40
40
|
cd zyndai-agent
|
|
41
41
|
pip install -r requirements.txt
|
|
42
42
|
```
|
|
@@ -518,7 +518,7 @@ We welcome contributions! Here's how to get started:
|
|
|
518
518
|
### Development Setup
|
|
519
519
|
|
|
520
520
|
```bash
|
|
521
|
-
git clone https://github.com/
|
|
521
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
522
522
|
cd zyndai-agent
|
|
523
523
|
python -m venv venv
|
|
524
524
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
@@ -552,11 +552,9 @@ Orchestrate agents for research, writing, editing, fact-checking, and publishing
|
|
|
552
552
|
|
|
553
553
|
## 🆘 Support & Community
|
|
554
554
|
|
|
555
|
-
- **
|
|
556
|
-
- **
|
|
557
|
-
- **
|
|
558
|
-
- **Email**: support@zynd.ai
|
|
559
|
-
- **Twitter**: [@ZyndAI](https://twitter.com/ZyndAI)
|
|
555
|
+
- **GitHub Issues**: [Report bugs or request features](https://github.com/P3-AI-Network/zyndai-agent/issues)
|
|
556
|
+
- **Email**: p3ainetwork@gmail.com
|
|
557
|
+
- **Twitter**: [@ZyndAI](https://x.com/ZyndAI)
|
|
560
558
|
|
|
561
559
|
## 📄 License
|
|
562
560
|
|
|
@@ -585,5 +583,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
585
583
|
**Ready to build the future of AI agent collaboration?**
|
|
586
584
|
|
|
587
585
|
Get started today: `pip install zyndai-agent` 🚀
|
|
588
|
-
|
|
589
|
-
**Questions?** Check out our [documentation](https://docs.zynd.ai) or join our [Discord community](https://discord.gg/zyndai)!
|
|
@@ -22,7 +22,7 @@ pip install zyndai-agent
|
|
|
22
22
|
Or install from source:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
git clone https://github.com/
|
|
25
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
26
26
|
cd zyndai-agent
|
|
27
27
|
pip install -r requirements.txt
|
|
28
28
|
```
|
|
@@ -504,7 +504,7 @@ We welcome contributions! Here's how to get started:
|
|
|
504
504
|
### Development Setup
|
|
505
505
|
|
|
506
506
|
```bash
|
|
507
|
-
git clone https://github.com/
|
|
507
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
508
508
|
cd zyndai-agent
|
|
509
509
|
python -m venv venv
|
|
510
510
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
@@ -538,11 +538,9 @@ Orchestrate agents for research, writing, editing, fact-checking, and publishing
|
|
|
538
538
|
|
|
539
539
|
## 🆘 Support & Community
|
|
540
540
|
|
|
541
|
-
- **
|
|
542
|
-
- **
|
|
543
|
-
- **
|
|
544
|
-
- **Email**: support@zynd.ai
|
|
545
|
-
- **Twitter**: [@ZyndAI](https://twitter.com/ZyndAI)
|
|
541
|
+
- **GitHub Issues**: [Report bugs or request features](https://github.com/P3-AI-Network/zyndai-agent/issues)
|
|
542
|
+
- **Email**: p3ainetwork@gmail.com
|
|
543
|
+
- **Twitter**: [@ZyndAI](https://x.com/ZyndAI)
|
|
546
544
|
|
|
547
545
|
## 📄 License
|
|
548
546
|
|
|
@@ -571,5 +569,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
571
569
|
**Ready to build the future of AI agent collaboration?**
|
|
572
570
|
|
|
573
571
|
Get started today: `pip install zyndai-agent` 🚀
|
|
574
|
-
|
|
575
|
-
**Questions?** Check out our [documentation](https://docs.zynd.ai) or join our [Discord community](https://discord.gg/zyndai)!
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "zyndai-agent"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
description = "A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
description = "A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the Zynd AI Network. This SDK provides three core capabilities: Identity Management, Agent Discovery & Search, and MQTT-based Communication."
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Swapnil Shinde", email = "swapnilshinde9382@gmail.com" }
|
|
7
7
|
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zyndai-agent
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A Langchain and Autogen wrapper that enables agents to communicate and establish identity on the Zynd AI Network. This SDK provides three core capabilities: Identity Management, Agent Discovery & Search, and MQTT-based Communication.
|
|
5
5
|
Author-email: Swapnil Shinde <swapnilshinde9382@gmail.com>
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
@@ -36,7 +36,7 @@ pip install zyndai-agent
|
|
|
36
36
|
Or install from source:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
git clone https://github.com/
|
|
39
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
40
40
|
cd zyndai-agent
|
|
41
41
|
pip install -r requirements.txt
|
|
42
42
|
```
|
|
@@ -518,7 +518,7 @@ We welcome contributions! Here's how to get started:
|
|
|
518
518
|
### Development Setup
|
|
519
519
|
|
|
520
520
|
```bash
|
|
521
|
-
git clone https://github.com/
|
|
521
|
+
git clone https://github.com/P3-AI-Network/zyndai-agent.git
|
|
522
522
|
cd zyndai-agent
|
|
523
523
|
python -m venv venv
|
|
524
524
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
@@ -552,11 +552,9 @@ Orchestrate agents for research, writing, editing, fact-checking, and publishing
|
|
|
552
552
|
|
|
553
553
|
## 🆘 Support & Community
|
|
554
554
|
|
|
555
|
-
- **
|
|
556
|
-
- **
|
|
557
|
-
- **
|
|
558
|
-
- **Email**: support@zynd.ai
|
|
559
|
-
- **Twitter**: [@ZyndAI](https://twitter.com/ZyndAI)
|
|
555
|
+
- **GitHub Issues**: [Report bugs or request features](https://github.com/P3-AI-Network/zyndai-agent/issues)
|
|
556
|
+
- **Email**: p3ainetwork@gmail.com
|
|
557
|
+
- **Twitter**: [@ZyndAI](https://x.com/ZyndAI)
|
|
560
558
|
|
|
561
559
|
## 📄 License
|
|
562
560
|
|
|
@@ -585,5 +583,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
585
583
|
**Ready to build the future of AI agent collaboration?**
|
|
586
584
|
|
|
587
585
|
Get started today: `pip install zyndai-agent` 🚀
|
|
588
|
-
|
|
589
|
-
**Questions?** Check out our [documentation](https://docs.zynd.ai) or join our [Discord community](https://discord.gg/zyndai)!
|
|
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
|