| name: "PlanReflect_Flow" |
| verbose: True |
| description: "ToDO: add description" |
|
|
| reset_generator_every_round: False |
| reset_critic_every_round: True |
| max_rounds: 2 |
| early_exit_key: "end_of_interaction" |
|
|
| input_data_transformations: [] |
| input_keys: |
| - "problem_description" |
| - "input_description" |
| - "output_description" |
| - "io_examples_and_explanation" |
|
|
| output_data_transformations: |
| - _target_: flows.data_transformations.KeyRename |
| old_key2new_key: |
| raw_response.plan: "plan" |
| output_keys: |
| - "plan" |
|
|
| subflows_config: |
| - _target_: martinjosifoski.CC_flows.CF_Plan.instantiate_from_default_config |
| overrides: |
| name: "PlanGenerator_Flow" |
| model_name: "gpt-4" |
| input_data_transformations: |
| - _target_: flows.data_transformations.KeyRename |
| old_key2new_key: |
| plan_reflect_message: "query" |
| output_data_transformations: |
| - _target_: flows.data_transformations.RegexFirstOccurrenceExtractor |
| regex: '(?<=Conceptual solution)([\s\S]*?)(?=\n\n# [A-Z]|\Z)' |
| regex_fallback: |
| - '(?<=Conceptual solution:)([\s\S]*?)(?=\n\n# [A-Z]|\Z)' |
| output_key: "plan" |
| strip: True |
| assert_unique: True |
| verbose: True |
| - _target_: flows.data_transformations.EndOfInteraction |
| end_of_interaction_string: "Final answer" |
| output_key: "end_of_interaction" |
| verbose: True |
| output_keys: |
| - "plan" |
| - "end_of_interaction" |
|
|
| - _target_: martinjosifoski.CC_flows.FixedReply_PlanReflect.instantiate_from_default_config |
|
|
|
|