Skip to content

Commit e2a9101

Browse files
committed
Disable web_search and memory features by default to speed up responses
1 parent 2855775 commit e2a9101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sam/bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ async def get_thread(slack_id: str) -> dict[str, list[dict[str, str | list[dict]
120120
"features": {
121121
"image_generation": False,
122122
"code_interpreter": False,
123-
"web_search": True,
124-
"memory": True,
123+
"web_search": False,
124+
"memory": False,
125125
},
126126
"tool_ids": await get_tool_ids(),
127127
}

0 commit comments

Comments
 (0)