-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "LLMDebugger"] | ||
path = LLMDebugger | ||
url = https://github.com/FloridSleeves/LLMDebugger.git |
Submodule LLMDebugger
added at
49ac19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
{ | ||
"name": "cot", | ||
"count": 1, | ||
"check": true, | ||
"check": 3, | ||
"post_processing": "extract_python" | ||
} | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,33 @@ | ||
from . import minion | ||
from . import worker | ||
from . import check_route | ||
from . import check | ||
from minion.main.worker import ( | ||
WorkerMinion, | ||
NativeMinion, | ||
CotMinion, | ||
PythonMinion, | ||
MathMinion, | ||
PlanMinion, | ||
MathPlanMinion, | ||
MultiPlanMinion, | ||
OptillmMinion, | ||
) | ||
|
||
try: | ||
from minion.main.ldb_worker import LDBMinion | ||
HAS_LDB = True | ||
except ImportError: | ||
HAS_LDB = False | ||
|
||
__all__ = [ | ||
'WorkerMinion', | ||
'NativeMinion', | ||
'CotMinion', | ||
'PythonMinion', | ||
'MathMinion', | ||
'PlanMinion', | ||
'MathPlanMinion', | ||
'MultiPlanMinion', | ||
'OptillmMinion', | ||
] | ||
|
||
if HAS_LDB: | ||
__all__.append('LDBMinion') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters