agentstr 0.0.8__tar.gz → 0.0.9__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {agentstr-0.0.8 → agentstr-0.0.9}/PKG-INFO +7 -6
- {agentstr-0.0.8 → agentstr-0.0.9}/README.md +5 -4
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr.egg-info/PKG-INFO +7 -6
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr.egg-info/requires.txt +1 -1
- {agentstr-0.0.8 → agentstr-0.0.9}/pyproject.toml +2 -2
- {agentstr-0.0.8 → agentstr-0.0.9}/setup.py +2 -2
- {agentstr-0.0.8 → agentstr-0.0.9}/LICENSE +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr/__init__.py +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr/core.py +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr.egg-info/SOURCES.txt +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr.egg-info/dependency_links.txt +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/agentstr.egg-info/top_level.txt +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/setup.cfg +0 -0
- {agentstr-0.0.8 → agentstr-0.0.9}/tests/test_core.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: agentstr
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.9
|
4
4
|
Summary: A library for collaborative AI agents
|
5
5
|
Home-page: https://github.com/synvya/agentstr
|
6
6
|
Author: Alejandro Gil
|
@@ -16,7 +16,7 @@ Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.6
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
|
-
Requires-Dist:
|
19
|
+
Requires-Dist: phidata>=2.7.0
|
20
20
|
Requires-Dist: openai>=1.50.0
|
21
21
|
Dynamic: author
|
22
22
|
Dynamic: home-page
|
@@ -55,13 +55,14 @@ Here is an example on how to use the library:
|
|
55
55
|
1. Create a new python environment for your app
|
56
56
|
```
|
57
57
|
cd ~/
|
58
|
-
python3 -m venv
|
59
|
-
source
|
58
|
+
python3 -m venv ~/.venvs/aienv
|
59
|
+
source ~/.venvs/aienv/bin/acticate
|
60
60
|
```
|
61
61
|
2. Install the agentstr library
|
62
62
|
```
|
63
|
-
cd ~/mysampleapp
|
64
63
|
pip install agentstr
|
64
|
+
mkdir ~/mysampleapp
|
65
|
+
cd ~/mysampleapp
|
65
66
|
```
|
66
67
|
3. Create a new python file
|
67
68
|
```
|
@@ -82,7 +83,7 @@ Here is an example on how to use the library:
|
|
82
83
|
```
|
83
84
|
5. Run the code
|
84
85
|
```
|
85
|
-
|
86
|
+
python main.py
|
86
87
|
```
|
87
88
|
|
88
89
|
# Contributing
|
@@ -31,13 +31,14 @@ Here is an example on how to use the library:
|
|
31
31
|
1. Create a new python environment for your app
|
32
32
|
```
|
33
33
|
cd ~/
|
34
|
-
python3 -m venv
|
35
|
-
source
|
34
|
+
python3 -m venv ~/.venvs/aienv
|
35
|
+
source ~/.venvs/aienv/bin/acticate
|
36
36
|
```
|
37
37
|
2. Install the agentstr library
|
38
38
|
```
|
39
|
-
cd ~/mysampleapp
|
40
39
|
pip install agentstr
|
40
|
+
mkdir ~/mysampleapp
|
41
|
+
cd ~/mysampleapp
|
41
42
|
```
|
42
43
|
3. Create a new python file
|
43
44
|
```
|
@@ -58,7 +59,7 @@ Here is an example on how to use the library:
|
|
58
59
|
```
|
59
60
|
5. Run the code
|
60
61
|
```
|
61
|
-
|
62
|
+
python main.py
|
62
63
|
```
|
63
64
|
|
64
65
|
# Contributing
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: agentstr
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.9
|
4
4
|
Summary: A library for collaborative AI agents
|
5
5
|
Home-page: https://github.com/synvya/agentstr
|
6
6
|
Author: Alejandro Gil
|
@@ -16,7 +16,7 @@ Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.6
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
|
-
Requires-Dist:
|
19
|
+
Requires-Dist: phidata>=2.7.0
|
20
20
|
Requires-Dist: openai>=1.50.0
|
21
21
|
Dynamic: author
|
22
22
|
Dynamic: home-page
|
@@ -55,13 +55,14 @@ Here is an example on how to use the library:
|
|
55
55
|
1. Create a new python environment for your app
|
56
56
|
```
|
57
57
|
cd ~/
|
58
|
-
python3 -m venv
|
59
|
-
source
|
58
|
+
python3 -m venv ~/.venvs/aienv
|
59
|
+
source ~/.venvs/aienv/bin/acticate
|
60
60
|
```
|
61
61
|
2. Install the agentstr library
|
62
62
|
```
|
63
|
-
cd ~/mysampleapp
|
64
63
|
pip install agentstr
|
64
|
+
mkdir ~/mysampleapp
|
65
|
+
cd ~/mysampleapp
|
65
66
|
```
|
66
67
|
3. Create a new python file
|
67
68
|
```
|
@@ -82,7 +83,7 @@ Here is an example on how to use the library:
|
|
82
83
|
```
|
83
84
|
5. Run the code
|
84
85
|
```
|
85
|
-
|
86
|
+
python main.py
|
86
87
|
```
|
87
88
|
|
88
89
|
# Contributing
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
1
|
+
phidata>=2.7.0
|
2
2
|
openai>=1.50.0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" # Backend used for the build process
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "agentstr"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.9"
|
8
8
|
description = "A library for collaborative AI agents"
|
9
9
|
requires-python = ">=3.6"
|
10
10
|
readme = "README.md"
|
@@ -19,7 +19,7 @@ classifiers = [
|
|
19
19
|
"Operating System :: OS Independent"
|
20
20
|
]
|
21
21
|
dependencies = [
|
22
|
-
"
|
22
|
+
"phidata>=2.7.0", "openai>=1.50.0"
|
23
23
|
]
|
24
24
|
|
25
25
|
[project.urls]
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="agentstr",
|
5
|
-
version="0.0.
|
5
|
+
version="0.0.9",
|
6
6
|
author="Alejandro Gil",
|
7
7
|
description="A library for collaborative AI agents",
|
8
8
|
long_description=open("README.md").read(),
|
@@ -10,7 +10,7 @@ setup(
|
|
10
10
|
url="https://github.com/synvya/agentstr",
|
11
11
|
packages=find_packages(where="."),
|
12
12
|
install_requires=[
|
13
|
-
"
|
13
|
+
"phidata>=2.7.0", "openai>=1.50.0"
|
14
14
|
],
|
15
15
|
classifiers=[
|
16
16
|
"Programming Language :: Python :: 3",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|