Skip to content

Commit 06b0860

Browse files
committed
Merge main
2 parents efe5420 + f4d0172 commit 06b0860

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

src/backend/scripts/cli/constants.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ class Tool(StrEnum):
7373
},
7474
}
7575

76-
76+
# Perhaps there is a better way to do this by using the Settings
77+
# class from the backend?
7778
ENV_YAML_CONFIG_MAPPING = {
7879
"USE_COMMUNITY_FEATURES": {
7980
"type": "config",
@@ -87,7 +88,7 @@ class Tool(StrEnum):
8788
"type": "config",
8889
"path": "tools.python_interpreter.url",
8990
},
90-
"TAVILY_API_KEY": {"type": "secret", "path": "tools.tavily.api_key"},
91+
"TAVILY_API_KEY": {"type": "secret", "path": "tools.tavily_web_search.api_key"},
9192
"COHERE_API_KEY": {"type": "secret", "path": "deployments.cohere_platform.api_key"},
9293
"SAGE_MAKER_ACCESS_KEY": {
9394
"type": "secret",

src/interfaces/assistants_web/src/constants/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const TOOL_GOOGLE_DRIVE_ID = 'google_drive';
1515
export const TOOL_SLACK_ID = 'slack';
1616
export const TOOL_GMAIL_ID = 'gmail';
1717

18-
export const BACKGROUND_TOOLS = [TOOL_SEARCH_FILE_ID, TOOL_READ_DOCUMENT_ID, TOOL_WEB_SCRAPE_ID];
18+
export const BACKGROUND_TOOLS = [TOOL_SEARCH_FILE_ID, TOOL_READ_DOCUMENT_ID];
1919

2020
export const TOOL_FALLBACK_ICON = 'circles-four';
2121
export const TOOL_ID_TO_DISPLAY_INFO: { [id: string]: { icon: IconName } } = {

src/interfaces/coral_web/package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/interfaces/coral_web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"class-variance-authority": "^0.7.0",
4040
"classnames": "^2.5.1",
4141
"cross-fetch": "^4.0.0",
42+
"cross-spawn": "^7.0.5",
4243
"csstype": "^3.0.10",
4344
"form-data": "^4.0.0",
4445
"hast-util-to-jsx-runtime": "^2.3.0",

0 commit comments

Comments
 (0)