agentstr 0.1.11__py3-none-any.whl → 0.1.12__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- agentstr/__init__.py +20 -13
- agentstr/buyer.py +291 -0
- agentstr/buyer.pyi +31 -0
- agentstr/{marketplace.py → merchant.py} +126 -323
- agentstr/merchant.pyi +37 -0
- agentstr/models.py +381 -0
- agentstr/models.pyi +103 -0
- agentstr/nostr.py +389 -53
- agentstr/nostr.pyi +82 -0
- agentstr/py.typed +0 -0
- {agentstr-0.1.11.dist-info → agentstr-0.1.12.dist-info}/METADATA +36 -53
- agentstr-0.1.12.dist-info/RECORD +15 -0
- agentstr-0.1.11.dist-info/RECORD +0 -8
- {agentstr-0.1.11.dist-info → agentstr-0.1.12.dist-info}/LICENSE +0 -0
- {agentstr-0.1.11.dist-info → agentstr-0.1.12.dist-info}/WHEEL +0 -0
- {agentstr-0.1.11.dist-info → agentstr-0.1.12.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: agentstr
|
3
|
-
Version: 0.1.
|
4
|
-
Summary: Nostr extension for
|
3
|
+
Version: 0.1.12
|
4
|
+
Summary: Nostr extension for Agno AI agents
|
5
5
|
Author-email: Synvya <info@synvya.com>
|
6
6
|
License: MIT
|
7
7
|
Project-URL: Homepage, https://www.synvya.com
|
@@ -11,13 +11,16 @@ Project-URL: BugTracker, https://github.com/synvya/agentstr/issues
|
|
11
11
|
Requires-Python: <3.13,>=3.9
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
License-File: LICENSE
|
14
|
-
Requires-Dist:
|
14
|
+
Requires-Dist: agno>=1.1.1
|
15
15
|
Requires-Dist: openai>=1.50.0
|
16
16
|
Requires-Dist: packaging>=24.0
|
17
|
-
Requires-Dist:
|
17
|
+
Requires-Dist: nostr_sdk>=0.39.0
|
18
18
|
Requires-Dist: pydantic>=2.0.0
|
19
|
+
Requires-Dist: cassandra-driver>=3.29.2
|
20
|
+
Requires-Dist: cassio>=0.1.10
|
19
21
|
Provides-Extra: dev
|
20
22
|
Requires-Dist: pytest>=7.0; extra == "dev"
|
23
|
+
Requires-Dist: pytest-asyncio>=0.23.5; extra == "dev"
|
21
24
|
Requires-Dist: black>=23.0; extra == "dev"
|
22
25
|
Requires-Dist: isort>=5.0; extra == "dev"
|
23
26
|
Requires-Dist: mypy>=1.0; extra == "dev"
|
@@ -25,7 +28,7 @@ Requires-Dist: python-dotenv>=1.0; extra == "dev"
|
|
25
28
|
|
26
29
|
# AgentStr
|
27
30
|
|
28
|
-
AgentStr is an extension of [
|
31
|
+
AgentStr is an extension of [Agno](https://www.agno.ai) AI agents that enables peer-to-peer agent communication using the Nostr protocol.
|
29
32
|
|
30
33
|
## Overview
|
31
34
|
|
@@ -41,8 +44,15 @@ agentstr/
|
|
41
44
|
├── src/ # Source code
|
42
45
|
│ └── agentstr/
|
43
46
|
│ ├── __init__.py
|
44
|
-
│ ├──
|
45
|
-
│
|
47
|
+
│ ├── buyer.py
|
48
|
+
│ ├── buyer.pyi
|
49
|
+
│ ├── merchant.py
|
50
|
+
│ ├── merchant.pyi
|
51
|
+
│ ├── models.py
|
52
|
+
│ ├── models.pyi
|
53
|
+
│ ├── nostr.py
|
54
|
+
│ ├── nostr.pyi
|
55
|
+
│ └── py.typed
|
46
56
|
├── tests/ # Test files
|
47
57
|
├── docs/ # Documentation
|
48
58
|
├── examples/ # Example implementations
|
@@ -52,17 +62,19 @@ agentstr/
|
|
52
62
|
## Features
|
53
63
|
|
54
64
|
### Current Features
|
55
|
-
- Create Merchant agents with Nostr identities
|
56
|
-
- Publish and manage merchant products using [NIP-15](https://github.com/nostr-protocol/nips/blob/master/15.md) marketplace protocol
|
57
|
-
- Create merchant stalls to organize products
|
58
|
-
- Handle shipping zones and costs
|
59
|
-
- Secure communication using Nostr keys
|
65
|
+
- Create Merchant agents with Nostr identities:
|
66
|
+
- Publish and manage merchant products using [NIP-15](https://github.com/nostr-protocol/nips/blob/master/15.md) marketplace protocol
|
67
|
+
- Create merchant stalls to organize products
|
68
|
+
- Handle shipping zones and costs
|
69
|
+
- Secure communication using Nostr keys
|
70
|
+
- Create Buyer agents:
|
71
|
+
- Retrieve a list of sellers from the relay using [NIP-15](https://github.com/nostr-protocol/nips/blob/master/15.md) marketplace protocol
|
72
|
+
- Find an specific seller by name or public key
|
73
|
+
- Refresh the list of sellers from the relay
|
60
74
|
|
61
75
|
### Roadmap
|
62
76
|
- [ ] Create marketplace with stalls
|
63
|
-
- [ ]
|
64
|
-
- [ ] Enable merchants to define products
|
65
|
-
- [ ] Add customer toolkit for buyers
|
77
|
+
- [ ] Expand buyer agent to include more features
|
66
78
|
- [ ] Support additional Nostr NIPs
|
67
79
|
- [ ] Add more agent interaction patterns
|
68
80
|
|
@@ -82,46 +94,13 @@ pip install agentstr
|
|
82
94
|
|
83
95
|
You can find example code in the [examples](https://github.com/Synvya/agentstr/tree/main/examples/) directory.
|
84
96
|
|
85
|
-
|
86
|
-
1. **Clone the repository**
|
87
|
-
```bash
|
88
|
-
git clone https://github.com/Synvya/agentstr.git
|
89
|
-
```
|
90
|
-
|
91
|
-
### Basic CLI Example
|
92
|
-
A simple command-line interface demonstrating agentstr's merchant capabilities:
|
93
|
-
|
94
|
-
|
95
|
-
- [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/src/agentstr/examples/basic_cli/main.py) - A complete example showing:
|
96
|
-
- Setting up merchant profiles
|
97
|
-
- Creating stalls with shipping methods
|
98
|
-
- Defining products with shipping costs
|
99
|
-
- Configuring the agent with the merchant toolkit
|
100
|
-
- Running an interactive CLI application
|
101
|
-
|
102
|
-
1. ** Create a virtual environment**
|
103
|
-
```bash
|
104
|
-
cd agentstr/examples/basic_cli
|
105
|
-
python3 -m venv venv
|
106
|
-
source venv/bin/activate
|
107
|
-
```
|
97
|
+
To install the examples clone the repository and navigate to the examples directory:
|
108
98
|
|
109
|
-
2. ** Install dependencies**
|
110
99
|
```bash
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
3. ** Configure your environment**
|
115
|
-
```bash
|
116
|
-
cp .env.example .env
|
117
|
-
```
|
118
|
-
**Edit the .env file with your own API keys and Nostr credentials**
|
119
|
-
|
120
|
-
4. ** Run the example**
|
121
|
-
```bash
|
122
|
-
python main.py
|
100
|
+
git clone https://github.com/Synvya/agentstr.git
|
101
|
+
cd agentstr/examples/
|
123
102
|
```
|
124
|
-
|
103
|
+
Each example has its own README with instructions on how to run it.
|
125
104
|
|
126
105
|
## Documentation
|
127
106
|
|
@@ -140,7 +119,11 @@ This project is licensed under the MIT License - see the [LICENSE](https://githu
|
|
140
119
|
|
141
120
|
## Acknowledgments
|
142
121
|
|
143
|
-
- [
|
122
|
+
- [Agno](https://www.agno.ai) - For their AI agent framework
|
144
123
|
- [Rust-Nostr](https://rust-nostr.org) - For their Python Nostr SDK
|
145
124
|
- [Nostr Protocol](https://github.com/nostr-protocol/nips) - For the protocol specification
|
146
125
|
|
126
|
+
This software includes the following software licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0):
|
127
|
+
- [DataStax Python Driver for Apache Cassandra](https://github.com/datastax/python-driver)
|
128
|
+
- [cassIO](https://github.com/CassioML/cassio). This library is not maintained anymore. We will need to replace it with a new library.
|
129
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
agentstr/__init__.py,sha256=t2nKJcQ0cq3uYc5sadpJGXSO08UViAEfifCQE9pa068,800
|
2
|
+
agentstr/buyer.py,sha256=rifdCC4FSmbLimA94AhSp3UaCA5vxtH61j_KgVJwkVo,9848
|
3
|
+
agentstr/buyer.pyi,sha256=Zs2SbItabztcGg_cJF8_5Mf-p7Me34hxoFHEkC1inDU,1168
|
4
|
+
agentstr/merchant.py,sha256=Uf3LkV5HlyuOZBA-covkUnDYaxI91yHvmVYOD8kk4cM,35225
|
5
|
+
agentstr/merchant.pyi,sha256=bAYP8qz9GTGNeyFEkZsc4CqdCsC2HV4nrV0dWyYu1VY,1440
|
6
|
+
agentstr/models.py,sha256=-anXkTmOANTKw-elxKG-RZCarCGBIWlUHiUoMBrE3FQ,11488
|
7
|
+
agentstr/models.pyi,sha256=QVnjv01cuMynOjzuEcct72yO-LUWpdxEeiEzcf7QTl4,2867
|
8
|
+
agentstr/nostr.py,sha256=VSC5gDN8XM54BSlfQ0yYv2N3DdTVVviWg5VJkJOD5R0,23199
|
9
|
+
agentstr/nostr.pyi,sha256=A-Dq0ZVuZuXEXnMfgVhKRym4ubFnsSjFrgH1Db1JMCI,2647
|
10
|
+
agentstr/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
+
agentstr-0.1.12.dist-info/LICENSE,sha256=20H0yoEDN5XO1xPXyZCyJjvSTP0YiarRMKWPfiaBhQY,1063
|
12
|
+
agentstr-0.1.12.dist-info/METADATA,sha256=idnYX1pNr1qsbQXDOTdHmmPBEy3pa9RLdinZn6PeIsE,4475
|
13
|
+
agentstr-0.1.12.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
14
|
+
agentstr-0.1.12.dist-info/top_level.txt,sha256=KZObFRHppZvKUGYB_m9w5HhLwps7jj7w6Xrw73dH2ss,9
|
15
|
+
agentstr-0.1.12.dist-info/RECORD,,
|
agentstr-0.1.11.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
agentstr/__init__.py,sha256=bPXCN4fDtqII9UtDCwhWhkR6bi1LR4w0rR0vGeKPNoI,567
|
2
|
-
agentstr/marketplace.py,sha256=CavX0WQaCiz1sQhVs-PaHZ4YYUdcabW5V5eXrhtbT5A,40406
|
3
|
-
agentstr/nostr.py,sha256=PId6477VuShPq7nKgansgyJhJNNy9S8ycCf_3niizg4,11242
|
4
|
-
agentstr-0.1.11.dist-info/LICENSE,sha256=20H0yoEDN5XO1xPXyZCyJjvSTP0YiarRMKWPfiaBhQY,1063
|
5
|
-
agentstr-0.1.11.dist-info/METADATA,sha256=Vd8WUSeuBXcLgutM8deaNa4mxb4tESgAKgjD6gFLJ40,4314
|
6
|
-
agentstr-0.1.11.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
7
|
-
agentstr-0.1.11.dist-info/top_level.txt,sha256=KZObFRHppZvKUGYB_m9w5HhLwps7jj7w6Xrw73dH2ss,9
|
8
|
-
agentstr-0.1.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|