Skip to content

Commit

Permalink
feat(Update models):
Browse files Browse the repository at this point in the history
  • Loading branch information
msoedov committed Jan 22, 2025
1 parent bf5dfcd commit dbec27d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions agentic_security/probe_actor/operator.py
Original file line number Diff line number Diff line change
@@ -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 modified agentic_security/refusal_classifier/oneclass_svm_model.joblib
Binary file not shown.
Binary file modified agentic_security/refusal_classifier/scaler.joblib
Binary file not shown.
Binary file modified agentic_security/refusal_classifier/tfidf_vectorizer.joblib
Binary file not shown.

0 comments on commit dbec27d

Please sign in to comment.