MCPcopy Create free account
hub / github.com/AI45Lab/Code / test_create_client_with_config_anthropic

Function test_create_client_with_config_anthropic

core/src/llm/tests.rs:1947–1952  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected