-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into issue-94/reraise-exceptions-w-trace
- Loading branch information
Showing
10 changed files
with
94 additions
and
60 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
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
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
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
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,14 +1,15 @@ | ||
[tool.poetry] | ||
name = "semantic-router" | ||
version = "0.0.15" | ||
version = "0.0.16" | ||
description = "Super fast semantic router for AI decision making" | ||
authors = [ | ||
"James Briggs <[email protected]>", | ||
"Siraj Aizlewood <[email protected]>", | ||
"Simonas Jakubonis <[email protected]>", | ||
"Luca Mannini <[email protected]>", | ||
"Bogdan Buduroiu <[email protected]>", | ||
"Ismail Ashraq <[email protected]>" | ||
"Ismail Ashraq <[email protected]>", | ||
"Daniel Griffin <[email protected]>" | ||
] | ||
readme = "README.md" | ||
packages = [{include = "semantic_router"}] | ||
|
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,7 +1,6 @@ | ||
from semantic_router.llms.base import BaseLLM | ||
from semantic_router.llms.cohere import CohereLLM | ||
from semantic_router.llms.llamacpp import LlamaCppLLM | ||
from semantic_router.llms.openai import OpenAILLM | ||
from semantic_router.llms.openrouter import OpenRouterLLM | ||
|
||
__all__ = ["BaseLLM", "OpenAILLM", "OpenRouterLLM", "CohereLLM", "LlamaCppLLM"] | ||
__all__ = ["BaseLLM", "OpenAILLM", "OpenRouterLLM", "CohereLLM"] |
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