test / patched_tooluniverse.py
Ali2206's picture
Create patched_tooluniverse.py
c10dd55 verified
raw
history blame contribute delete
327 Bytes
from tooluniverse import ToolUniverse as BaseToolUniverse
class PatchedToolUniverse(BaseToolUniverse):
def infer_tool_embeddings(self, *args, **kwargs):
# Call original method but DO NOT exit
super().infer_tool_embeddings(*args, **kwargs)
print("βœ… Tool embedding complete β€” no exit() called.")