Spaces:
Runtime error
Runtime error
"""Tools package for API integrations.""" | |
from .functions import validate_answer, validate_answer_tool, store_input, store_input_tool | |
# Map of function names to their implementations | |
FUNCTION_MAP = { | |
"validate_answer": validate_answer, | |
"store_input": store_input, | |
} | |
# List of all available tools | |
# TOOLS = [validate_answer_tool, store_input_tool] | |
TOOLS = [validate_answer_tool] | |