Skip to content

Commit

Permalink
Remove snowflake and bigquery from default assistant sources (#10608)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraggle authored Feb 7, 2025
1 parent 07a0656 commit 3a80bd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion front/lib/connector_providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,11 @@ export const isConnectorProviderAssistantDefaultSelected = (
case "intercom":
case "microsoft":
case "zendesk":
return true;
// As of today (07/02/2025), the default selected provider are going to be used for semantic search
// Remote database connectors are not available for semantic search so it makes no sense to select them by default
case "snowflake":
case "bigquery":
return true;
case "webcrawler":
return false;
default:
Expand Down

0 comments on commit 3a80bd1

Please sign in to comment.