meshagent 0.0.34__py3-none-any.whl → 0.0.36__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.
meshagent/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.0.34"
1
+ __version__ = "0.0.36"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent
3
- Version: 0.0.34
3
+ Version: 0.0.36
4
4
  Summary: Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -10,22 +10,22 @@ Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Provides-Extra: all
13
- Requires-Dist: meshagent-api[all]~=0.0.34; extra == "all"
14
- Requires-Dist: meshagent-agents[all]~=0.0.34; extra == "all"
15
- Requires-Dist: meshagent-tools~=0.0.34; extra == "all"
16
- Requires-Dist: meshagent-openai~=0.0.34; extra == "all"
17
- Requires-Dist: meshagent-computers~=0.0.34; extra == "all"
18
- Requires-Dist: meshagent-mcp~=0.0.34; extra == "all"
19
- Requires-Dist: meshagent-livekit~=0.0.34; extra == "all"
20
- Requires-Dist: meshagent-cli~=0.0.34; extra == "all"
13
+ Requires-Dist: meshagent-api[all]~=0.0.36; extra == "all"
14
+ Requires-Dist: meshagent-agents[all]~=0.0.36; extra == "all"
15
+ Requires-Dist: meshagent-tools~=0.0.36; extra == "all"
16
+ Requires-Dist: meshagent-openai~=0.0.36; extra == "all"
17
+ Requires-Dist: meshagent-computers~=0.0.36; extra == "all"
18
+ Requires-Dist: meshagent-mcp~=0.0.36; extra == "all"
19
+ Requires-Dist: meshagent-livekit~=0.0.36; extra == "all"
20
+ Requires-Dist: meshagent-cli~=0.0.36; extra == "all"
21
21
  Provides-Extra: agents
22
- Requires-Dist: meshagent-agents~=0.0.34; extra == "agents"
22
+ Requires-Dist: meshagent-agents~=0.0.36; extra == "agents"
23
23
  Provides-Extra: tools
24
- Requires-Dist: meshagent-tools~=0.0.34; extra == "tools"
24
+ Requires-Dist: meshagent-tools~=0.0.36; extra == "tools"
25
25
  Provides-Extra: cli
26
- Requires-Dist: meshagent-cli~=0.0.34; extra == "cli"
26
+ Requires-Dist: meshagent-cli~=0.0.36; extra == "cli"
27
27
  Provides-Extra: mcp-service
28
- Requires-Dist: meshagent-cli~=0.0.34; extra == "mcp-service"
28
+ Requires-Dist: meshagent-cli~=0.0.36; extra == "mcp-service"
29
29
  Dynamic: license-file
30
30
 
31
31
  # MeshAgent Python SDK
@@ -38,6 +38,10 @@ MeshAgent removes the infrastructure headaches of building and shipping AI Agent
38
38
 
