| 101 | } |
| 102 | |
| 103 | GenerateOptions AnthropicTestFixture::createBasicAnthropicOptions() { |
| 104 | GenerateOptions options(kTestAnthropicModel, kTestPrompt); |
| 105 | options.max_tokens = 100; // Required for Anthropic |
| 106 | return options; |
| 107 | } |
| 108 | |
| 109 | GenerateOptions AnthropicTestFixture::createAdvancedAnthropicOptions() { |
| 110 | GenerateOptions options(kTestAnthropicModel, "System prompt", kTestPrompt); |
nothing calls this directly
no outgoing calls
no test coverage detected