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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: agentstr
3
- Version: 0.0.8
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: phi>=2.7.0
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 mysampleapp
59
- source mysampleapp/bin/acticate
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
- ~/mysampleapp/bin/python main.py
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 mysampleapp
35
- source mysampleapp/bin/acticate
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
- ~/mysampleapp/bin/python main.py
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.8
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: phi>=2.7.0
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 mysampleapp
59
- source mysampleapp/bin/acticate
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
- ~/mysampleapp/bin/python main.py
86
+ python main.py
86
87
  ```
87
88
 
88
89
  # Contributing
@@ -1,2 +1,2 @@
1
- phi>=2.7.0
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.8"
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
- "phi>=2.7.0", "openai>=1.50.0"
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.8",
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
- "phi>=2.7.0", "openai>=1.50.0"
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