File size: 1,525 Bytes
9741e89 4961d67 f748a3e e54a1f1 6c473f5 f748a3e e54a1f1 6c473f5 9741e89 e233c57 9741e89 6fffc74 f748a3e 6fffc74 9741e89 4961d67 6fffc74 e233c57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
name: "CodeReflect_Flow"
verbose: True
description: "ToDO: add description"
reset_generator_every_round: False
reset_critic_every_round: True
max_rounds: 2 # ToDo: To increase to 4
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.code: "code"
output_keys:
- "code"
subflows_config:
- _target_: ${oc.env:CC_flows_module}.CF_Code.instantiate_from_default_config
overrides:
name: "CodeGenerator"
model_name: "gpt-4"
input_data_transformations:
- _target_: flows.data_transformations.KeyRename
old_key2new_key:
code_reflect_message: "query"
output_data_transformations:
- _target_: flows.data_transformations.RegexFirstOccurrenceExtractor
regex: '(?<=```python)([\s\S]*?)(?=```)'
regex_fallback: '(?<=```)([\s\S]*?)(?=```)'
output_key: "code"
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:
- "code"
- "end_of_interaction"
- _target_: ${oc.env:CC_flows_module}.FixedReply_CodeReflect.instantiate_from_default_config
|