feat(Update models):

This commit is contained in:
Alexander Myasoedov
2025-01-23 00:01:54 +02:00
parent bf5dfcd661
commit dbec27d3aa
4 changed files with 30 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
class OperatorToolBox:
def __init__(self, llm_spec, datasets):
self.llm_spec = llm_spec
self.datasets = datasets
def get_spec(self):
return self.llm_spec
def get_datasets(self):
return self.datasets
def validate(self):
# Validate the tool box
pass
def stop(self):
# Stop the tool box
pass
def run(self):
# Run the tool box
pass
def get_results(self):
# Get the results
pass
def get_failures(self):
# Handle failure
pass
Binary file not shown.