agentx-dev 2.0__tar.gz → 2.1__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.
- {agentx_dev-2.0 → agentx_dev-2.1}/PKG-INFO +8 -6
- {agentx_dev-2.0 → agentx_dev-2.1}/README.md +7 -5
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Runner/AgentRun.py +4 -4
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev.egg-info/PKG-INFO +8 -6
- {agentx_dev-2.0 → agentx_dev-2.1}/pyproject.toml +1 -1
- {agentx_dev-2.0 → agentx_dev-2.1}/MANIFEST.in +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Agents/Agent.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Agents/__init__.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Agents/promptTemplate.yaml +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/ChatModel.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Runner/__init__.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Runner/promptTemplate.yaml +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/Tools.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/__init__.py +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev/promptTemplate.yaml +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev.egg-info/SOURCES.txt +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev.egg-info/dependency_links.txt +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev.egg-info/requires.txt +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/agentx_dev.egg-info/top_level.txt +0 -0
- {agentx_dev-2.0 → agentx_dev-2.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-dev
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1
|
|
4
4
|
Summary: A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI.
|
|
5
5
|
Author-email: Bruce-Arhin Shadrach <brucearhin098@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/shadrach098/Bruce_framework
|
|
@@ -32,15 +32,15 @@ Requires-Dist: PyYAML>=5.3.1
|
|
|
32
32
|
published to PyPI:
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
|
-
pip install
|
|
35
|
+
pip install agentx-dev==2.1
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## Example use
|
|
39
39
|
|
|
40
40
|
```python
|
|
41
|
-
from
|
|
41
|
+
from agentx_dev import AgentRunner, AgentType,ChatModel
|
|
42
42
|
from pydantic import BaseModel
|
|
43
|
-
from
|
|
43
|
+
from agentx_dev.Tools import StructuredTool,StandardTool
|
|
44
44
|
# Define a sample Stuctured tool
|
|
45
45
|
class MultiplyTool(BaseModel):
|
|
46
46
|
a: int
|
|
@@ -81,8 +81,8 @@ agent.Initialize("i need the weather in Barrie")
|
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
``` bruce_framework/
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
|
|
85
|
+
├──agentx_dev/
|
|
86
86
|
│ ├── __init__.py
|
|
87
87
|
│ ├── agent/
|
|
88
88
|
│ │ ├── __init__.py
|
|
@@ -110,3 +110,5 @@ MIT License
|
|
|
110
110
|
|
|
111
111
|
|
|
112
112
|
|
|
113
|
+
|
|
114
|
+
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
published to PyPI:
|
|
17
17
|
|
|
18
18
|
```sh
|
|
19
|
-
pip install
|
|
19
|
+
pip install agentx-dev==2.1
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Example use
|
|
23
23
|
|
|
24
24
|
```python
|
|
25
|
-
from
|
|
25
|
+
from agentx_dev import AgentRunner, AgentType,ChatModel
|
|
26
26
|
from pydantic import BaseModel
|
|
27
|
-
from
|
|
27
|
+
from agentx_dev.Tools import StructuredTool,StandardTool
|
|
28
28
|
# Define a sample Stuctured tool
|
|
29
29
|
class MultiplyTool(BaseModel):
|
|
30
30
|
a: int
|
|
@@ -65,8 +65,8 @@ agent.Initialize("i need the weather in Barrie")
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
``` bruce_framework/
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
|
|
69
|
+
├──agentx_dev/
|
|
70
70
|
│ ├── __init__.py
|
|
71
71
|
│ ├── agent/
|
|
72
72
|
│ │ ├── __init__.py
|
|
@@ -94,3 +94,5 @@ MIT License
|
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
|
|
97
|
+
|
|
98
|
+
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
from
|
|
2
|
-
from
|
|
3
|
-
from
|
|
4
|
-
from
|
|
1
|
+
from agentx_dev.Agents import AgentFormattor,AgentCompletion,AgentPrompt
|
|
2
|
+
from agentx_dev.ChatModel import BaseChatModel
|
|
3
|
+
from agentx_dev.Agents.Agent import StandardParser,ToolCall
|
|
4
|
+
from agentx_dev.Tools import StandardTool,StructuredTool,logger
|
|
5
5
|
from typing import Dict, Callable, List, Type, Optional
|
|
6
6
|
from pydantic import BaseModel,Field
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-dev
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1
|
|
4
4
|
Summary: A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI.
|
|
5
5
|
Author-email: Bruce-Arhin Shadrach <brucearhin098@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/shadrach098/Bruce_framework
|
|
@@ -32,15 +32,15 @@ Requires-Dist: PyYAML>=5.3.1
|
|
|
32
32
|
published to PyPI:
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
|
-
pip install
|
|
35
|
+
pip install agentx-dev==2.1
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## Example use
|
|
39
39
|
|
|
40
40
|
```python
|
|
41
|
-
from
|
|
41
|
+
from agentx_dev import AgentRunner, AgentType,ChatModel
|
|
42
42
|
from pydantic import BaseModel
|
|
43
|
-
from
|
|
43
|
+
from agentx_dev.Tools import StructuredTool,StandardTool
|
|
44
44
|
# Define a sample Stuctured tool
|
|
45
45
|
class MultiplyTool(BaseModel):
|
|
46
46
|
a: int
|
|
@@ -81,8 +81,8 @@ agent.Initialize("i need the weather in Barrie")
|
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
``` bruce_framework/
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
|
|
85
|
+
├──agentx_dev/
|
|
86
86
|
│ ├── __init__.py
|
|
87
87
|
│ ├── agent/
|
|
88
88
|
│ │ ├── __init__.py
|
|
@@ -110,3 +110,5 @@ MIT License
|
|
|
110
110
|
|
|
111
111
|
|
|
112
112
|
|
|
113
|
+
|
|
114
|
+
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
|
|
3
3
|
name = "agentx-dev"
|
|
4
|
-
version = "2.
|
|
4
|
+
version = "2.1"
|
|
5
5
|
description = "A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI."
|
|
6
6
|
authors = [{ name = "Bruce-Arhin Shadrach", email = "brucearhin098@gmail.com" }]
|
|
7
7
|
# Best practice: link to the license file
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|