We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5737b0f commit 2ed3a76Copy full SHA for 2ed3a76
src/cpp/src/visual_language/pipeline.cpp
@@ -263,7 +263,7 @@ class VLMPipeline::VLMPipelineImpl : public VLMPipelineBase{
263
}
264
265
void start_chat(const std::string& system_message) override {
266
- OPENVINO_ASSERT(!m_is_npu && "start_chat() isn't supported in VLMPipeline for NPU device");
+ OPENVINO_ASSERT(!m_is_npu, "start_chat() isn't supported in VLMPipeline for NPU device");
267
m_is_chat_conversation = true;
268
bool have_state = 0 != m_language.get_tensor("attention_mask").get_size();
269
if (have_state) {
0 commit comments