-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the MultipleCompletionLLMModel class used in LDP (#3)
* Added the MultipleCompletionLLMModel class used in LDP --------- Co-authored-by: Mayk Caldas <[email protected]>
- Loading branch information
1 parent
4e95024
commit 5453a6d
Showing
13 changed files
with
1,023 additions
and
125 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,7 +1,33 @@ | ||
from llmclient.llms import LLMModel | ||
from llmclient.types import LLMResult | ||
from llmclient.embeddings import ( | ||
EmbeddingModel, | ||
HybridEmbeddingModel, | ||
LiteLLMEmbeddingModel, | ||
SentenceTransformerEmbeddingModel, | ||
SparseEmbeddingModel, | ||
embedding_model_factory, | ||
) | ||
from llmclient.llms import LiteLLMModel, LLMModel, MultipleCompletionLLMModel | ||
from llmclient.types import ( | ||
Chunk, | ||
Embeddable, | ||
LLMResult, | ||
) | ||
from llmclient.version import __version__ | ||
|
||
__all__ = [ | ||
"Chunk", | ||
"Embeddable", | ||
"EmbeddingModel", | ||
"HybridEmbeddingModel", | ||
"LLMModel", | ||
"LLMResult", | ||
"LLMResult", | ||
"LiteLLMEmbeddingModel", | ||
"LiteLLMModel", | ||
"MultipleCompletionLLMModel", | ||
"SentenceTransformerEmbeddingModel", | ||
"SparseEmbeddingModel", | ||
"__version__", | ||
"embedding_model_factory", | ||
"embedding_model_factory", | ||
] |
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
Oops, something went wrong.