@@ -290,7 +290,6 @@ def create_initial_customer_interaction_node() -> NodeConfig:
290
290
"description" : "Check store location and hours of operation" ,
291
291
"handler" : check_store_location_and_hours_of_operation ,
292
292
"transition_callback" : transition_after_customer_task ,
293
- "parameters" : None ,
294
293
},
295
294
},
296
295
{
@@ -300,15 +299,13 @@ def create_initial_customer_interaction_node() -> NodeConfig:
300
299
"description" : "Start placing an order" ,
301
300
"handler" : start_order ,
302
301
"transition_callback" : transition_after_customer_task ,
303
- "parameters" : None ,
304
302
},
305
303
},
306
304
{
307
305
"type" : "function" ,
308
306
"function" : {
309
307
"name" : "end_customer_conversation" ,
310
308
"description" : "End the conversation" ,
311
- "parameters" : None ,
312
309
"transition_callback" : end_customer_conversation ,
313
310
},
314
311
},
@@ -343,7 +340,6 @@ def create_continued_customer_interaction_node() -> NodeConfig:
343
340
"description" : "Check store location and hours of operation" ,
344
341
"handler" : check_store_location_and_hours_of_operation ,
345
342
"transition_callback" : transition_after_customer_task ,
346
- "parameters" : None ,
347
343
},
348
344
},
349
345
{
@@ -353,15 +349,13 @@ def create_continued_customer_interaction_node() -> NodeConfig:
353
349
"description" : "Start placing an order" ,
354
350
"handler" : start_order ,
355
351
"transition_callback" : transition_after_customer_task ,
356
- "parameters" : None ,
357
352
},
358
353
},
359
354
{
360
355
"type" : "function" ,
361
356
"function" : {
362
357
"name" : "end_customer_conversation" ,
363
358
"description" : "End the conversation" ,
364
- "parameters" : None ,
365
359
"transition_callback" : end_customer_conversation ,
366
360
},
367
361
},
@@ -418,7 +412,6 @@ def create_human_agent_interaction_node() -> NodeConfig:
418
412
"function" : {
419
413
"name" : "end_human_agent_conversation" ,
420
414
"description" : "Connect the human agent to the customer" ,
421
- "parameters" : None ,
422
415
"transition_callback" : end_human_agent_conversation ,
423
416
},
424
417
}
0 commit comments