Server SDKs
Build AI agents, control calls, send messages, and more
has_config
Check whether a configuration file was successfully loaded.
bool — True if a config file was found and loaded.
bool
True
1from signalwire.core.config_loader import ConfigLoader23loader = ConfigLoader()4if loader.has_config():5 print(f"Loaded config from: {loader.get_config_file()}")6else:7 print("No config file found, using defaults")