Tachi67 commited on
Commit
61efe8b
·
1 Parent(s): a09a505

Update ControllerAtomicFlow.py

Browse files
Files changed (1) hide show
  1. ControllerAtomicFlow.py +2 -2
ControllerAtomicFlow.py CHANGED
@@ -4,7 +4,7 @@ import json
4
  import os.path
5
  from copy import deepcopy
6
  from typing import Any, Dict, List
7
- from flow_modules.aiflows.OpenAIChatFlowModule import OpenAIChatAtomicFlow
8
 
9
  from dataclasses import dataclass
10
 
@@ -16,7 +16,7 @@ class Command:
16
  input_args: List[str]
17
 
18
 
19
- class ControllerAtomicFlow(OpenAIChatAtomicFlow):
20
  def __init__(
21
  self,
22
  commands: List[Command],
 
4
  import os.path
5
  from copy import deepcopy
6
  from typing import Any, Dict, List
7
+ from flow_modules.aiflows.ChatFlowModule import ChatAtomicFlow
8
 
9
  from dataclasses import dataclass
10
 
 
16
  input_args: List[str]
17
 
18
 
19
+ class ControllerAtomicFlow(ChatAtomicFlow):
20
  def __init__(
21
  self,
22
  commands: List[Command],