meshagent-cli 0.0.36__py3-none-any.whl → 0.0.37__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/chatbot.py +3 -7
- meshagent/cli/version.py +1 -1
- meshagent/cli/voicebot.py +1 -0
- {meshagent_cli-0.0.36.dist-info → meshagent_cli-0.0.37.dist-info}/METADATA +5 -5
- {meshagent_cli-0.0.36.dist-info → meshagent_cli-0.0.37.dist-info}/RECORD +8 -8
- {meshagent_cli-0.0.36.dist-info → meshagent_cli-0.0.37.dist-info}/WHEEL +0 -0
- {meshagent_cli-0.0.36.dist-info → meshagent_cli-0.0.37.dist-info}/entry_points.txt +0 -0
- {meshagent_cli-0.0.36.dist-info → meshagent_cli-0.0.37.dist-info}/top_level.txt +0 -0
meshagent/cli/chatbot.py
CHANGED
|
@@ -59,6 +59,7 @@ def build_chatbot(*,
|
|
|
59
59
|
llm_adapter = OpenAIResponsesAdapter(
|
|
60
60
|
model=model
|
|
61
61
|
)
|
|
62
|
+
|
|
62
63
|
class CustomChatbot(BaseClass):
|
|
63
64
|
def __init__(self):
|
|
64
65
|
super().__init__(
|
|
@@ -138,16 +139,11 @@ async def make_call(
|
|
|
138
139
|
|
|
139
140
|
CustomChatbot = build_chatbot(computer_use=computer_use, model=model, local_shell=local_shell, agent_name=agent_name, rule=rule, toolkit=toolkit, schema=schema, image_generation=image_generation)
|
|
140
141
|
|
|
141
|
-
bot = CustomChatbot(
|
|
142
|
-
llm_adapter=OpenAIResponsesAdapter(),
|
|
143
|
-
name=agent_name,
|
|
144
|
-
requires=requirements,
|
|
145
|
-
toolkits=toolkits,
|
|
146
|
-
rules=rule if len(rule) > 0 else None
|
|
147
|
-
)
|
|
142
|
+
bot = CustomChatbot()
|
|
148
143
|
|
|
149
144
|
await bot.start(room=client)
|
|
150
145
|
try:
|
|
146
|
+
print(f"[bold green]Open the studio to interact with your agent: {meshagent_base_url().replace("api.","studio.")}/projects/{project_id}/rooms/{client.room_name}[/bold green]", flush=True)
|
|
151
147
|
await client.protocol.wait_for_close()
|
|
152
148
|
except KeyboardInterrupt:
|
|
153
149
|
await bot.stop()
|
meshagent/cli/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.0.
|
|
1
|
+
__version__ = "0.0.37"
|
meshagent/cli/voicebot.py
CHANGED
|
@@ -77,6 +77,7 @@ async def make_call(
|
|
|
77
77
|
await bot.start(room=client)
|
|
78
78
|
|
|
79
79
|
try:
|
|
80
|
+
print(f"[bold green]Open the studio to interact with your agent: {meshagent_base_url().replace("api.","studio.")}/projects/{project_id}/rooms/{client.room_name}[/bold green]", flush=True)
|
|
80
81
|
await client.protocol.wait_for_close()
|
|
81
82
|
except KeyboardInterrupt:
|
|
82
83
|
await bot.stop()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.37
|
|
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
|
|
12
12
|
Requires-Dist: pydantic-yaml~=1.4
|
|
13
|
-
Requires-Dist: meshagent-api~=0.0.
|
|
14
|
-
Requires-Dist: meshagent-agents~=0.0.
|
|
15
|
-
Requires-Dist: meshagent-tools~=0.0.
|
|
16
|
-
Requires-Dist: meshagent-mcp~=0.0.
|
|
13
|
+
Requires-Dist: meshagent-api~=0.0.37
|
|
14
|
+
Requires-Dist: meshagent-agents~=0.0.37
|
|
15
|
+
Requires-Dist: meshagent-tools~=0.0.37
|
|
16
|
+
Requires-Dist: meshagent-mcp~=0.0.37
|
|
17
17
|
Requires-Dist: supabase~=2.15
|
|
18
18
|
Requires-Dist: fastmcp~=2.8
|
|
19
19
|
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
@@ -5,7 +5,7 @@ meshagent/cli/async_typer.py,sha256=GCeSefBDbpd-V4V8LrvHGUTBMth3HspVMfFa-HUZ0cg,
|
|
|
5
5
|
meshagent/cli/auth.py,sha256=pZQwYTNWQOWTqpyDrkQLNKuidH-wn9GNE5yEJoxn3-g,767
|
|
6
6
|
meshagent/cli/auth_async.py,sha256=run_J11mRPJQ6BI_aAtV_3O3h52eAl1EOnHuotwhoqQ,4018
|
|
7
7
|
meshagent/cli/call.py,sha256=-6Bf5PCVcsuLMgDpG1g3GiY3S5rgs_-CWgWX4C6AXwg,4739
|
|
8
|
-
meshagent/cli/chatbot.py,sha256=
|
|
8
|
+
meshagent/cli/chatbot.py,sha256=NPZldW1IYj8VYn-NUW1S6JSZ7niWFzYtJt9SALGarDo,7432
|
|
9
9
|
meshagent/cli/cli.py,sha256=HbMyzks8LTDz-D6pGV97OHZAiAX39VqS3DrZZB06Y5A,6166
|
|
10
10
|
meshagent/cli/cli_mcp.py,sha256=SG0r-cL3P7eu-fbwB-1WgjQPCmxKqQBh-X3kTKDli-E,9536
|
|
11
11
|
meshagent/cli/cli_secrets.py,sha256=U0kdzN3zt7JIqzdRLynAjxdvAsI0enesBd_m7TeXjnQ,13629
|
|
@@ -19,11 +19,11 @@ meshagent/cli/services.py,sha256=pMAyLg0eEO33fhRiin5q0KbNVoTzQyT5wSDgvDqeRYM,112
|
|
|
19
19
|
meshagent/cli/sessions.py,sha256=WWvuztYqRfthSq6ztwL_eQ_sz9JRc33jcN6p7YyM_Fs,782
|
|
20
20
|
meshagent/cli/storage.py,sha256=Se_4xhxiihIovSR1ajlEWo_YZ12G7eUY_-lvifJ8pjo,33806
|
|
21
21
|
meshagent/cli/tty.py,sha256=DkgeYQckjil191HNoEGHmheniCi41XNUSMpYY1ilAic,4099
|
|
22
|
-
meshagent/cli/version.py,sha256=
|
|
23
|
-
meshagent/cli/voicebot.py,sha256=
|
|
22
|
+
meshagent/cli/version.py,sha256=8S56Dzx6mwG65yKNAYNfLGkyvS8XrUW3xMrLAg1TKI0,23
|
|
23
|
+
meshagent/cli/voicebot.py,sha256=vqtVVMHelkz6QU1dIJGoNcRJNTCx1_j6JPxl3-ye0HM,4917
|
|
24
24
|
meshagent/cli/webhook.py,sha256=KBl8U1TcOX3z2uoyH4YMuUuw0vSVX7xpRxYvzxI5c-Y,2811
|
|
25
|
-
meshagent_cli-0.0.
|
|
26
|
-
meshagent_cli-0.0.
|
|
27
|
-
meshagent_cli-0.0.
|
|
28
|
-
meshagent_cli-0.0.
|
|
29
|
-
meshagent_cli-0.0.
|
|
25
|
+
meshagent_cli-0.0.37.dist-info/METADATA,sha256=ft-M9Ph0qfT3lqQ5_7CPWdU6GZXbFUVcpbQXOtfIhtA,731
|
|
26
|
+
meshagent_cli-0.0.37.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
27
|
+
meshagent_cli-0.0.37.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
|
|
28
|
+
meshagent_cli-0.0.37.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
|
|
29
|
+
meshagent_cli-0.0.37.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|