From fe6d0c018956b5cfa4d062c250a4f2194b9d7ce2 Mon Sep 17 00:00:00 2001
From: James Briggs <james.briggs@hotmail.com>
Date: Wed, 15 May 2024 12:04:00 +0800
Subject: [PATCH] fix: typo in deprecation warning

---
 semantic_router/splitters/consecutive_sim.py | 2 +-
 semantic_router/splitters/cumulative_sim.py  | 2 +-
 semantic_router/splitters/rolling_window.py  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/semantic_router/splitters/consecutive_sim.py b/semantic_router/splitters/consecutive_sim.py
index 5c20d779..5ba2941b 100644
--- a/semantic_router/splitters/consecutive_sim.py
+++ b/semantic_router/splitters/consecutive_sim.py
@@ -23,7 +23,7 @@ class ConsecutiveSimSplitter(BaseSplitter):
             "Splitters are being deprecated. They have moved to their own "
             "package. Please migrate to the `semantic-chunkers` package. More "
             "information can be found at:\n"
-            "https://github.com/aurelio-ai/semantic-chunkers",
+            "https://github.com/aurelio-labs/semantic-chunkers",
             stacklevel=2,
         )
         super().__init__(name=name, encoder=encoder)
diff --git a/semantic_router/splitters/cumulative_sim.py b/semantic_router/splitters/cumulative_sim.py
index f0fbd8e8..58e4cff7 100644
--- a/semantic_router/splitters/cumulative_sim.py
+++ b/semantic_router/splitters/cumulative_sim.py
@@ -24,7 +24,7 @@ class CumulativeSimSplitter(BaseSplitter):
             "Splitters are being deprecated. They have moved to their own "
             "package. Please migrate to the `semantic-chunkers` package. More "
             "information can be found at:\n"
-            "https://github.com/aurelio-ai/semantic-chunkers",
+            "https://github.com/aurelio-labs/semantic-chunkers",
             stacklevel=2,
         )
         super().__init__(name=name, encoder=encoder)
diff --git a/semantic_router/splitters/rolling_window.py b/semantic_router/splitters/rolling_window.py
index 5911882d..dc393b55 100644
--- a/semantic_router/splitters/rolling_window.py
+++ b/semantic_router/splitters/rolling_window.py
@@ -54,7 +54,7 @@ class RollingWindowSplitter(BaseSplitter):
             "Splitters are being deprecated. They have moved to their own "
             "package. Please migrate to the `semantic-chunkers` package. More "
             "information can be found at:\n"
-            "https://github.com/aurelio-ai/semantic-chunkers",
+            "https://github.com/aurelio-labs/semantic-chunkers",
             stacklevel=2,
         )
         super().__init__(name=name, encoder=encoder)
-- 
GitLab