()
| 722 | use crate::llm::types::{Message, ToolDefinition}; |
| 723 | |
| 724 | fn make_client() -> AnthropicClient { |
| 725 | AnthropicClient::new("test-key".to_string(), "claude-opus-4-6".to_string()) |
| 726 | } |
| 727 | |
| 728 | #[test] |
| 729 | fn test_build_request_basic() { |
no outgoing calls