| 193 | } |
| 194 | |
| 195 | nlohmann::json TestDataGenerator::createMinimalValidResponse() { |
| 196 | return nlohmann::json{ |
| 197 | {"id", "test"}, |
| 198 | {"choices", |
| 199 | nlohmann::json::array({{{"message", {{"content", "Response"}}}, |
| 200 | {"finish_reason", "stop"}}})}}; |
| 201 | } |
| 202 | |
| 203 | nlohmann::json TestDataGenerator::createFullValidResponse() { |
| 204 | return nlohmann::json{ |
nothing calls this directly
no outgoing calls
no test coverage detected