agentx-python 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl
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/version.py +1 -1
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.3.dist-info}/METADATA +26 -3
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.3.dist-info}/RECORD +6 -6
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.3.dist-info}/WHEEL +0 -0
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.3.dist-info}/licenses/LICENSE +0 -0
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.3.dist-info}/top_level.txt +0 -0
agentx/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = "0.4.
|
|
1
|
+
VERSION = "0.4.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Official Python SDK for AgentX (https://www.agentx.so/)
|
|
5
5
|
Home-page: https://github.com/AgentX-ai/AgentX-python-sdk
|
|
6
6
|
Author: Robin Wang and AgentX Team
|
|
@@ -33,7 +33,7 @@ Dynamic: summary
|
|
|
33
33
|
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## a fast way to build AI Agents and create agent workforce
|
|
37
37
|
|
|
38
38
|
The official AgentX Python SDK for [AgentX](https://www.agentx.so/)
|
|
39
39
|
|
|
@@ -47,7 +47,8 @@ Why build AI agent with AgentX?
|
|
|
47
47
|
- Support RAG with built-in re-rank.
|
|
48
48
|
- Multi-agent workforce orchestration.
|
|
49
49
|
- Multiple agents working together with a designated manager agent.
|
|
50
|
-
- Cross vendor
|
|
50
|
+
- Cross LLM vendor, multi-agent orchestration.
|
|
51
|
+
- A2A - agent to agent protocol
|
|
51
52
|
|
|
52
53
|
## Installation
|
|
53
54
|
|
|
@@ -55,6 +56,28 @@ Why build AI agent with AgentX?
|
|
|
55
56
|
pip install --upgrade agentx-python
|
|
56
57
|
```
|
|
57
58
|
|
|
59
|
+
## Quick Start
|
|
60
|
+
|
|
61
|
+
Get started with AgentX in just a few lines of code:
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
from agentx import AgentX
|
|
65
|
+
|
|
66
|
+
# Initialize the client
|
|
67
|
+
client = AgentX(api_key="your-api-key-here")
|
|
68
|
+
|
|
69
|
+
# Get your agents
|
|
70
|
+
agents = client.list_agents()
|
|
71
|
+
print(f"You have {len(agents)} agents")
|
|
72
|
+
|
|
73
|
+
# Start chatting with your first agent
|
|
74
|
+
if agents:
|
|
75
|
+
agent = agents[0]
|
|
76
|
+
conversation = agent.new_conversation()
|
|
77
|
+
response = conversation.chat("Hello! What can you help me with?")
|
|
78
|
+
print(response)
|
|
79
|
+
```
|
|
80
|
+
|
|
58
81
|
## Usage
|
|
59
82
|
|
|
60
83
|
Provide an `api_key` inline or set `AGENTX_API_KEY` as an environment variable.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
agentx/__init__.py,sha256=AiY83tsCtjSMIBVsvNuxOgSU4i-rCREQrqDrNmCoSd0,279
|
|
2
2
|
agentx/agentx.py,sha256=KqOdK8xtqdBZh8jlQehzeUdKK8PQ1vcmU2P3iBF9UQc,2502
|
|
3
3
|
agentx/util.py,sha256=grYAa8YTvoQSyuy4GvUOwq6SVBRr4DdrBlcTuZwQpzw,132
|
|
4
|
-
agentx/version.py,sha256=
|
|
4
|
+
agentx/version.py,sha256=O40mlfUXI79HMiq8G3fhaBNmZyZqSZnoe2yzkeqsUNY,18
|
|
5
5
|
agentx/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
agentx/resources/agent.py,sha256=SCXuRudp145e-g3R9ohugiPLPgmQt5ARgkbdAoqtIFQ,1542
|
|
7
7
|
agentx/resources/conversation.py,sha256=Xwy3IfFF6C7U7Xu6BNC32IOPqmaKNwCBTbN2w4FpI8w,4485
|
|
8
8
|
agentx/resources/workforce.py,sha256=9yPrh3zrlbD_D8EruntT8dhQyTZDyxvocYS3VeP3LVw,4143
|
|
9
|
-
agentx_python-0.4.
|
|
10
|
-
agentx_python-0.4.
|
|
11
|
-
agentx_python-0.4.
|
|
12
|
-
agentx_python-0.4.
|
|
13
|
-
agentx_python-0.4.
|
|
9
|
+
agentx_python-0.4.3.dist-info/licenses/LICENSE,sha256=6ZbiPNFmv3xBb44LGhAa3PZYK0ROAztsd5LRFZDlGFE,1074
|
|
10
|
+
agentx_python-0.4.3.dist-info/METADATA,sha256=DQONVLuRRzJnQtFTaHBxp5vg4npYuWEhNP15WrdKWWk,5042
|
|
11
|
+
agentx_python-0.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
+
agentx_python-0.4.3.dist-info/top_level.txt,sha256=s-q-HB9Gb_QdrZNacSeQyF_c25gQooMy7DlxzgLOHPk,7
|
|
13
|
+
agentx_python-0.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|