()
| 1773 | |
| 1774 | #[test] |
| 1775 | fn test_openai_convert_messages_empty() { |
| 1776 | let client = OpenAiClient::new("key".to_string(), "model".to_string()); |
| 1777 | let converted = client.convert_messages(&[]); |
| 1778 | assert_eq!(converted.len(), 0); |
| 1779 | } |
| 1780 | |
| 1781 | #[test] |
| 1782 | fn test_openai_convert_messages_single_text_block() { |
nothing calls this directly
no test coverage detected