@@ -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