()
| 1945 | |
| 1946 | #[test] |
| 1947 | fn test_create_client_with_config_anthropic() { |
| 1948 | let config = LlmConfig::new("anthropic", "claude-3", "key"); |
| 1949 | let client = create_client_with_config(config); |
| 1950 | // Just verify it creates without panic |
| 1951 | assert!(Arc::strong_count(&client) >= 1); |
| 1952 | } |
| 1953 | |
| 1954 | #[test] |
| 1955 | fn test_create_client_with_config_claude_alias() { |
nothing calls this directly
no test coverage detected