agentstr 0.1.9__tar.gz → 0.1.11__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ include LICENSE README.md
2
+ global-exclude __pycache__
3
+ global-exclude *.py[cod]
@@ -1,8 +1,11 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: agentstr
3
- Version: 0.1.9
3
+ Version: 0.1.11
4
4
  Summary: Nostr extension for Phidata AI agents
5
- Project-URL: Homepage, https://github.com/synvya/agentstr
5
+ Author-email: Synvya <info@synvya.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://www.synvya.com
8
+ Project-URL: Repository, https://github.com/synvya/agentstr
6
9
  Project-URL: Documentation, https://github.com/synvya/agentstr#readme
7
10
  Project-URL: BugTracker, https://github.com/synvya/agentstr/issues
8
11
  Requires-Python: <3.13,>=3.9
@@ -77,15 +80,48 @@ pip install agentstr
77
80
 
78
81
  ## Examples
79
82
 
80
- See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
83
+ You can find example code in the [examples](https://github.com/Synvya/agentstr/tree/main/examples/) directory.
81
84
 
82
- - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
85
+ ### Instaling the examples
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:
83
96
  - Setting up merchant profiles
84
97
  - Creating stalls with shipping methods
85
98
  - Defining products with shipping costs
86
99
  - Configuring the agent with the merchant toolkit
87
100
  - Running an interactive CLI application
88
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
+ ```
108
+
109
+ 2. ** Install dependencies**
110
+ ```bash
111
+ pip install -r requirements.txt
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
123
+ ```
124
+
89
125
 
90
126
  ## Documentation
91
127
 
@@ -93,14 +129,14 @@ For more detailed documentation and examples, see [Docs](https://github.com/Synv
93
129
 
94
130
  ## Development
95
131
 
96
- See [CONTRIBUTING.md](CONTRIBUTING.md) for:
132
+ See [CONTRIBUTING.md](https://github.com/Synvya/agentstr/blob/main/CONTRIBUTING.md) for:
97
133
  - Development setup
98
134
  - Testing instructions
99
135
  - Contribution guidelines
100
136
 
101
137
  ## License
102
138
 
103
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
139
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/Synvya/agentstr/blob/main/LICENSE) file for details.
104
140
 
105
141
  ## Acknowledgments
106
142
 
@@ -55,15 +55,48 @@ pip install agentstr
55
55
 
56
56
  ## Examples
57
57
 
58
- See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
58
+ You can find example code in the [examples](https://github.com/Synvya/agentstr/tree/main/examples/) directory.
59
59
 
60
- - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
60
+ ### Instaling the examples
61
+ 1. **Clone the repository**
62
+ ```bash
63
+ git clone https://github.com/Synvya/agentstr.git
64
+ ```
65
+
66
+ ### Basic CLI Example
67
+ A simple command-line interface demonstrating agentstr's merchant capabilities:
68
+
69
+
70
+ - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/src/agentstr/examples/basic_cli/main.py) - A complete example showing:
61
71
  - Setting up merchant profiles
62
72
  - Creating stalls with shipping methods
63
73
  - Defining products with shipping costs
64
74
  - Configuring the agent with the merchant toolkit
65
75
  - Running an interactive CLI application
66
76
 
77
+ 1. ** Create a virtual environment**
78
+ ```bash
79
+ cd agentstr/examples/basic_cli
80
+ python3 -m venv venv
81
+ source venv/bin/activate
82
+ ```
83
+
84
+ 2. ** Install dependencies**
85
+ ```bash
86
+ pip install -r requirements.txt
87
+ ```
88
+
89
+ 3. ** Configure your environment**
90
+ ```bash
91
+ cp .env.example .env
92
+ ```
93
+ **Edit the .env file with your own API keys and Nostr credentials**
94
+
95
+ 4. ** Run the example**
96
+ ```bash
97
+ python main.py
98
+ ```
99
+
67
100
 
68
101
  ## Documentation
69
102
 
@@ -71,14 +104,14 @@ For more detailed documentation and examples, see [Docs](https://github.com/Synv
71
104
 
72
105
  ## Development
73
106
 
74
- See [CONTRIBUTING.md](CONTRIBUTING.md) for:
107
+ See [CONTRIBUTING.md](https://github.com/Synvya/agentstr/blob/main/CONTRIBUTING.md) for:
75
108
  - Development setup
76
109
  - Testing instructions
77
110
  - Contribution guidelines
78
111
 
79
112
  ## License
80
113
 
81
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
114
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/Synvya/agentstr/blob/main/LICENSE) file for details.
82
115
 
83
116
  ## Acknowledgments
84
117
 
@@ -4,10 +4,14 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agentstr"
7
- version = "0.1.9"
7
+ version = "0.1.11"
8
8
  description = "Nostr extension for Phidata AI agents"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9, <3.13"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ {name = "Synvya", email = "info@synvya.com"}
14
+ ]
11
15
  dependencies = [
12
16
  "phidata>=2.7.0",
13
17
  "openai>=1.50.0",
@@ -26,7 +30,8 @@ dev = [
26
30
  ]
27
31
 
28
32
  [project.urls]
29
- Homepage = "https://github.com/synvya/agentstr"
33
+ Homepage = "https://www.synvya.com"
34
+ Repository = "https://github.com/synvya/agentstr"
30
35
  Documentation = "https://github.com/synvya/agentstr#readme"
31
36
  BugTracker = "https://github.com/synvya/agentstr/issues"
32
37
 
@@ -1,8 +1,11 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: agentstr
3
- Version: 0.1.9
3
+ Version: 0.1.11
4
4
  Summary: Nostr extension for Phidata AI agents
5
- Project-URL: Homepage, https://github.com/synvya/agentstr
5
+ Author-email: Synvya <info@synvya.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://www.synvya.com
8
+ Project-URL: Repository, https://github.com/synvya/agentstr
6
9
  Project-URL: Documentation, https://github.com/synvya/agentstr#readme
7
10
  Project-URL: BugTracker, https://github.com/synvya/agentstr/issues
8
11
  Requires-Python: <3.13,>=3.9
@@ -77,15 +80,48 @@ pip install agentstr
77
80
 
78
81
  ## Examples
79
82
 
80
- See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
83
+ You can find example code in the [examples](https://github.com/Synvya/agentstr/tree/main/examples/) directory.
81
84
 
82
- - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
85
+ ### Instaling the examples
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:
83
96
  - Setting up merchant profiles
84
97
  - Creating stalls with shipping methods
85
98
  - Defining products with shipping costs
86
99
  - Configuring the agent with the merchant toolkit
87
100
  - Running an interactive CLI application
88
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
+ ```
108
+
109
+ 2. ** Install dependencies**
110
+ ```bash
111
+ pip install -r requirements.txt
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
123
+ ```
124
+
89
125
 
90
126
  ## Documentation
91
127
 
@@ -93,14 +129,14 @@ For more detailed documentation and examples, see [Docs](https://github.com/Synv
93
129
 
94
130
  ## Development
95
131
 
96
- See [CONTRIBUTING.md](CONTRIBUTING.md) for:
132
+ See [CONTRIBUTING.md](https://github.com/Synvya/agentstr/blob/main/CONTRIBUTING.md) for:
97
133
  - Development setup
98
134
  - Testing instructions
99
135
  - Contribution guidelines
100
136
 
101
137
  ## License
102
138
 
103
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
139
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/Synvya/agentstr/blob/main/LICENSE) file for details.
104
140
 
105
141
  ## Acknowledgments
106
142
 
@@ -1 +0,0 @@
1
- include src/agentstr/examples/basic_cli/.env.example
File without changes
File without changes
File without changes