| 147 | std::cout << "Test 4: Performance and cost analysis\n\n"; |
| 148 | |
| 149 | struct ModelStats { |
| 150 | std::string name; |
| 151 | int successful_calls = 0; |
| 152 | int total_calls = 0; |
| 153 | int total_tokens = 0; |
| 154 | std::chrono::milliseconds total_time{0}; |
| 155 | }; |
| 156 | |
| 157 | std::vector<ModelStats> stats; |
| 158 |
nothing calls this directly
no outgoing calls
no test coverage detected