Merge pull request #255 from francisco-perez-sorrosal/fix-typo

Fix uppercase typo in code_agents.ipynb in party theme selection
This commit is contained in:
burtenshaw
2025-03-04 11:38:12 +01:00
committed by GitHub

View File

@@ -3509,7 +3509,7 @@
" inputs = {\n",
" \"category\": {\n",
" \"type\": \"string\",\n",
" \"description\": \"The type of superhero party (e.g., 'classic heroes', 'villain masquerade', 'futuristic Gotham').\",\n",
" \"description\": \"The type of superhero party (e.g., 'classic heroes', 'villain masquerade', 'futuristic gotham').\",\n",
" }\n",
" }\n",
"\n",
@@ -3519,10 +3519,10 @@
" themes = {\n",
" \"classic heroes\": \"Justice League Gala: Guests come dressed as their favorite DC heroes with themed cocktails like 'The Kryptonite Punch'.\",\n",
" \"villain masquerade\": \"Gotham Rogues' Ball: A mysterious masquerade where guests dress as classic Batman villains.\",\n",
" \"futuristic Gotham\": \"Neo-Gotham Night: A cyberpunk-style party inspired by Batman Beyond, with neon decorations and futuristic gadgets.\"\n",
" \"futuristic gotham\": \"Neo-Gotham Night: A cyberpunk-style party inspired by Batman Beyond, with neon decorations and futuristic gadgets.\"\n",
" }\n",
"\n",
" return themes.get(category.lower(), \"Themed party idea not found. Try 'classic heroes', 'villain masquerade', or 'futuristic Gotham'.\")\n",
" return themes.get(category.lower(), \"Themed party idea not found. Try 'classic heroes', 'villain masquerade', or 'futuristic gotham'.\")\n",
"\n",
"\n",
"# Alfred, the butler, preparing the menu for the party\n",