-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathagent_tools.py
52 lines (35 loc) · 986 Bytes
/
agent_tools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
try:
from ..utils.db import *
from ..tooler import *
from ..display_tools import *
from ..teams import *
from ..llm_settings import llm_settings
except ImportError:
from utils.db import *
from tooler import *
from display_tools import *
from teams import *
from llm_settings import llm_settings
custom_tools = []
def load_tiger_tools():
try:
from upsonic import Tiger
tools = Tiger()
tools.enable_auto_requirements = True
tools = tools.langchain()
return tools
except:
return False
def load_default_tools():
from ..standard_tools import get_standard_tools
return get_standard_tools()
cached_tiger_tools = None
def get_tiger_tools():
global cached_tiger_tools
if cached_tiger_tools is None:
cached_tiger_tools = load_tiger_tools()
return cached_tiger_tools
if is_online_tools_setting_active():
get_tiger_tools()
def get_tools():
return []