Spaces:
Runtime error
Runtime error
File size: 377 Bytes
6c09f76 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""Tools package for API integrations."""
from .functions import (
store_input,
store_input_tool,
validate_answer,
validate_answer_tool,
)
# Map of function names to their implementations
FUNCTION_MAP = {
"validate_answer": validate_answer,
"store_input": store_input,
}
# List of all available tools
TOOLS = [store_input_tool, validate_answer_tool]
|