Skip to content

Commit dbec27d

Browse files
committed
feat(Update models):
1 parent bf5dfcd commit dbec27d

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
class OperatorToolBox:
2+
def __init__(self, llm_spec, datasets):
3+
self.llm_spec = llm_spec
4+
self.datasets = datasets
5+
6+
def get_spec(self):
7+
return self.llm_spec
8+
9+
def get_datasets(self):
10+
return self.datasets
11+
12+
def validate(self):
13+
# Validate the tool box
14+
pass
15+
16+
def stop(self):
17+
# Stop the tool box
18+
pass
19+
20+
def run(self):
21+
# Run the tool box
22+
pass
23+
24+
def get_results(self):
25+
# Get the results
26+
pass
27+
28+
def get_failures(self):
29+
# Handle failure
30+
pass
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)