signalwire-agents 0.1.29__py3-none-any.whl → 0.1.30__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.
Files changed (50) hide show
  1. signalwire_agents/__init__.py +1 -1
  2. signalwire_agents/cli/__init__.py +9 -0
  3. signalwire_agents/cli/config.py +9 -0
  4. signalwire_agents/cli/core/__init__.py +9 -0
  5. signalwire_agents/cli/core/agent_loader.py +9 -0
  6. signalwire_agents/cli/core/argparse_helpers.py +9 -0
  7. signalwire_agents/cli/core/dynamic_config.py +9 -0
  8. signalwire_agents/cli/execution/__init__.py +9 -0
  9. signalwire_agents/cli/execution/datamap_exec.py +9 -0
  10. signalwire_agents/cli/execution/webhook_exec.py +9 -0
  11. signalwire_agents/cli/output/__init__.py +9 -0
  12. signalwire_agents/cli/output/output_formatter.py +9 -0
  13. signalwire_agents/cli/output/swml_dump.py +9 -0
  14. signalwire_agents/cli/simulation/__init__.py +9 -0
  15. signalwire_agents/cli/simulation/data_generation.py +9 -0
  16. signalwire_agents/cli/simulation/data_overrides.py +9 -0
  17. signalwire_agents/cli/simulation/mock_env.py +9 -0
  18. signalwire_agents/cli/test_swaig.py +9 -0
  19. signalwire_agents/cli/types.py +9 -0
  20. signalwire_agents/core/agent/deployment/__init__.py +9 -0
  21. signalwire_agents/core/agent/deployment/handlers/__init__.py +9 -0
  22. signalwire_agents/core/agent/routing/__init__.py +9 -0
  23. signalwire_agents/core/agent/security/__init__.py +9 -0
  24. signalwire_agents/core/agent/swml/__init__.py +9 -0
  25. signalwire_agents/core/contexts.py +9 -0
  26. signalwire_agents/skills/__init__.py +9 -0
  27. signalwire_agents/skills/api_ninjas_trivia/__init__.py +9 -0
  28. signalwire_agents/skills/api_ninjas_trivia/skill.py +9 -0
  29. signalwire_agents/skills/datasphere_serverless/__init__.py +9 -0
  30. signalwire_agents/skills/datetime/__init__.py +9 -0
  31. signalwire_agents/skills/joke/__init__.py +9 -0
  32. signalwire_agents/skills/math/__init__.py +9 -0
  33. signalwire_agents/skills/mcp_gateway/__init__.py +9 -0
  34. signalwire_agents/skills/native_vector_search/__init__.py +9 -0
  35. signalwire_agents/skills/play_background_file/__init__.py +9 -0
  36. signalwire_agents/skills/play_background_file/skill.py +9 -0
  37. signalwire_agents/skills/spider/__init__.py +9 -0
  38. signalwire_agents/skills/spider/skill.py +9 -0
  39. signalwire_agents/skills/swml_transfer/__init__.py +9 -0
  40. signalwire_agents/skills/weather_api/__init__.py +9 -0
  41. signalwire_agents/skills/weather_api/skill.py +9 -0
  42. signalwire_agents/skills/web_search/__init__.py +9 -0
  43. signalwire_agents/skills/wikipedia_search/__init__.py +9 -0
  44. signalwire_agents/skills/wikipedia_search/skill.py +9 -0
  45. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/METADATA +1 -1
  46. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/RECORD +50 -50
  47. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/WHEEL +0 -0
  48. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/entry_points.txt +0 -0
  49. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/licenses/LICENSE +0 -0
  50. {signalwire_agents-0.1.29.dist-info → signalwire_agents-0.1.30.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@ A package for building AI agents using SignalWire's AI and SWML capabilities.
18
18
  from .core.logging_config import configure_logging
19
19
  configure_logging()
20
20
 
21
- __version__ = "0.1.29"
21
+ __version__ = "0.1.30"
22
22
 
23
23
  # Import core classes for easier access
24
24
  from .core.agent_base import AgentBase
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  SignalWire Agents CLI Tools
3
12
 
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Configuration constants for the CLI tools
4
13
  """
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Core functionality for CLI tools"""
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Agent discovery and loading functionality
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Custom argument parsing and function argument parsing
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Apply dynamic configuration to agents
4
13
  """
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Function execution modules"""
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  DataMap function execution and template expansion
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Webhook function execution (including external)
4
13
  """
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Output formatting and display modules"""
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Display agent/tools and format results
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Handle SWML document dumping
4
13
  """
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Simulation and mock environment modules"""
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Generate fake SWML post_data and related helpers
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Handle CLI overrides and mapping to nested data
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Mock environment and serverless simulation functionality
4
13
  """
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  SWAIG Function CLI Testing Tool
4
13
 
@@ -1,4 +1,13 @@
1
1
  #!/usr/bin/env python3
2
+ """
3
+ Copyright (c) 2025 SignalWire
4
+
5
+ This file is part of the SignalWire AI Agents SDK.
6
+
7
+ Licensed under the MIT License.
8
+ See LICENSE file in the project root for full license information.
9
+ """
10
+
2
11
  """
3
12
  Type definitions for the CLI tools
4
13
  """
@@ -0,0 +1,9 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
@@ -0,0 +1,9 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
@@ -0,0 +1,9 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
@@ -0,0 +1,9 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
@@ -0,0 +1,9 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  Contexts and Steps System for SignalWire Agents
3
12
 
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  SignalWire Agent Skills Package
3
12
 
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  from .skill import ApiNinjasTriviaSkill
2
11
 
3
12
  __all__ = ['ApiNinjasTriviaSkill']
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  API Ninjas Trivia Skill
3
12
 
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """DataSphere Serverless Skill for SignalWire Agents using DataMap"""
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """DateTime Skill for SignalWire Agents"""
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Joke Skill for SignalWire Agents using DataMap"""
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Math Skill for SignalWire Agents"""
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """MCP Gateway Skill for SignalWire Agents"""
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  # Native Vector Search Skill
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  from .skill import PlayBackgroundFileSkill
2
11
 
3
12
  __all__ = ['PlayBackgroundFileSkill']
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  Play Background File Skill
3
12
 
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Spider skill for web scraping."""
2
11
  from .skill import SpiderSkill
3
12
 
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Spider skill for fast web scraping with SignalWire AI Agents."""
2
11
  import re
3
12
  import logging
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """SWML Transfer Skill for SignalWire Agents"""
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  from .skill import WeatherApiSkill
2
11
 
3
12
  __all__ = ['WeatherApiSkill']
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  Weather API Skill
3
12
 
@@ -1 +1,10 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """Web Search Skill for SignalWire Agents"""
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  Wikipedia Search Skill
3
12
 
@@ -1,3 +1,12 @@
1
+ """
2
+ Copyright (c) 2025 SignalWire
3
+
4
+ This file is part of the SignalWire AI Agents SDK.
5
+
6
+ Licensed under the MIT License.
7
+ See LICENSE file in the project root for full license information.
8
+ """
9
+
1
10
  """
2
11
  Wikipedia Search Skill
3
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: signalwire_agents
3
- Version: 0.1.29
3
+ Version: 0.1.30
4
4
  Summary: SignalWire AI Agents SDK
5
5
  Author-email: SignalWire Team <info@signalwire.com>
6
6
  License: MIT
@@ -1,30 +1,30 @@
1
- signalwire_agents/__init__.py,sha256=HQbHkQ6xLuhMcksKcaD0i6UMCLjT1eCFvVgwhge8r-k,2608
1
+ signalwire_agents/__init__.py,sha256=5TiCvjU53y8o22RKkXnmqehcXDi62LZQ_YOaqIUq35k,2608
2
2
  signalwire_agents/agent_server.py,sha256=x9HyWia8D3r6KMqY-Q4DtNVivfJWLTx8B-KzUI8okuA,26880
3
3
  signalwire_agents/schema.json,sha256=AWhh6MoMU95roA_6RSdVdvbHDWPYqMavRoSnsVeMiw8,240965
4
- signalwire_agents/cli/__init__.py,sha256=Iy2BfWDWBEZoA1cyHTDsooBSVMx4vH5Ddhr3sEuFe8c,197
4
+ signalwire_agents/cli/__init__.py,sha256=XbxAQFaCIdGXIXJiriVBWoFPOJsC401u21588nO4TG8,388
5
5
  signalwire_agents/cli/build_search.py,sha256=KLQJBqVSADFyGcKAi0KLwU_UoUd5rtRoKAdfcH91u70,28652
6
- signalwire_agents/cli/config.py,sha256=U5AhAzCaf7jkziaGTrnF_FYy8WVDDR_WXgbfyVGkST4,2350
7
- signalwire_agents/cli/test_swaig.py,sha256=8Z7OGK0P3NUMAIMYuM-1pxcSsGG0airWDxut1lYLV_E,30571
8
- signalwire_agents/cli/types.py,sha256=fjj3LV6upZDzplxqOYHyi3lxIkKKTWNPUtKt9yPGYXs,1619
9
- signalwire_agents/cli/core/__init__.py,sha256=hfGAdbsh-TWkN8KvQGAlfHIs9D-KfG5W6peP47pjV08,38
10
- signalwire_agents/cli/core/agent_loader.py,sha256=55wXgJhIZX8gDP0d-EVqTrVYiZgXDGBJq9wErwL46e8,10394
11
- signalwire_agents/cli/core/argparse_helpers.py,sha256=x0OmsLzHikZDY4zmv_40RkiwS3377xUJUJT4y_8flEE,6284
12
- signalwire_agents/cli/core/dynamic_config.py,sha256=K5DPttmAo1sFM5a6zVsUE_B4nlgyufLLAJ1MfmNk6bE,2495
13
- signalwire_agents/cli/execution/__init__.py,sha256=CK1XG7zxUqLxey4yrYIbko3dhDV9YVCypaZg0JvhXLc,32
14
- signalwire_agents/cli/execution/datamap_exec.py,sha256=Oykhcz7L92mZTczEDt2vc-d0wiHKCTFzdhcMD4snFSQ,20198
15
- signalwire_agents/cli/execution/webhook_exec.py,sha256=NCC8hyUhK_f_7IaVOC84yJWyRRm8mnfdBjJPoNTSYzI,4519
16
- signalwire_agents/cli/output/__init__.py,sha256=KA_odlDmJFp7Bat7Z5gjWb1RdbMCDVGov4vWF0OS8qI,43
17
- signalwire_agents/cli/output/output_formatter.py,sha256=MidaaCrhOuLJ3L_nsbNFTh92E_uOKeJruuR0pakNZZ0,5577
18
- signalwire_agents/cli/output/swml_dump.py,sha256=S0lPhm1-XiZk0TU2SfOPTMRa5iGubStHI6MbQsiAXaw,6449
19
- signalwire_agents/cli/simulation/__init__.py,sha256=D-9DVP3Xat3eTxgX-L63cSdtM5X8nGA54bcPGlEm600,45
20
- signalwire_agents/cli/simulation/data_generation.py,sha256=ueQ8Ga5mng8jd87dzxN5rzwbbzboMpd6vB7_yUwjGHE,11727
21
- signalwire_agents/cli/simulation/data_overrides.py,sha256=EpWckF9-pc0AaZdh1C2msP3hcNxe0WoQO-n0VugE56k,6128
22
- signalwire_agents/cli/simulation/mock_env.py,sha256=S6uGDGEO-4dXAyCJEZO1hkwiyJmYXBZx5o8XT0as0fc,9950
6
+ signalwire_agents/cli/config.py,sha256=2i4e0BArdKsaXxjeueYYRNke7GWicHPYC2wuitVrP7A,2541
7
+ signalwire_agents/cli/test_swaig.py,sha256=3uB_a56N82TpN-Sxhj-NcuFEGFOFotPmyKI5qQuQGXc,30762
8
+ signalwire_agents/cli/types.py,sha256=U8Abc4Atb5-wMbhM3MjcuIXsbONLOu1ucePWOCgqdco,1810
9
+ signalwire_agents/cli/core/__init__.py,sha256=YX37KLHd3LEjeiv4aVXeWnjFWxbW3Z4mJ0Yw7bdVv0A,229
10
+ signalwire_agents/cli/core/agent_loader.py,sha256=hzvJ6GV_X1dwyC3UHtdsxSCd6PV55Wf-1vj1AQfSw34,10585
11
+ signalwire_agents/cli/core/argparse_helpers.py,sha256=PdjC94shTnQrcWmQOiJOzypvpiAVQ8aLHFeOVU-aGMg,6475
12
+ signalwire_agents/cli/core/dynamic_config.py,sha256=FuB0slymgoDfzcKWXPy_Dy9qprSTn0e1ou7A0Vgwie8,2686
13
+ signalwire_agents/cli/execution/__init__.py,sha256=GS9EkXJhhFQjn7NSmxM5JX1Iy7pm6U6rW2BZCk3bxas,223
14
+ signalwire_agents/cli/execution/datamap_exec.py,sha256=UNQ8gn1KW72YDjegY8SzeZWebZiD-DO6dRLkxia438k,20389
15
+ signalwire_agents/cli/execution/webhook_exec.py,sha256=m4gIX-MaTG8JngI57qyeWGYDQJwkbJANpvkBwJeJ_7o,4710
16
+ signalwire_agents/cli/output/__init__.py,sha256=aGBWE-xXbqsFi-cyD5MCs8v3chxirSxdDyDZTUWYJO4,234
17
+ signalwire_agents/cli/output/output_formatter.py,sha256=yXGXVG1LeymSB2mpNNo5C4mVgH7qsy707-eOVq8XLBw,5768
18
+ signalwire_agents/cli/output/swml_dump.py,sha256=PiUwPvwiaPENw4oylavxMNE9d2C7e7AfkwZNZSbDpds,6640
19
+ signalwire_agents/cli/simulation/__init__.py,sha256=YtfbBKujx8SjZqaOtMdgle8FvxzKeD8_pRzeD25ylsU,236
20
+ signalwire_agents/cli/simulation/data_generation.py,sha256=pxa9aJ6XkI0O8yAIGvBTUU3eBVkJizNx9xW8mHEosTI,11918
21
+ signalwire_agents/cli/simulation/data_overrides.py,sha256=3_3pT6j-q2gRufPX2bZ1BrmY7u1IdloLooKAJil33vI,6319
22
+ signalwire_agents/cli/simulation/mock_env.py,sha256=KA08sRqLDfESn_e1o7S6E4nvzFtvBpvs7f8A12Zf2wc,10141
23
23
  signalwire_agents/core/__init__.py,sha256=xjPq8DmUnWYUG28sd17n430VWPmMH9oZ9W14gYwG96g,806
24
24
  signalwire_agents/core/agent_base.py,sha256=F0dL5bdWY_n3zIz9qVC8jWu3xxNXS6cO3dFW_RCyuro,43951
25
25
  signalwire_agents/core/auth_handler.py,sha256=jXrof9WZ1W9qqlQT9WElcmSRafL2kG7207x5SqWN9MU,8481
26
26
  signalwire_agents/core/config_loader.py,sha256=rStVRRUaeMGrMc44ocr0diMQQARZhbKqwMqQ6kqUNos,8722
27
- signalwire_agents/core/contexts.py,sha256=jexhUSEzfpDekzjA8d01gOjy4o1QUn3ffcUsyosT698,24237
27
+ signalwire_agents/core/contexts.py,sha256=g9FgOGMfGCUWlm57YZcv7CvOf-Ub9FdKZIOMu14ADfE,24428
28
28
  signalwire_agents/core/data_map.py,sha256=0qp3VcrRS0RtZPApoAaGgM-udLBb1ysnyMJuWd6sSew,17134
29
29
  signalwire_agents/core/function_result.py,sha256=MZZUoAHN8AXry-OBNA6Od5l-bKvMM2ruvnqHLbNhSiQ,44959
30
30
  signalwire_agents/core/logging_config.py,sha256=x4d_RAjBjVpJOFA2vXnPP2dNr13BZHz091J5rGpC77Y,13142
@@ -39,13 +39,13 @@ signalwire_agents/core/swml_renderer.py,sha256=-WAB_5ss836a8nBo5zlb6SaQKFNF4XIo1
39
39
  signalwire_agents/core/swml_service.py,sha256=vgK_OScBlXdsr3dMe7pLUnm_cQVWtmNl_lu5guAKDlg,49851
40
40
  signalwire_agents/core/agent/__init__.py,sha256=qccTmLD9b24tZDAoIPEY6vJ2p1R_ArZ_ZCKbBlKvPQ8,239
41
41
  signalwire_agents/core/agent/config/__init__.py,sha256=5XvTfnYeeGdoLr4tJjbe1OhF26nOcR5VTDIhtMGCu3I,244
42
- signalwire_agents/core/agent/deployment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- signalwire_agents/core/agent/deployment/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ signalwire_agents/core/agent/deployment/__init__.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
43
+ signalwire_agents/core/agent/deployment/handlers/__init__.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
44
44
  signalwire_agents/core/agent/prompt/__init__.py,sha256=4pKL3P7q9uAEtbwOKSJ_supaDn8LZl2uKXuWM72f_Pg,288
45
45
  signalwire_agents/core/agent/prompt/manager.py,sha256=0jNTufykxuz8O2w-gsHeTxWH-f36suawWjNF5JYZ_X0,10074
46
- signalwire_agents/core/agent/routing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- signalwire_agents/core/agent/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- signalwire_agents/core/agent/swml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ signalwire_agents/core/agent/routing/__init__.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
47
+ signalwire_agents/core/agent/security/__init__.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
48
+ signalwire_agents/core/agent/swml/__init__.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
49
49
  signalwire_agents/core/agent/tools/__init__.py,sha256=eOcmyeGm6qogT3wsBx7QvdjmTbc1p5hnPR6uIlvTLxI,339
50
50
  signalwire_agents/core/agent/tools/decorator.py,sha256=pC6j1114GwVBd2U3h23I9gKLtu8AgeiuWV0lUzz682U,2961
51
51
  signalwire_agents/core/agent/tools/registry.py,sha256=CgsCUMWBV4Use1baNl2KLYS2ewKjjOwm28kC_T7R6mU,7459
@@ -73,57 +73,57 @@ signalwire_agents/search/query_processor.py,sha256=WMm_jjArQ6-Jpy0Cc0sUI4saidOtD
73
73
  signalwire_agents/search/search_engine.py,sha256=KFF33aPsBdwb2N1aTJmAA0xo3KPANoXjwV53uSxih9o,14798
74
74
  signalwire_agents/search/search_service.py,sha256=zidaQb2aRusAODU8C6Nw65ZlTy3DjJ2-bMJavhMl7vk,15608
75
75
  signalwire_agents/skills/README.md,sha256=sM1_08IsKdRDCzYHPLzppJbaK5MvRelsVL6Kd9A9Ubo,12193
76
- signalwire_agents/skills/__init__.py,sha256=j0HambEKTkrFNP2vsaSmfrMJNDabq4EuvYJqRKZXfxU,342
76
+ signalwire_agents/skills/__init__.py,sha256=9AMEcyk2tDaGiUjwVIson_tVWxV4oU_2NnGGNTbHuyQ,533
77
77
  signalwire_agents/skills/registry.py,sha256=lnr0XFOQ5YC_WgsAT6Id3RMAJ2-nf2ZCdqB7z_huLQI,4889
78
78
  signalwire_agents/skills/api_ninjas_trivia/README.md,sha256=SoyS7VFh3eVIiVnQ5gfTfs0a_gAlLwnmT2W2FrbNU0A,6762
79
- signalwire_agents/skills/api_ninjas_trivia/__init__.py,sha256=HFHBTgOoySlFPLN0thxuhaYFJbK7PUoS_uIHXI1m_xY,76
80
- signalwire_agents/skills/api_ninjas_trivia/skill.py,sha256=PzVGM8ep80o-AzPfZIiXlWMghs0f28T1DVYZRQQOG3A,7206
79
+ signalwire_agents/skills/api_ninjas_trivia/__init__.py,sha256=zN305bBQkzlJyUNsPUMPt3gDJbvc-Iigkdh0rBou_RE,267
80
+ signalwire_agents/skills/api_ninjas_trivia/skill.py,sha256=phioqvXivdoklg7tHE998Ac5S6-0Q90X8OmEjSIGprM,7397
81
81
  signalwire_agents/skills/datasphere/README.md,sha256=7G5t0V04SlnJ39U-3zOoIOfkNFrVEo-s45lCUlYmJGo,7351
82
82
  signalwire_agents/skills/datasphere/__init__.py,sha256=SJJlmeMSeezjINPgkuWN1XzDPN_Z3GzZ_StzO1BtxQs,257
83
83
  signalwire_agents/skills/datasphere/skill.py,sha256=L6GrGwej3sKPcHljKBNf4it5g4DaGzR18KlQx65_XKg,9598
84
84
  signalwire_agents/skills/datasphere_serverless/README.md,sha256=FErV97NEdYD_N1wZxkLqy6DSml5B9mCJmEgCUdGxh6A,9299
85
- signalwire_agents/skills/datasphere_serverless/__init__.py,sha256=65hu8_0eqiczLSZ-aJgASpMQqTUjzTQUI1fC8GI7qTI,70
85
+ signalwire_agents/skills/datasphere_serverless/__init__.py,sha256=jpMNDcGiXsVbSCVUrc_AwLARqEtVu4dPYZPJSJ-K3rc,261
86
86
  signalwire_agents/skills/datasphere_serverless/skill.py,sha256=zgEoTY8Jm6YKJBzM1kn3j7tf492K-NiKG7DbE3GReeE,6787
87
87
  signalwire_agents/skills/datetime/README.md,sha256=95SzVz-Pcm9MPqZ4D3sSYKMwdpsDNwwCpWFRK027-Pc,4534
88
- signalwire_agents/skills/datetime/__init__.py,sha256=coPaY-k2EyZWuYckGunhSJ65Y1Jwz66h-iOo0QWb5WY,43
88
+ signalwire_agents/skills/datetime/__init__.py,sha256=Irajm2sUhmQVFgais-J-q-3d58tNnJ4nbLmnphr90nI,234
89
89
  signalwire_agents/skills/datetime/skill.py,sha256=aBBdcPV5xWX6uWi9W0VqZ0kKOqC3JHrAhG1bZn58ro8,3900
90
90
  signalwire_agents/skills/joke/README.md,sha256=xUa2_0Pk9neli-UJxI4BPt3Fb1_5Xa3m8RuDlrkfBao,3594
91
- signalwire_agents/skills/joke/__init__.py,sha256=R-iS9UMMvOdpkxL9aooVik16eCddJw14Rz4PmFqCdsM,53
91
+ signalwire_agents/skills/joke/__init__.py,sha256=8Rc5_nj30bdga2n9H9JSI2WzMn40pjApd-y-tk5WIkI,244
92
92
  signalwire_agents/skills/joke/skill.py,sha256=AFaf6fMy0sxUPJHvcnf3CWMuPqpJP4ODscUexMadEcU,3381
93
93
  signalwire_agents/skills/math/README.md,sha256=Nrv7PxkFPSxdnAN6856Fp1CfvsUwdncpRFFDERxmMe0,5335
94
- signalwire_agents/skills/math/__init__.py,sha256=lGAFWEmJH2fuwkuZUdDTY5dmucrIwtjfNT8bE2hOSP8,39
94
+ signalwire_agents/skills/math/__init__.py,sha256=F7emZqBpAAkqJZxA3RNTzRSAXE5e2xu8PtFOPHebfKo,230
95
95
  signalwire_agents/skills/math/skill.py,sha256=5sErd5x1rFHJg2GlmdJB3LvrmvTNOrZsA2jRnG67Zw8,3342
96
96
  signalwire_agents/skills/mcp_gateway/README.md,sha256=t-71TTWlEvjgWLTcT3v4kMw9zlrKXTAC_sCjb1haNew,5826
97
- signalwire_agents/skills/mcp_gateway/__init__.py,sha256=w1XiSptNPQAoZe3ISvYzi7bUdNT_KrDrQYeKKGzy-4w,45
97
+ signalwire_agents/skills/mcp_gateway/__init__.py,sha256=zLgOa7s0sIQphTNJjvasIAW7llxAApez7moC_e1tzP0,236
98
98
  signalwire_agents/skills/mcp_gateway/skill.py,sha256=iS5ET9jYKnwuYsuFd-aqUJfLUhvX--RG2FfCq8BZ340,14050
99
- signalwire_agents/skills/native_vector_search/__init__.py,sha256=buvncVoH5u8MJA0SLlz1JQgIuyBTQW5aql-ydnc7Wh8,29
99
+ signalwire_agents/skills/native_vector_search/__init__.py,sha256=RofpN3Sd-vyWeUCTYH2dRVrl7h6YuyG5OK772UQ-KFk,220
100
100
  signalwire_agents/skills/native_vector_search/skill.py,sha256=Ck74rnlZ1HtnmEWRhZW1bSF_-PzpV3q-sNOu_LmeDQ0,18934
101
101
  signalwire_agents/skills/play_background_file/README.md,sha256=omJ_jY5Co6Mk-gJt_hoSl40wemmTbzae3DBll6HL0B4,7026
102
- signalwire_agents/skills/play_background_file/__init__.py,sha256=exCFsX6Mi0l4YBQfiSv5NdUAimv9YqVokK5M4x0nlV4,82
103
- signalwire_agents/skills/play_background_file/skill.py,sha256=iQO8Xd1U92gff5O1lEuhL3dXcAUkQbcfoUSgKWuf_FM,7164
102
+ signalwire_agents/skills/play_background_file/__init__.py,sha256=iETc6e-0Cai3RUTQWhg9BieWi3NF3_DWWBKdYXcd4ok,273
103
+ signalwire_agents/skills/play_background_file/skill.py,sha256=w_FrhFIigOMW8HJgRNABl0uE-xJ__LTLxZdZaSWryhk,7355
104
104
  signalwire_agents/skills/spider/README.md,sha256=yBa09JzgLikG3STbDNbRCKUM3l3XU5-D923I2g8CTVc,6909
105
- signalwire_agents/skills/spider/__init__.py,sha256=O0Xvgj2KWOdeyb2U-q1QFVUzPv1yylsreRDxmB4ns5E,94
106
- signalwire_agents/skills/spider/skill.py,sha256=l9a2Re0-vb1UeRevXsDb_2qxuMfaOo7bE8M-0Ly837M,18976
105
+ signalwire_agents/skills/spider/__init__.py,sha256=bZcCGLX5Cz18qY8rOvAAync6BRtketxaU19l6YcA_iI,285
106
+ signalwire_agents/skills/spider/skill.py,sha256=nF4QmUzuS_6WABxPzEkg1CVv9ylEIL-Ptc7BYt-EFB8,19167
107
107
  signalwire_agents/skills/swml_transfer/README.md,sha256=2Y6CH5Bm9kI5IYCLczIQIYlaYUq6VX_S4Irct2CQMmQ,14681
108
- signalwire_agents/skills/swml_transfer/__init__.py,sha256=V8upr8xlgXMB4xHzSWCcEAw6cpZxGB0mjrFdqHCSQJU,47
108
+ signalwire_agents/skills/swml_transfer/__init__.py,sha256=YyfxRpbgT4ZpEjGolwffKqjUzX4VqDNLdqfSoA0D0IY,238
109
109
  signalwire_agents/skills/swml_transfer/skill.py,sha256=Me_m0Edn76_KA1bAiJLDNPqv-hXR-6MTNeVKok8eVUk,10834
110
110
  signalwire_agents/skills/weather_api/README.md,sha256=buzCtrhxXAxZ8k7Qt_lR62E_tqnpXmXRsTarb_F43zg,6439
111
- signalwire_agents/skills/weather_api/__init__.py,sha256=ezHyWbpvMoEopWG5_vI6u8Ugo0BsmR_gWvtPwzQWoe0,66
112
- signalwire_agents/skills/weather_api/skill.py,sha256=lTLRUFcgJvhZewZlwaMbLubAB7yVjAxpGG2wbqi9yS4,6026
111
+ signalwire_agents/skills/weather_api/__init__.py,sha256=WCS--GFBX8straIZPuGAmTDZ7t-y7VI6ioB1Kf8eeP4,257
112
+ signalwire_agents/skills/weather_api/skill.py,sha256=-0gFgTVau2Pxljq9_fmNDnzgUI0JBXtdOCIAdHc8fLs,6217
113
113
  signalwire_agents/skills/web_search/README.md,sha256=Y95cxEScMzhmslUJF8u_Nh15FbEBuus4P-E8_kk2an0,5438
114
- signalwire_agents/skills/web_search/__init__.py,sha256=wJlptYDExYw-nxZJVzlTLOgkKkDOLUUt1ZdoLt44ixs,45
114
+ signalwire_agents/skills/web_search/__init__.py,sha256=kv4CzmF1lldRZcL_HivieslP7gtTFvxcfprKG4n6b-Q,236
115
115
  signalwire_agents/skills/web_search/skill.py,sha256=6EwoNABxEH5UkEdXsPT72PQzoVlFUbWsFJR6NuyhglI,10363
116
116
  signalwire_agents/skills/wikipedia_search/README.md,sha256=KFIQ8XhqrTG8NRs72dIbjJacy2DlYEXLtxgy23gyRi4,7585
117
- signalwire_agents/skills/wikipedia_search/__init__.py,sha256=8Db_aE0ly7QoXg7n2RDvCqKupkyR-UYlK9uFUnGNCE8,184
118
- signalwire_agents/skills/wikipedia_search/skill.py,sha256=Q_HWJoG2RkQuZMgWxD9czuzEor79Gy1tjo6ywVzec84,6877
117
+ signalwire_agents/skills/wikipedia_search/__init__.py,sha256=yJ6iYTSyJC96mwwUsI_FneFhDBcLYD4xEerBKlWLTb8,375
118
+ signalwire_agents/skills/wikipedia_search/skill.py,sha256=8HhV8E4yDMe-p3qCxgEYFrL5hNvnJ6KbQzYumpgI7-k,7068
119
119
  signalwire_agents/utils/__init__.py,sha256=1KVsHzwgfktSXHe3vqSRGImjtIE58szwD2FHHoFBtvY,601
120
120
  signalwire_agents/utils/pom_utils.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
121
121
  signalwire_agents/utils/schema_utils.py,sha256=i4okv_O9bUApwT_jJf4Yoij3bLCrGrW3DC-vzSy2RuY,16392
122
122
  signalwire_agents/utils/token_generators.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
123
123
  signalwire_agents/utils/validators.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
124
- signalwire_agents-0.1.29.dist-info/licenses/LICENSE,sha256=NYvAsB-rTcSvG9cqHt9EUHAWLiA9YzM4Qfz-mPdvDR0,1067
125
- signalwire_agents-0.1.29.dist-info/METADATA,sha256=W52d5PaE5t2jU01BfgwECFPW--OeJeABeBgpsRDqebA,35907
126
- signalwire_agents-0.1.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
127
- signalwire_agents-0.1.29.dist-info/entry_points.txt,sha256=sfdeRaTSs9J56pqFdcZGRTxQcTuecb8IMx8gqleJ6s0,136
128
- signalwire_agents-0.1.29.dist-info/top_level.txt,sha256=kDGS6ZYv84K9P5Kyg9_S8P_pbUXoHkso0On_DB5bbWc,18
129
- signalwire_agents-0.1.29.dist-info/RECORD,,
124
+ signalwire_agents-0.1.30.dist-info/licenses/LICENSE,sha256=NYvAsB-rTcSvG9cqHt9EUHAWLiA9YzM4Qfz-mPdvDR0,1067
125
+ signalwire_agents-0.1.30.dist-info/METADATA,sha256=AcO-83M3tqqeVWTfXm3hQ6KNk4SrHgKKGsvgR80zRZ4,35907
126
+ signalwire_agents-0.1.30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
127
+ signalwire_agents-0.1.30.dist-info/entry_points.txt,sha256=sfdeRaTSs9J56pqFdcZGRTxQcTuecb8IMx8gqleJ6s0,136
128
+ signalwire_agents-0.1.30.dist-info/top_level.txt,sha256=kDGS6ZYv84K9P5Kyg9_S8P_pbUXoHkso0On_DB5bbWc,18
129
+ signalwire_agents-0.1.30.dist-info/RECORD,,