agentx-python 0.4.1__py3-none-any.whl → 0.4.2__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.2.dist-info}/METADATA +23 -1
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.2.dist-info}/RECORD +6 -6
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.2.dist-info}/WHEEL +0 -0
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.2.dist-info}/licenses/LICENSE +0 -0
- {agentx_python-0.4.1.dist-info → agentx_python-0.4.2.dist-info}/top_level.txt +0 -0
agentx/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = "0.4.
|
|
1
|
+
VERSION = "0.4.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
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
|
|
@@ -55,6 +55,28 @@ Why build AI agent with AgentX?
|
|
|
55
55
|
pip install --upgrade agentx-python
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
+
## Quick Start
|
|
59
|
+
|
|
60
|
+
Get started with AgentX in just a few lines of code:
|
|
61
|
+
|
|
62
|
+
```python
|
|
63
|
+
from agentx import AgentX
|
|
64
|
+
|
|
65
|
+
# Initialize the client
|
|
66
|
+
client = AgentX(api_key="your-api-key-here")
|
|
67
|
+
|
|
68
|
+
# Get your agents
|
|
69
|
+
agents = client.list_agents()
|
|
70
|
+
print(f"You have {len(agents)} agents")
|
|
71
|
+
|
|
72
|
+
# Start chatting with your first agent
|
|
73
|
+
if agents:
|
|
74
|
+
agent = agents[0]
|
|
75
|
+
conversation = agent.new_conversation()
|
|
76
|
+
response = conversation.chat("Hello! What can you help me with?")
|
|
77
|
+
print(response)
|
|
78
|
+
```
|
|
79
|
+
|
|
58
80
|
## Usage
|
|
59
81
|
|
|
60
82
|
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=iE7Z7ALy_GFPPAmdwd91tuoVFjA7j1FzN56xEc-p6II,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.2.dist-info/licenses/LICENSE,sha256=6ZbiPNFmv3xBb44LGhAa3PZYK0ROAztsd5LRFZDlGFE,1074
|
|
10
|
+
agentx_python-0.4.2.dist-info/METADATA,sha256=qOyLOZSrdMrruyfL59_YPuXdudLZOH3ChzQVbJlTDHM,4995
|
|
11
|
+
agentx_python-0.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
+
agentx_python-0.4.2.dist-info/top_level.txt,sha256=s-q-HB9Gb_QdrZNacSeQyF_c25gQooMy7DlxzgLOHPk,7
|
|
13
|
+
agentx_python-0.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|