agentx-python 0.4.1__tar.gz → 0.4.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentx-python
3
- Version: 0.4.1
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
- ## Fast way to build AI Agents and create agent workforce
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 LLM orchestration.
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.
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- ## Fast way to build AI Agents and create agent workforce
7
+ ## a fast way to build AI Agents and create agent workforce
8
8
 
9
9
  The official AgentX Python SDK for [AgentX](https://www.agentx.so/)
10
10
 
@@ -18,7 +18,8 @@ Why build AI agent with AgentX?
18
18
  - Support RAG with built-in re-rank.
19
19
  - Multi-agent workforce orchestration.
20
20
  - Multiple agents working together with a designated manager agent.
21
- - Cross vendor LLM orchestration.
21
+ - Cross LLM vendor, multi-agent orchestration.
22
+ - A2A - agent to agent protocol
22
23
 
23
24
  ## Installation
24
25
 
@@ -26,6 +27,28 @@ Why build AI agent with AgentX?
26
27
  pip install --upgrade agentx-python
27
28
  ```
28
29
 
30
+ ## Quick Start
31
+
32
+ Get started with AgentX in just a few lines of code:
33
+
34
+ ```python
35
+ from agentx import AgentX
36
+
37
+ # Initialize the client
38
+ client = AgentX(api_key="your-api-key-here")
39
+
40
+ # Get your agents
41
+ agents = client.list_agents()
42
+ print(f"You have {len(agents)} agents")
43
+
44
+ # Start chatting with your first agent
45
+ if agents:
46
+ agent = agents[0]
47
+ conversation = agent.new_conversation()
48
+ response = conversation.chat("Hello! What can you help me with?")
49
+ print(response)
50
+ ```
51
+
29
52
  ## Usage
30
53
 
31
54
  Provide an `api_key` inline or set `AGENTX_API_KEY` as an environment variable.
@@ -0,0 +1 @@
1
+ VERSION = "0.4.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentx-python
3
- Version: 0.4.1
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
- ## Fast way to build AI Agents and create agent workforce
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 LLM orchestration.
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 +0,0 @@
1
- VERSION = "0.4.1"
File without changes
File without changes
File without changes