Skip to content

Commit

Permalink
Merge pull request #283 from aurelio-labs/james/deprecation-type
Browse files Browse the repository at this point in the history
fix: typo in deprecation warning
  • Loading branch information
jamescalam committed May 15, 2024
2 parents 252afe9 + fe6d0c0 commit 8fb8cd0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion semantic_router/splitters/consecutive_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
"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)
Expand Down
2 changes: 1 addition & 1 deletion semantic_router/splitters/cumulative_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(
"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)
Expand Down
2 changes: 1 addition & 1 deletion semantic_router/splitters/rolling_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(
"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)
Expand Down

0 comments on commit 8fb8cd0

Please sign in to comment.