39
39
  **Documentation**: [docs.meshagent.com](https://docs.meshagent.com/)
40
40
 
41
+ **Website**: [www.meshagent.com](https://www.meshagent.com/)
42
+
43
+ **MeshAgent Studio**: [www.studio.meshagent.com](https://studio.meshagent.com/)
44
+
41
45
  ---
42
46
 
43
47
  ## Why MeshAgent?
@@ -48,53 +52,17 @@ MeshAgent removes the infrastructure headaches of building and shipping AI Agent
48
52
 
49
53
  - **Shareable links that showcase your agent**: After you deploy an agent, MeshAgent provides you a URL so colleagues or customers can jump straight into the Room, try the agent, and give feedback -- no code checkout, IDE, or GPU required.
50
54
 
51
- - **Support across languages**: The same feature set (Rooms, Agents, Tools, Messaging, Queues, Storage, Documents, etc.) is exposed through official Python, Javascript, Typescript, and Dart SDKs, so every team member can work in their preferred language.
55
+ - **Reusable and extensibly agent tools**: MeshAgent ships prebuilt, reusable toolkits for common Room interactions (e.g., file and document handling, media generation, dynamic UI interactions) and high-demand tasks (e.g., web search or document-to-Markdown conversion). Support for custom tools and the Model Context Protocol (MCP) enables you to seamlessly integrate any MCP-compatible service into a Room without changes to your applications. Tools are centrally managed like agents, allowing you to deploy them once and reuse them effortlessly.
52
56
 
53
57
  - **Built-in Observability**: Streaming logs and traces give you real-time insight into every message, agent action, and error.
54
58
 
55
59
  - **Secure and elastic by default**: Project-scoped keys, on-demand provisioning, and auto-scaling infrastructure keep Rooms private, secure, and ready for your usage needs.
56
60
 
61
+ - **Support across languages**: The same feature set (Rooms, Agents, Tools, Messaging, Queues, Storage, Documents, etc.) is exposed through official Python, Javascript, Typescript, and Dart SDKs, so every team member can work in their preferred language.
57
62
 
58
63
  ## Getting Setup
59
64
 
60
- ### Create your MeshAgent Account
61
- 1. Go to [studio.meshagent.com](www.studio.meshagent.com) and sign in or sign up for an account.
62
- 2. Create a project and give it a name (e.g., MyFirstAgentProject)
63
- 3. Navigate to the API Keys tab and click + New API Key. Give your key a name and description then click “ok”.
64
- 4. Click on the key to copy the MESHAGENT_KEY_ID, MESHAGENT_PROJECT_ID, and MESHAGENT_SECRET. You will need to export these as environment variables to connect to your Project.
65
-
66
- ### Install the MeshAgent SDK
67
-
68
- ```sh
69
- pip install meshagent[all]
70
- ```
71
-
72
- ```sh
73
- uv add 'meshagent[all]'
74
- ```
75
-
76
- ### Set Environment Variables
77
-
78
- Before you begin, you must export three environment variables. Make sure to substitute the placeholder values (xxxx-xxxx...) with your actual keys and secrets.
79
-
80
- ```bash
81
- export MESHAGENT_KEY_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
82
- export MESHAGENT_PROJECT_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
83
- export MESHAGENT_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
84
- ```
85
-
86
- ### Run your first agent!
87
-
88
- To call a chat agent into the room run:
89
-
90
- ```sh
91
- meshagent chatbot join --room YOUR_ROOM --agent-name YOUR_CHATBOT --name YOUR_CHATBOT
92
- ```
93
-
94
- To call a voice agent into the room run:
95
- ```sh
96
- meshagent voicebot join --room YOUR_ROOM --agent-name YOUR_VOICEBOT --name YOUR_VOICEBOT
97
- ```
65
+ Follow our [Getting Started Documentation](https://docs.meshagent.com/introduction/get_started) to setup your MeshAgent account, create your first project, and start building agents!
98
66
 
99
67
  ## Next Steps and Examples
100
68
 
@@ -0,0 +1,7 @@
1
+ meshagent/__init__.py,sha256=8zLGg-DfQhnDl2Ky0n-zXpN-8e-g7iR0AcaI4l4Vvpk,32
2
+ meshagent/version.py,sha256=oSKhQHo_8dYEVv3A19nCmQysoh4TbOzHl508xX9iHoo,23
3
+ meshagent-0.0.36.dist-info/licenses/LICENSE,sha256=eTt0SPW-sVNdkZe9PS_S8WfCIyLjRXRl7sUBWdlteFg,10254
4
+ meshagent-0.0.36.dist-info/METADATA,sha256=Revc7p7-2owZbjYlWMDyoVUgNgur016-n00ug0T3f8Q,4075
5
+ meshagent-0.0.36.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ meshagent-0.0.36.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
7
+ meshagent-0.0.36.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- meshagent/__init__.py,sha256=8zLGg-DfQhnDl2Ky0n-zXpN-8e-g7iR0AcaI4l4Vvpk,32
2
- meshagent/version.py,sha256=IeOAFvenopBWYv9ajaYlgGYiPXMiGT008qnpbTQ0HPU,23
3
- meshagent-0.0.34.dist-info/licenses/LICENSE,sha256=eTt0SPW-sVNdkZe9PS_S8WfCIyLjRXRl7sUBWdlteFg,10254
4
- meshagent-0.0.34.dist-info/METADATA,sha256=IMreRBhlyF6TF4BbMzswe3oIVSdxOp1XzkzJ42pplXE,4505
5
- meshagent-0.0.34.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
- meshagent-0.0.34.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
7
- meshagent-0.0.34.dist-info/RECORD,,