aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/run-agent.py
diff options
context:
space:
mode:
authorsigoden <sigoden@gmail.com>2025-02-10 14:47:37 +0800
committerGitHub <noreply@github.com>2025-02-10 14:47:37 +0800
commitfad2c60605b67a44dc6d242cd99f6f79f1bd4b13 (patch)
tree1e09d16e378c273ad2d3668e329c80aeaf6d741c /scripts/run-agent.py
parente4f85a056cdd2081374e3923af660942363f1133 (diff)
downloadllm-functions-docker-fad2c60605b67a44dc6d242cd99f6f79f1bd4b13.tar.gz
refactor: improve run-agent/run-agent scripts (#160)
Diffstat (limited to 'scripts/run-agent.py')
-rwxr-xr-xscripts/run-agent.py13
1 files changed, 5 insertions, 8 deletions
diff --git a/scripts/run-agent.py b/scripts/run-agent.py
index 9367ea5..7458869 100755
--- a/scripts/run-agent.py
+++ b/scripts/run-agent.py
@@ -94,14 +94,11 @@ def load_env(file_path):
def run(agent_name, agent_path, agent_func, agent_data):
- try:
- spec = importlib.util.spec_from_file_location(
- os.path.basename(agent_path), agent_path
- )
- mod = importlib.util.module_from_spec(spec)
- spec.loader.exec_module(mod)
- except:
- raise Exception(f"Unable to load agent tools at '{agent_path}'")
+ spec = importlib.util.spec_from_file_location(
+ os.path.basename(agent_path), agent_path
+ )
+ mod = importlib.util.module_from_spec(spec)
+ spec.loader.exec_module(mod)
if not hasattr(mod, agent_func):
raise Exception(f"Not module function '{agent_func}' at '{agent_path}'")