| 23 | #include <ai/ai.h> |
| 24 | |
| 25 | struct ProviderResult { |
| 26 | std::string provider_name; |
| 27 | std::string model_name; |
| 28 | ai::GenerateResult result; |
| 29 | std::chrono::milliseconds response_time; |
| 30 | bool success; |
| 31 | }; |
| 32 | |
| 33 | ProviderResult test_provider(const std::string& provider_name, |
| 34 | const std::string& model, |
nothing calls this directly
no outgoing calls
no test coverage detected