Commit
•
df98f2b
1
Parent(s):
3c7fd6a
propagate flows changes (#1)
Browse files- propagate flows changes (a8993124ad9204223f63ad3d5f29f2fdcb6817c2)
Co-authored-by: Yeeef <[email protected]>
- CF_CodeCollab.py +1 -1
- CF_CodeDebug.py +1 -1
- CF_CodeDebug.yaml +2 -2
- CF_CodeDebugCollab.py +1 -1
- CF_CodeDebugCritic.yaml +2 -2
- CF_CodeReflect.py +1 -1
- FixedReply_CodeReflect.py +1 -1
CF_CodeCollab.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from flows.
|
2 |
|
3 |
|
4 |
class CF_CodeCollab(GeneratorCriticFlow):
|
|
|
1 |
+
from flows.application_flows import GeneratorCriticFlow
|
2 |
|
3 |
|
4 |
class CF_CodeCollab(GeneratorCriticFlow):
|
CF_CodeDebug.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from flows.
|
2 |
|
3 |
|
4 |
class CF_CodeDebug(GeneratorCriticFlow):
|
|
|
1 |
+
from flows.application_flows import GeneratorCriticFlow
|
2 |
|
3 |
|
4 |
class CF_CodeDebug(GeneratorCriticFlow):
|
CF_CodeDebug.yaml
CHANGED
@@ -89,10 +89,10 @@ topology:
|
|
89 |
output_interface:
|
90 |
_target_: flows.interfaces.KeyInterface
|
91 |
additional_transformations:
|
92 |
-
- _target_:
|
93 |
input_key: "public_tests_results"
|
94 |
output_key: "all_tests_passed"
|
95 |
-
- _target_:
|
96 |
output_key: "testing_results_summary"
|
97 |
|
98 |
single_test_error_message: True
|
|
|
89 |
output_interface:
|
90 |
_target_: flows.interfaces.KeyInterface
|
91 |
additional_transformations:
|
92 |
+
- _target_: .src.data_transformations.CorrectnessFlag
|
93 |
input_key: "public_tests_results"
|
94 |
output_key: "all_tests_passed"
|
95 |
+
- _target_: .src.data_transformations.TestingResultsSummaryGeneration
|
96 |
output_key: "testing_results_summary"
|
97 |
|
98 |
single_test_error_message: True
|
CF_CodeDebugCollab.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from flows.
|
2 |
|
3 |
|
4 |
class CF_CodeDebugCollab(GeneratorCriticFlow):
|
|
|
1 |
+
from flows.application_flows import GeneratorCriticFlow
|
2 |
|
3 |
|
4 |
class CF_CodeDebugCollab(GeneratorCriticFlow):
|
CF_CodeDebugCritic.yaml
CHANGED
@@ -42,10 +42,10 @@ topology:
|
|
42 |
output_interface:
|
43 |
_target_: flows.interfaces.KeyInterface
|
44 |
additional_transformations:
|
45 |
-
- _target_:
|
46 |
input_key: "public_tests_results"
|
47 |
output_key: "all_tests_passed"
|
48 |
-
- _target_:
|
49 |
output_key: "testing_results_summary"
|
50 |
|
51 |
single_test_error_message: True
|
|
|
42 |
output_interface:
|
43 |
_target_: flows.interfaces.KeyInterface
|
44 |
additional_transformations:
|
45 |
+
- _target_: .src.data_transformations.CorrectnessFlag
|
46 |
input_key: "public_tests_results"
|
47 |
output_key: "all_tests_passed"
|
48 |
+
- _target_: .src.data_transformations.TestingResultsSummaryGeneration
|
49 |
output_key: "testing_results_summary"
|
50 |
|
51 |
single_test_error_message: True
|
CF_CodeReflect.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from flows.
|
2 |
|
3 |
|
4 |
class CF_CodeReflect(GeneratorCriticFlow):
|
|
|
1 |
+
from flows.application_flows import GeneratorCriticFlow
|
2 |
|
3 |
|
4 |
class CF_CodeReflect(GeneratorCriticFlow):
|
FixedReply_CodeReflect.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from flows.
|
2 |
|
3 |
|
4 |
class FixedReply_CodeReflect(FixedReplyFlow):
|
|
|
1 |
+
from flows.application_flows import FixedReplyFlow
|
2 |
|
3 |
|
4 |
class FixedReply_CodeReflect(FixedReplyFlow):
|