agentx-python 0.4.1__tar.gz → 0.4.2__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.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.
@@ -26,6 +26,28 @@ Why build AI agent with AgentX?
26
26
  pip install --upgrade agentx-python
27
27
  ```
28
28
 
29
+ ## Quick Start
30
+
31
+ Get started with AgentX in just a few lines of code:
32
+
33
+ ```python
34
+ from agentx import AgentX
35
+
36
+ # Initialize the client
37
+ client = AgentX(api_key="your-api-key-here")
38
+
39
+ # Get your agents
40
+ agents = client.list_agents()
41
+ print(f"You have {len(agents)} agents")
42
+
43
+ # Start chatting with your first agent
44
+ if agents:
45
+ agent = agents[0]
46
+ conversation = agent.new_conversation()
47
+ response = conversation.chat("Hello! What can you help me with?")
48
+ print(response)
49
+ ```
50
+
29
51
  ## Usage
30
52
 
31
53
  Provide an `api_key` inline or set `AGENTX_API_KEY` as an environment variable.
@@ -0,0 +1 @@
1
+ VERSION = "0.4.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentx-python
3
- Version: 0.4.1
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 +0,0 @@
1
- VERSION = "0.4.1"
File without changes
File without changes
File without changes