This commit is contained in:
Timothy Jaeryang Baek
2026-06-29 04:57:28 -05:00
parent 45fea34bd0
commit 416baef813
2 changed files with 3 additions and 1 deletions

View File

@@ -1073,7 +1073,7 @@ ENABLE_WEB_SEARCH_CONFIRMATION = os.getenv('ENABLE_WEB_SEARCH_CONFIRMATION', 'Fa
WEB_SEARCH_CONFIRMATION_CONTENT = os.getenv(
'WEB_SEARCH_CONFIRMATION_CONTENT',
'Web Search may send your query and retrieved page content to external services.',
'Your query will be sent to the configured web search provider.',
)
WEB_SEARCH_ENGINE = os.getenv('WEB_SEARCH_ENGINE', '')

View File

@@ -292,6 +292,8 @@ type Config = {
enable_signup: boolean;
enable_login_form: boolean;
enable_web_search?: boolean;
enable_web_search_confirmation?: boolean;
web_search_confirmation_content?: string;
enable_google_drive_integration: boolean;
enable_onedrive_integration: boolean;
enable_image_generation: boolean;