()
| 745 | |
| 746 | #[test] |
| 747 | fn test_default_model_pricing_claude_haiku() { |
| 748 | let pricing = default_model_pricing(); |
| 749 | let haiku = pricing.get("claude-3-haiku-20240307").unwrap(); |
| 750 | assert_eq!(haiku.input_per_million, 0.25); |
| 751 | assert_eq!(haiku.output_per_million, 1.25); |
| 752 | } |
| 753 | |
| 754 | #[test] |
| 755 | fn test_default_model_pricing_gpt4o() { |
nothing calls this directly
no test coverage detected