()
| 394 | |
| 395 | #[test] |
| 396 | fn profile_for_deepinfra() { |
| 397 | let profile = profile_for("deepinfra").expect("deepinfra profile should exist"); |
| 398 | assert_eq!(profile.provider_type, "deepinfra"); |
| 399 | assert_eq!( |
| 400 | profile.default_base_url, |
| 401 | "https://api.deepinfra.com/v1/openai" |
| 402 | ); |
| 403 | assert_eq!(profile.auth, AuthHeader::Bearer); |
| 404 | } |
| 405 | |
| 406 | #[test] |
| 407 | fn openai_compatible_profiles_include_embeddings() { |
nothing calls this directly
no test coverage detected