| 138 | } |
| 139 | |
| 140 | nlohmann::json AnthropicTestFixture::createAnthropicStreamResponse() { |
| 141 | return nlohmann::json{{"type", "content_block_delta"}, |
| 142 | {"index", 0}, |
| 143 | {"delta", {{"type", "text_delta"}, {"text", "Hello"}}}}; |
| 144 | } |
| 145 | |
| 146 | Messages AnthropicTestFixture::createSampleAnthropicConversation() { |
| 147 | return {createAnthropicSystemMessage("You are a helpful assistant."), |
nothing calls this directly
no outgoing calls
no test coverage detected