fix: Update sample skills agent to use weather-skill instead of weather_skill

Co-authored-by: Kathy Wu <wukathy@google.com>
PiperOrigin-RevId: 874796345
This commit is contained in:
Kathy Wu
2026-02-24 14:35:11 -08:00
committed by Copybara-Service
parent 121d277416
commit 8f5428150d
3 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ greeting_skill = models.Skill(
)
weather_skill = load_skill_from_dir(
pathlib.Path(__file__).parent / "skills" / "weather_skill"
pathlib.Path(__file__).parent / "skills" / "weather-skill"
)
my_skill_toolset = SkillToolset(skills=[greeting_skill, weather_skill])