From f17c9d7f3312a06b775a6e279b8f3c9d3fc6e44d Mon Sep 17 00:00:00 2001 From: "gary.y" Date: Thu, 5 Dec 2024 01:16:43 +0800 Subject: [PATCH] fix(artifact): fix advanced index pipeline --- pkg/service/pipeline.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/service/pipeline.go b/pkg/service/pipeline.go index f304ddf..83debed 100644 --- a/pkg/service/pipeline.go +++ b/pkg/service/pipeline.go @@ -30,7 +30,7 @@ const DocToMDVersion = "v1.1.1" // Note: this pipeline is for the new indexing pipeline having convert_result or convert_result2 const ConvertDocToMDPipelineID2 = "indexing-advanced-convert-doc" -const DocToMDVersion2 = "v1.3.0" +const DocToMDVersion2 = "v1.3.1" const ChunkMdPipelineID = "indexing-split-markdown" const ChunkMdVersion = "v2.0.0" @@ -107,6 +107,7 @@ func (s *Service) ConvertToMDPipeForFilesInPersistentCatalog(ctx context.Context { Fields: map[string]*structpb.Value{ "document_input": {Kind: &structpb.Value_StringValue{StringValue: prefix + fileBase64}}, + "vlm_model": {Kind: &structpb.Value_StringValue{StringValue: "gpt-4o"}}, }, }, },