()
| 1423 | |
| 1424 | #[test] |
| 1425 | fn test_create_client_with_base_url() { |
| 1426 | let config = |
| 1427 | LlmConfig::new("openai", "gpt-4", "key").with_base_url("https://custom.api.com"); |
| 1428 | let _client = create_client_with_config(config); |
| 1429 | } |
| 1430 | |
| 1431 | // ======================================================================== |
| 1432 | // normalize_base_url |
nothing calls this directly
no test coverage detected