Server SDKs
Build AI agents, control calls, send messages, and more
load_from_env
Reload all settings from environment variables. This is called automatically during construction but can be called again to pick up runtime changes.
None
1import os2from signalwire.core.security_config import SecurityConfig34security = SecurityConfig()56os.environ["SWML_SSL_ENABLED"] = "true"7security.load_from_env()89print(f"SSL enabled: {security.ssl_enabled}") # True