File size: 258 Bytes
08583a4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

from tools.wiki import wikipedia_search_tool

TOOL_REGISTRY = {
    "wikipedia_search_tool": {
        "tool": wikipedia_search_tool,
        "description": "Searches Wikipedia for information. Use when user asks about a topic, person, or event.",
    },
}