meshagent-cli 0.0.25__py3-none-any.whl → 0.0.26__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.

Potentially problematic release.


This version of meshagent-cli might be problematic. Click here for more details.

meshagent/cli/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.0.25"
1
+ __version__ = "0.0.26"
meshagent/cli/voicebot.py CHANGED
@@ -10,12 +10,24 @@ from meshagent.api.services import send_webhook
10
10
  from meshagent.cli import async_typer
11
11
  from meshagent.cli.helper import get_client, print_json_table, set_active_project, resolve_project_id
12
12
  from meshagent.cli.helper import set_active_project, get_active_project, resolve_project_id, resolve_api_key
13
- from meshagent.livekit.agents.voice import Voicebot
14
13
  from meshagent.openai import OpenAIResponsesAdapter
15
14
  from typing import List
16
15
 
17
16
  from meshagent.api import RequiredToolkit, RequiredSchema
18
17
 
18
+
19
+ try:
20
+
21
+ from meshagent.livekit.agents.voice import VoiceBot
22
+
23
+ except ImportError:
24
+
25
+ class VoiceBot:
26
+ def __init__(**kwargs):
27
+ raise RoomException("meshagent.livekit module not found, voicebots are not available")
28
+
29
+
30
+
19
31
  app = async_typer.AsyncTyper()
20
32
 
21
33
  @app.async_command("join")
@@ -62,7 +74,7 @@ async def make_call(
62
74
  for t in schema:
63
75
  requirements.append(RequiredSchema(name=t))
64
76
 
65
- bot = Voicebot(
77
+ bot = VoiceBot(
66
78
  greeting=greeting,
67
79
  name=agent_name,
68
80
  requires=requirements,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-cli
3
- Version: 0.0.25
3
+ Version: 0.0.26
4
4
  Summary: CLI for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -10,10 +10,10 @@ Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: typer~=0.15.3
12
12
  Requires-Dist: pydantic-yaml~=1.4.0
13
- Requires-Dist: meshagent-api~=0.0.25
14
- Requires-Dist: meshagent-agents~=0.0.25
15
- Requires-Dist: meshagent-tools~=0.0.25
16
- Requires-Dist: meshagent-mcp~=0.0.25
13
+ Requires-Dist: meshagent-api~=0.0.26
14
+ Requires-Dist: meshagent-agents~=0.0.26
15
+ Requires-Dist: meshagent-tools~=0.0.26
16
+ Requires-Dist: meshagent-mcp~=0.0.26
17
17
  Requires-Dist: supabase~=2.15.1
18
18
 
19
19
  ### Meshagent CLI
@@ -17,11 +17,11 @@ meshagent/cli/projects.py,sha256=Tut8kRCVvgdWzlAR1Zqf0QxAi4sNfQEIHY9zxfS1nuI,110
17
17
  meshagent/cli/services.py,sha256=t-ipIpCbEq2TbNc6wm0cvxS2yj1iynx_KKi7PYYTkiQ,11032
18
18
  meshagent/cli/sessions.py,sha256=WWvuztYqRfthSq6ztwL_eQ_sz9JRc33jcN6p7YyM_Fs,782
19
19
  meshagent/cli/storage.py,sha256=BsagaJfThrUWqXFyAk9IvQtUuDAMckE2mffZ_peozMo,33555
20
- meshagent/cli/version.py,sha256=ognSasPrsQjE8uJUk5Fcsl4caTERui00vZnmFlQnMoU,23
21
- meshagent/cli/voicebot.py,sha256=SYFkh1tt_M438zBazsU9_yFodPwwAzIT5z3i-NgjG5E,3073
20
+ meshagent/cli/version.py,sha256=Uo7fyxQsD_ez-4T9Di7e8J56WgMQ2DYHGASt3lnRdUY,23
21
+ meshagent/cli/voicebot.py,sha256=svsCqz4kP-Xm9uw68SDsmeiezFZpuiakmSdR5nHLTAM,3264
22
22
  meshagent/cli/webhook.py,sha256=KBl8U1TcOX3z2uoyH4YMuUuw0vSVX7xpRxYvzxI5c-Y,2811
23
- meshagent_cli-0.0.25.dist-info/METADATA,sha256=3O7TWiNlUMRlvXmgaHnwwhCpv5IvcolV39MpnUei9Ns,605
24
- meshagent_cli-0.0.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
- meshagent_cli-0.0.25.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
26
- meshagent_cli-0.0.25.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
27
- meshagent_cli-0.0.25.dist-info/RECORD,,
23
+ meshagent_cli-0.0.26.dist-info/METADATA,sha256=VKUl6Ue4I8ddyvK77oiRnwAG1rHsb9NJdY001UvlGso,605
24
+ meshagent_cli-0.0.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
+ meshagent_cli-0.0.26.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
26
+ meshagent_cli-0.0.26.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
27
+ meshagent_cli-0.0.26.dist-info/RECORD,,