Fix Tool.from_hub with correct file path
This commit is contained in:
parent
20aa691b26
commit
4ac9050368
|
@ -506,10 +506,10 @@ class Tool:
|
||||||
with open(module_path, "w") as f:
|
with open(module_path, "w") as f:
|
||||||
f.write(tool_code)
|
f.write(tool_code)
|
||||||
|
|
||||||
print("TOOLCODE:\n", tool_code)
|
print("TOOL CODE:\n", tool_code)
|
||||||
|
|
||||||
# Load module from file path
|
# Load module from file path
|
||||||
spec = importlib.util.spec_from_file_location("custom_tool", module_path)
|
spec = importlib.util.spec_from_file_location("tool", module_path)
|
||||||
module = importlib.util.module_from_spec(spec)
|
module = importlib.util.module_from_spec(spec)
|
||||||
spec.loader.exec_module(module)
|
spec.loader.exec_module(module)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue