meshagent-cli 0.6.2__py3-none-any.whl → 0.6.3__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/mailbot.py CHANGED
@@ -46,6 +46,7 @@ def build_mailbot(
46
46
  Optional[bool], typer.Option(..., help="Enable web search tool calling")
47
47
  ] = False,
48
48
  queue: str,
49
+ email_address: str,
49
50
  ):
50
51
  from meshagent.agents.mail import MailWorker
51
52
 
@@ -80,6 +81,7 @@ def build_mailbot(
80
81
  requires=requirements,
81
82
  toolkits=toolkits,
82
83
  queue=queue,
84
+ email_address=email_address,
83
85
  rules=rule if len(rule) > 0 else None,
84
86
  )
85
87
 
@@ -149,6 +151,9 @@ async def make_call(
149
151
  typer.Option("--key", help="an api key to sign the token with"),
150
152
  ] = None,
151
153
  queue: Annotated[str, typer.Option(..., help="the name of the mail queue")],
154
+ email_address: Annotated[
155
+ str, typer.Option(..., help="the email address of the agent")
156
+ ],
152
157
  ):
153
158
  key = await resolve_key(project_id=project_id, key=key)
154
159
 
@@ -196,6 +201,7 @@ async def make_call(
196
201
  web_search=web_search,
197
202
  rules_file=rules_file,
198
203
  queue=queue,
204
+ email_address=email_address,
199
205
  )
200
206
 
201
207
  bot = CustomMailbot()
@@ -237,6 +243,9 @@ async def service(
237
243
  port: Annotated[Optional[int], typer.Option()] = None,
238
244
  path: Annotated[str, typer.Option()] = "/agent",
239
245
  queue: Annotated[str, typer.Option(..., help="the name of the mail queue")],
246
+ email_address: Annotated[
247
+ str, typer.Option(..., help="the email address of the agent")
248
+ ],
240
249
  ):
241
250
  print("[bold green]Connecting to room...[/bold green]", flush=True)
242
251
 
@@ -254,6 +263,7 @@ async def service(
254
263
  schema=schema,
255
264
  image_generation=None,
256
265
  rules_file=rules_file,
266
+ email_address=email_address,
257
267
  ),
258
268
  )
259
269
 
meshagent/cli/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.6.2"
1
+ __version__ = "0.6.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-cli
3
- Version: 0.6.2
3
+ Version: 0.6.3
4
4
  Summary: CLI for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -16,18 +16,18 @@ Requires-Dist: art~=6.5
16
16
  Requires-Dist: pydantic-yaml~=1.5
17
17
  Requires-Dist: pathspec~=0.12.1
18
18
  Provides-Extra: all
19
- Requires-Dist: meshagent-agents[all]~=0.6.2; extra == "all"
20
- Requires-Dist: meshagent-api[all]~=0.6.2; extra == "all"
21
- Requires-Dist: meshagent-computers~=0.6.2; extra == "all"
22
- Requires-Dist: meshagent-openai~=0.6.2; extra == "all"
23
- Requires-Dist: meshagent-mcp~=0.6.2; extra == "all"
24
- Requires-Dist: meshagent-tools~=0.6.2; extra == "all"
19
+ Requires-Dist: meshagent-agents[all]~=0.6.3; extra == "all"
20
+ Requires-Dist: meshagent-api[all]~=0.6.3; extra == "all"
21
+ Requires-Dist: meshagent-computers~=0.6.3; extra == "all"
22
+ Requires-Dist: meshagent-openai~=0.6.3; extra == "all"
23
+ Requires-Dist: meshagent-mcp~=0.6.3; extra == "all"
24
+ Requires-Dist: meshagent-tools~=0.6.3; extra == "all"
25
25
  Requires-Dist: supabase-auth~=2.12.3; extra == "all"
26
26
  Provides-Extra: mcp-service
27
- Requires-Dist: meshagent-agents[all]~=0.6.2; extra == "mcp-service"
28
- Requires-Dist: meshagent-api~=0.6.2; extra == "mcp-service"
29
- Requires-Dist: meshagent-mcp~=0.6.2; extra == "mcp-service"
30
- Requires-Dist: meshagent-tools~=0.6.2; extra == "mcp-service"
27
+ Requires-Dist: meshagent-agents[all]~=0.6.3; extra == "mcp-service"
28
+ Requires-Dist: meshagent-api~=0.6.3; extra == "mcp-service"
29
+ Requires-Dist: meshagent-mcp~=0.6.3; extra == "mcp-service"
30
+ Requires-Dist: meshagent-tools~=0.6.3; extra == "mcp-service"
31
31
  Requires-Dist: supabase-auth~=2.12.3; extra == "mcp-service"
