signalwire-agents 0.1.26__py3-none-any.whl → 0.1.27__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.
@@ -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.26"
21
+ __version__ = "0.1.27"
22
22
 
23
23
  # Import core classes for easier access
24
24
  from .core.agent_base import AgentBase
@@ -205,6 +205,7 @@ class Step:
205
205
  def to_dict(self) -> Dict[str, Any]:
206
206
  """Convert step to dictionary for SWML generation"""
207
207
  step_dict = {
208
+ "name": self.name,
208
209
  "text": self._render_text()
209
210
  }
210
211