Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/node-type-registry/src/data/search-unified.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ export const SearchUnified: NodeTypeDefinition = {
},
chunking_task_name: {
type: 'string',
format: 'function-ref',
description: 'Task identifier for the chunking job queue',
default: 'embedding:generate_chunks'
}
Expand Down
1 change: 1 addition & 0 deletions packages/node-type-registry/src/process/chunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export const ProcessChunks: NodeTypeDefinition = {
},
chunking_task_name: {
type: 'string',
format: 'function-ref',
description: 'Task identifier for the chunking job queue',
default: 'embedding:generate_chunks'
}
Expand Down
1 change: 1 addition & 0 deletions packages/node-type-registry/src/process/extraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const ProcessExtraction: NodeTypeDefinition = {
// ── Job routing ───────────────────────────────────────────────
task_identifier: {
type: 'string',
format: 'function-ref',
description: 'Job task identifier for the extraction worker',
default: 'document:extract_file_text'
},
Expand Down
2 changes: 2 additions & 0 deletions packages/node-type-registry/src/process/file-embedding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export const ProcessFileEmbedding: NodeTypeDefinition = {
// ── Job routing ────────────────────────────────────────────────
task_identifier: {
type: 'string',
format: 'function-ref',
description:
'Job task identifier for the worker. In direct mode this is the ' +
'embedding worker; in extract mode this is the extraction worker.',
Expand Down Expand Up @@ -252,6 +253,7 @@ export const ProcessFileEmbedding: NodeTypeDefinition = {
},
chunking_task_name: {
type: 'string',
format: 'function-ref',
description: 'Task identifier for the chunking job queue',
default: 'embedding:generate_chunks'
}
Expand Down
3 changes: 2 additions & 1 deletion packages/node-type-registry/src/process/image-embedding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const ProcessImageEmbedding: NodeTypeDefinition = {
// ── Job routing ────────────────────────────────────────────────
task_identifier: {
type: 'string',
format: 'function-ref',
description: 'Job task identifier for the image embedding worker',
default: 'embedding:process_image_embedding'
},
Expand Down Expand Up @@ -187,7 +188,7 @@ export const ProcessImageEmbedding: NodeTypeDefinition = {
},
metadata_fields: { type: 'object' },
enqueue_chunking_job: { type: 'boolean', default: true },
chunking_task_name: { type: 'string', default: 'embedding:generate_chunks' }
chunking_task_name: { type: 'string', format: 'function-ref', default: 'embedding:generate_chunks' }
}
}
}
Expand Down
1 change: 1 addition & 0 deletions packages/node-type-registry/src/process/image-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const ProcessImageVersions: NodeTypeDefinition = {
// ── Job routing ───────────────────────────────────────────────
task_identifier: {
type: 'string',
format: 'function-ref',
description: 'Job task identifier for the image processing worker',
default: 'image:process_image_versions'
},
Expand Down
Loading