Spaces:
Sleeping
Sleeping
File size: 1,046 Bytes
a6a32a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from typing import Any, Optional
from smolagents.tools import Tool
class PizzaPartyThemeTool(Tool):
name = "pizza_party_theme_generator"
description = """
This tool suggests creative pizza-themed party ideas based on a category.
It returns a unique party theme idea."""
inputs = {'category': {'type': 'string', 'description': "The type of pizza party (e.g., 'cheese', 'pepperoni','combination')."}}
output_type = "string"
def forward(self, category: str):
themes = {
"cheese": "Super Cheezy: Guests come dressed as their favorite type of cheese",
"pepperoni": "Pepperoni Ball: A mysterious masquerade where guests dress as pepperoni, sausage, or salami.",
"combination": "Combination Night: Guests dress as freely as they wish, combining all their ingredients."
}
return themes.get(category.lower(), "Themed party idea not found. Try 'cheese', 'pepperoni', or 'combination'.")
def __init__(self, *args, **kwargs):
self.is_initialized = False
|