Skip to content

Commit

Permalink
fix llama-index parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed Feb 13, 2024
1 parent 0d393ff commit 718ed2a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def bedrock_meta_llm():
model="meta.llama2-13b-chat-v1",
aws_access_key_id=get_required_env("AWS_ACCESS_KEY_ID"),
aws_secret_access_key=get_required_env("AWS_SECRET_ACCESS_KEY"),
aws_region_name=get_required_env("BEDROCK_AWS_REGION"),
region_name=get_required_env("BEDROCK_AWS_REGION"),
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from langchain_core.chat_history import BaseChatMessageHistory
from langchain_core.vectorstores import VectorStore as LangChainVectorStore
from llama_index.vector_stores.types import VectorStore as LLamaIndexVectorStore

from e2e_tests.test_utils import skip_test_due_to_implementation_not_supported

Expand Down

0 comments on commit 718ed2a

Please sign in to comment.