CC_flows / CF_CodeCollab.yaml
martinjosifoski's picture
Bring CF flows up-to-date with library.
4961d67
raw
history blame
1.83 kB
name: "CodeCollab_Flow"
verbose: True
description: "ToDO: add description"
input_keys:
- "problem_description"
- "input_description"
- "output_description"
- "io_examples_and_explanation"
output_keys:
- "code"
- "end_of_interaction"
reset_generator_every_round: False
reset_critic_every_round: True
max_rounds: 2 # ToDO: To increase to 4
early_exit_key: "end_of_interaction"
subflows_config:
- _target_: flows.flow_verse.instantiate_flow
repository_id: ${oc.env:CC_FLOWS}
class_name: CF_Code
overrides:
name: "CodeGenerator"
human_message_prompt_template:
_target_: langchain.PromptTemplate
template: |2-
# Feedback on the last proposed solution
{{query}}
Consider the original problem statement, the last proposed solution and the provided feedback. Does the solution need to be updated? If so, provide the corrected version of the code in the following format:
```python
{{code_placeholder}}
```
otherwise, reply:
"Final answer."
input_variables:
- query
partial_variables:
code_placeholder: "{{python_code}}"
template_format: jinja2
response_annotators:
end_of_interaction_annotator:
_target_: flows.message_annotators.EndOfInteraction
end_of_interaction_message: "Final answer"
key: "end_of_interaction"
verbose: True
output_keys:
- "code"
- "end_of_interaction"
- _target_: flows.flow_verse.instantiate_flow
repository_id: ${oc.env:CC_FLOWS}
class_name: CF_CodeCritic
overrides:
name: CodeCritic
outputs_transformations:
- _target_: flows.outputs_transformations.Rename
old_key2new_key:
raw_response: "query"