Skip to content

Commit

Permalink
fix(artifact): fix advanced index pipeline (#135)
Browse files Browse the repository at this point in the history
Because

there is a bug in pipeline

This commit

try to use latest version of pipleine for indexing
  • Loading branch information
Yougigun authored Dec 5, 2024
1 parent 26d20c8 commit be3010e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/service/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"}},
},
},
},
Expand Down

0 comments on commit be3010e

Please sign in to comment.