Commit
·
8998720
1
Parent(s):
17ab974
FixedReplyAtomicFlow -> FixedReplyFlow (#4)
Browse files- FixedReplyAtomicFlow -> FixedReplyFlow (90881ccd1ae7ca62c6835e89de8694998047c6b8)
Co-authored-by: Yeeef <yeeef@users.noreply.huggingface.co>
- FixedReply_CodeReflect.py +2 -2
- FixedReply_PlanReflect.py +2 -2
FixedReply_CodeReflect.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
from flows.base_flows import
|
2 |
|
3 |
|
4 |
-
class FixedReply_CodeReflect(
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
|
|
1 |
+
from flows.base_flows import FixedReplyFlow
|
2 |
|
3 |
|
4 |
+
class FixedReply_CodeReflect(FixedReplyFlow):
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
FixedReply_PlanReflect.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
from flows.base_flows import
|
2 |
|
3 |
|
4 |
-
class FixedReply_PlanReflect(
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
|
|
1 |
+
from flows.base_flows import FixedReplyFlow
|
2 |
|
3 |
|
4 |
+
class FixedReply_PlanReflect(FixedReplyFlow):
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|