Skip to content

Commit ff6121f

Browse files
committed
fix: improve instruction when skills_mode is local
1 parent a7fd046 commit ff6121f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

veadk/agent.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,11 @@ def load_skills(self):
361361
"You can use the skills by calling the `execute_skills` tool.\n\n"
362362
)
363363

364+
if self.skills_mode == "local":
365+
self.instruction += (
366+
"You can use the skills by calling the `skills_tool` tool.\n\n"
367+
)
368+
364369
self.tools.append(SkillsToolset(skills, self.skills_mode))
365370
else:
366371
logger.warning("No skills loaded.")

0 commit comments

Comments
 (0)