Clarified error messages to help diagnose configuration issues:
- Changed "edge_connect_url" to "edge_connect.url" to match actual TOML structure
- Added helpful note about common mistake of using hyphens instead of underscores in TOML section names
This addresses confusion when users accidentally use [edge-connect] instead of [edge_connect].
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Makes the EdgeConnect URL configurable through the config.toml file instead of hardcoding it in the provider code. This change:
- Adds new EdgeConnectURL field to Config struct
- Implements validation to ensure URL is provided
- Updates example config.toml with default URL
- Modifies provider to use configured URL value
This improves deployment flexibility by allowing different edge connect endpoints without code changes.