From 548ce74c25b0994c23733f83b7e06d366cb38c1b Mon Sep 17 00:00:00 2001 From: Vivek Silimkhan <126159777+viveksilimkhan1@users.noreply.github.com> Date: Wed, 25 Oct 2023 02:18:39 +0530 Subject: [PATCH] Update __init__.py --- spacy_llm/models/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spacy_llm/models/__init__.py b/spacy_llm/models/__init__.py index c1427009..15633845 100644 --- a/spacy_llm/models/__init__.py +++ b/spacy_llm/models/__init__.py @@ -1,7 +1,7 @@ from .hf import dolly_hf, openllama_hf, stablelm_hf from .langchain import query_langchain from .rest import anthropic, cohere, noop, openai, palm - +from .bedrock import titan_lite, titan_express __all__ = [ "anthropic", "cohere", @@ -12,4 +12,6 @@ "openllama_hf", "palm", "query_langchain", + "titan_lite", + "titan_express", ]