| 77 | } |
| 78 | |
| 79 | Messages OpenAITestFixture::createSampleConversation() { |
| 80 | return {createSystemMessage("You are a helpful assistant."), |
| 81 | createUserMessage("Hello!"), |
| 82 | createAssistantMessage("Hi there! How can I help you?"), |
| 83 | createUserMessage("What's the weather like?")}; |
| 84 | } |
| 85 | |
| 86 | Message OpenAITestFixture::createUserMessage(const std::string& content) { |
| 87 | return Message::user(content); |
nothing calls this directly
no outgoing calls
no test coverage detected