|
name: "InteractivePlanGenFlow" |
|
description: "Generate step by step plan as goal requests, open up a temp file for the user to examine and provide feedback" |
|
|
|
_target_: flow_modules.aiflows.InteractivePlanGenFlowModule.InteractivePlanGenFlow.instantiate_from_default_config |
|
|
|
input_interface: |
|
- "goal" |
|
- "plan_file_location" |
|
|
|
output_interface: |
|
- "plan" |
|
- "feedback" |
|
- "temp_plan_file_location" |
|
|
|
subflows_config: |
|
PlanGenerator: |
|
_target_: flow_modules.aiflows.PlanGeneratorFlowModule.PlanGeneratorAtomicFlow.instantiate_from_default_config |
|
backend: |
|
api_infos: ??? |
|
model_name: |
|
openai: gpt-4 |
|
azure: azure/gpt-4 |
|
|
|
PlanFileEditor: |
|
_target_: flow_modules.aiflows.PlanFileEditFlowModule.PlanFileEditAtomicFlow.instantiate_from_default_config |
|
|
|
ParseFeedback: |
|
_target_: flow_modules.aiflows.ParseFeedbackFlowModule.ParseFeedbackAtomicFlow.instantiate_from_default_config |
|
input_interface: |
|
- "temp_plan_file_location" |
|
output_interface: |
|
- "plan" |
|
- "feedback" |
|
|
|
early_exit_key: "EARLY_EXIT" |
|
|
|
topology: |
|
- goal: "Generate plan to achieve the task." |
|
input_interface: |
|
_target_: aiflows.interfaces.KeyInterface |
|
additional_transformations: |
|
- _target_: aiflows.data_transformations.KeyMatchInput |
|
flow: PlanGenerator |
|
reset: false |
|
|
|
- goal: "Write the plan generated to a temp file with instructions to the user" |
|
input_interface: |
|
_target_: aiflows.interfaces.KeyInterface |
|
additional_transformations: |
|
- _target_: aiflows.data_transformations.KeyMatchInput |
|
flow: PlanFileEditor |
|
reset: false |
|
|
|
- goal: "Parse user feedback from the temp file" |
|
input_interface: |
|
_target_: aiflows.interfaces.KeyInterface |
|
additional_transformations: |
|
- _target_: aiflows.data_transformations.KeyMatchInput |
|
flow: ParseFeedback |
|
reset: false |