Skip to content

Commit

Permalink
[core] - feature: expand Qdrant data source options (#9629)
Browse files Browse the repository at this point in the history
- Added EUCluster0 as an additional Qdrant data source option to the existing cluster variants
  • Loading branch information
JulesBelveze authored Dec 24, 2024
1 parent 1f26185 commit 07dbff7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/data_sources/qdrant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ pub enum QdrantCluster {
// See: https://www.notion.so/dust-tt/Design-Doc-Qdrant-re-arch-d0ebdd6ae8244ff593cdf10f08988c27
pub const SHARD_KEY_COUNT: u64 = 24;

static QDRANT_CLUSTER_VARIANTS: &[QdrantCluster] = &[QdrantCluster::Cluster0];
static QDRANT_CLUSTER_VARIANTS: &[QdrantCluster] =
&[QdrantCluster::Cluster0, QdrantCluster::EUCluster0];

impl fmt::Display for QdrantCluster {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
Expand Down

0 comments on commit 07dbff7

Please sign in to comment.