Server SDKs
Build AI agents, control calls, send messages, and more
get_config
Get the raw configuration dictionary before environment variable substitution.
dict[str, Any] — The raw config, or an empty dict if no config is loaded.
dict[str, Any]
1from signalwire.core.config_loader import ConfigLoader23loader = ConfigLoader(["config.json"])4raw = loader.get_config()56print(raw)7# {"server": {"port": 3000}, "security": {"ssl_enabled": "${SWML_SSL_ENABLED|false}"}}