| 107 | } |
| 108 | |
| 109 | GenerateOptions AnthropicTestFixture::createAdvancedAnthropicOptions() { |
| 110 | GenerateOptions options(kTestAnthropicModel, "System prompt", kTestPrompt); |
| 111 | options.temperature = 0.7; |
| 112 | options.max_tokens = 100; |
| 113 | options.top_p = 0.9; |
| 114 | // Note: top_k not available in current GenerateOptions |
| 115 | return options; |
| 116 | } |
| 117 | |
| 118 | nlohmann::json AnthropicTestFixture::createValidAnthropicResponse() { |
| 119 | return nlohmann::json{ |
nothing calls this directly
no outgoing calls
no test coverage detected