You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.py
+3-35Lines changed: 3 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -36,41 +36,9 @@
36
36
default_config=dict(
37
37
type="system.System",
38
38
chat=dict(
39
-
type="chat.basic_agent.BasicAgentChat",
40
-
tools=[
41
-
dict(
42
-
type="tools.index_answer.IndexAnswerTool",
43
-
_streaming=True, # if specified, this is lazily constructed in chat to support streaming
44
-
name="ScrapedSitesIndexAnswer",
45
-
content_description="general content scraped from web3 sites. It does not know about this app or about widget magic commands for invoking transactions or fetching data about specific things like NFTs or balances.",
46
-
index=scraped_sites_index,
47
-
top_k=3,
48
-
source_key="url",
49
-
),
50
-
dict(
51
-
type="tools.index_widget.IndexWidgetTool",
52
-
_streaming=True, # if specified, this is lazily constructed in chat to support streaming
53
-
name="WidgetIndexAnswer",
54
-
index=widget_index,
55
-
top_k=10,
56
-
),
57
-
dict(
58
-
type="tools.index_app_info.IndexAppInfoTool",
59
-
_streaming=True, # if specified, this is lazily constructed in chat to support streaming
0 commit comments