We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b3453a commit 3534e0fCopy full SHA for 3534e0f
1 file changed
veadk/agent.py
@@ -490,11 +490,12 @@ def load_skills(self):
490
"You can use the skills by calling the `skills_tool` tool.\n\n"
491
)
492
493
- self.tools.append(SkillsToolset(self.skills_dict, self.skills_mode))
494
else:
495
logger.warning("No skills loaded.")
496
497
- if self.enable_dynamic_load_skills and self.skills_dict:
+ self.tools.append(SkillsToolset(self.skills_dict, self.skills_mode))
+
498
+ if self.enable_dynamic_load_skills:
499
if self.before_agent_callback:
500
if isinstance(self.before_agent_callback, list):
501
self.before_agent_callback.append(check_skills)
0 commit comments