Spaces:
Runtime error
Runtime error
File size: 352 Bytes
2554bf7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from smolagents import Tool
from typing import Any, Optional
class SimpleTool(Tool):
name = "list_occasions"
description = "Lists the available occasions."
inputs = {}
output_type = "string"
def forward(self) -> str:
"""
Lists the available occasions.
"""
return "casual, formal, superhero, custom" |