@looopy-ai/core 2.1.23 → 2.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -131,7 +131,7 @@ export function agentAcademy(skills, options) {
|
|
|
131
131
|
}
|
|
132
132
|
const defaultPrompt = (skills) => {
|
|
133
133
|
const skillList = skills
|
|
134
|
-
.map((skill) => `- **${skill.name}**: ${
|
|
134
|
+
.map((skill) => `- **${skill.name}**: ${skill.description || 'A useful skill.'}`)
|
|
135
135
|
.join('\n');
|
|
136
136
|
return `You can learn new skills using the learn_skill tool. The available skills are:\n\n${skillList}\n\nTo learn a skill, call the learn_skill tool with the name of the skill you want to learn.`;
|
|
137
137
|
};
|