| 292 | } |
| 293 | |
| 294 | GenerateOptions TestDataGenerator::createEdgeCaseOptions() { |
| 295 | GenerateOptions options("gpt-4o", ""); // Empty prompt |
| 296 | options.temperature = 2.0; // Maximum temperature |
| 297 | options.max_tokens = 1; // Minimum tokens |
| 298 | options.top_p = 1.0; // Maximum top_p |
| 299 | options.frequency_penalty = 2.0; // Maximum penalty |
| 300 | options.presence_penalty = -2.0; // Minimum penalty |
| 301 | return options; |
| 302 | } |
| 303 | |
| 304 | std::string TestDataGenerator::createLargePrompt(size_t size) { |
| 305 | std::string large_prompt; |
nothing calls this directly
no outgoing calls
no test coverage detected