()
| 1960 | |
| 1961 | #[test] |
| 1962 | fn test_create_client_with_config_openai() { |
| 1963 | let config = LlmConfig::new("openai", "gpt-4", "key"); |
| 1964 | let client = create_client_with_config(config); |
| 1965 | assert!(Arc::strong_count(&client) >= 1); |
| 1966 | } |
| 1967 | |
| 1968 | #[test] |
| 1969 | fn test_create_client_with_config_gpt_alias() { |
nothing calls this directly
no test coverage detected