-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename route layer to semantic router
- Loading branch information
1 parent
cec4b20
commit 7752b08
Showing
7 changed files
with
97 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from semantic_router.routers import RouterConfig, RouteLayer, HybridRouter | ||
from semantic_router.routers import RouterConfig, SemanticRouter, HybridRouter | ||
from semantic_router.route import Route | ||
|
||
__all__ = ["RouteLayer", "HybridRouter", "Route", "RouterConfig"] | ||
__all__ = ["SemanticRouter", "HybridRouter", "Route", "RouterConfig"] | ||
|
||
__version__ = "0.1.0.dev2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from semantic_router.routers.base import BaseRouter, RouterConfig | ||
from semantic_router.routers.semantic import RouteLayer | ||
from semantic_router.routers.semantic import SemanticRouter | ||
from semantic_router.routers.hybrid import HybridRouter | ||
|
||
__all__ = [ | ||
"BaseRouter", | ||
"RouterConfig", | ||
"RouteLayer", | ||
"SemanticRouter", | ||
"HybridRouter", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.