Skip to content

Commit 56dac47

Browse files
committed
fix(parallel): keep processor subBlock ID for backwards compatibility
1 parent a69d030 commit 56dac47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/sim/blocks/blocks/parallel.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const ParallelBlock: BlockConfig<ToolResponse> = {
139139
mode: 'advanced',
140140
},
141141
{
142-
id: 'research_processor',
142+
id: 'processor',
143143
title: 'Research Processor',
144144
type: 'dropdown',
145145
options: [
@@ -225,7 +225,7 @@ export const ParallelBlock: BlockConfig<ToolResponse> = {
225225

226226
if (operation === 'deep_research') {
227227
result.input = params.research_input
228-
if (params.research_processor) result.processor = params.research_processor
228+
if (params.processor) result.processor = params.processor
229229
}
230230

231231
return result
@@ -246,7 +246,7 @@ export const ParallelBlock: BlockConfig<ToolResponse> = {
246246
search_include_domains: { type: 'string', description: 'Domains to include (search)' },
247247
search_exclude_domains: { type: 'string', description: 'Domains to exclude (search)' },
248248
search_mode: { type: 'string', description: 'Search mode (one-shot, agentic, fast)' },
249-
research_processor: { type: 'string', description: 'Research processing tier' },
249+
processor: { type: 'string', description: 'Research processing tier' },
250250
max_results: { type: 'number', description: 'Maximum number of results' },
251251
max_chars_per_result: { type: 'number', description: 'Maximum characters per result' },
252252
apiKey: { type: 'string', description: 'Parallel AI API key' },

0 commit comments

Comments
 (0)