DEFAULT CUSTOM SKILL CONTENT
const
DEFAULT_CUSTOM_SKILL_CONTENT: "\n\"\"\"Replace this with your code.\n\nmake sure a function with the same name\nas the skill is defined in the code.\n\"\"\"\n\n# Example:\n# skill name: 'new_skill'\n#\n# def new_skill() -> str:\n# \"\"\"Skill entry point.\"\"\"\n# return \"Hello, world!\"\n#\n# Add your code below\n\ndef new_skill() -> None:\n \"\"\"Skill entry point.\"\"\"\n ...\n"
Defined in: src/waldiez/models/Skill/SkillData.ts:35