Server SDKs
Build AI agents, control calls, send messages, and more
get_config_file
Get the path of the loaded config file.
Optional[str] — The file path, or None if no config was loaded.
Optional[str]
None
1from signalwire.core.config_loader import ConfigLoader23loader = ConfigLoader(["config.json", "/etc/swml/config.json"])4path = loader.get_config_file()56if path:7 print(f"Loaded config from: {path}")8else:9 print("No config file found")