32
32
 
33
33
  # [Meshagent](https://www.meshagent.com)
@@ -15,7 +15,7 @@ meshagent/cli/developer.py,sha256=2nWCX9lqtTd__i6qDJOOJtI0kB4X185s_3Ktfx5MaRQ,22
15
15
  meshagent/cli/exec.py,sha256=fZpRvvTJC5bUBpaUCOFFJuaZDuyIPz5r42-bxtwDWhM,15647
16
16
  meshagent/cli/helper.py,sha256=RLUJxNJ1aDx4fij61ps_s0NGXwYVcp_Ek6n1ChHM3HM,3961
17
17
  meshagent/cli/helpers.py,sha256=9JSZiWOnVkh0qfM3DKcvz4u83EJ34DBdukx2Ple9V94,4783
18
- meshagent/cli/mailbot.py,sha256=dMfDM-QWfhmiRegzRe_bihznzUfD1RngkNPDhDu7sYs,8160
18
+ meshagent/cli/mailbot.py,sha256=CSkRY6fX2t6Izbz5uJN6GQhMPDGcPJxtGkX4VQwn4MI,8529
19
19
  meshagent/cli/meeting_transcriber.py,sha256=Eo4itFxwQvMoz-IBN4hMA7PMVsU81uUsYSnmCyZK9QA,3834
20
20
  meshagent/cli/messaging.py,sha256=guzaFxtmApLJ0p6RCqiHstk-md2NGW3FLTu-Pzwdo5Q,5278
21
21
  meshagent/cli/oauth2.py,sha256=-ArxgO7KAjowanp8KcHlSEnVpemzm49fSov6wrKOe0o,6193
@@ -25,11 +25,11 @@ meshagent/cli/queue.py,sha256=DauqjVul7v6dLHQ_t3C-Pqmrgvjg093FHCRsD5Yf3bg,2937
25
25
  meshagent/cli/services.py,sha256=GZA40INO9bOZMoKAw0u_qTtD2inGEJAX4aqXqUuSt3Y,14908
26
26
  meshagent/cli/sessions.py,sha256=bUwrPkzeEWE8gTqD4E-tfr2ChBns3Fvv9MsSV4RRNTQ,881
27
27
  meshagent/cli/storage.py,sha256=0pSrviBM53-2xFlD1ZW4rDthJ-CwUD5tQC43FcaU5sU,32541
28
- meshagent/cli/version.py,sha256=jFlbxEJFS0G44LE-yXXVSwXACA1J_NyYDk5E20_2zpc,22
28
+ meshagent/cli/version.py,sha256=zYiFHqR7JwbvdK9dvKrh-RTNfUqjHUwC4CTcFAPVYLc,22
29
29
  meshagent/cli/voicebot.py,sha256=t8sqygbXPbasfCf6cDDTGxZWHD3KeuBZhYDkV0k-wQI,6003
30
30
  meshagent/cli/webhook.py,sha256=g2vqt3fKQ5HQ2miXZbekjyZ_NODsyRTYIgWEni5bDP0,2971
31
- meshagent_cli-0.6.2.dist-info/METADATA,sha256=OeBX3DXh3aoHa4ye3IOB__s9Z6N1GCS1PI691S8-kyI,1976
32
- meshagent_cli-0.6.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
33
- meshagent_cli-0.6.2.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
34
- meshagent_cli-0.6.2.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
35
- meshagent_cli-0.6.2.dist-info/RECORD,,
31
+ meshagent_cli-0.6.3.dist-info/METADATA,sha256=Cvy_l0vAXvWRNGNi0154x6QEdz03Lo7ntaJnnGcbVYA,1976
32
+ meshagent_cli-0.6.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
33
+ meshagent_cli-0.6.3.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
34
+ meshagent_cli-0.6.3.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
35
+ meshagent_cli-0.6.3.dist-info/RECORD,,