mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
5545de0466
Updates the bedrock rag template. - Removes pinecone and replaces with FAISS as the vector store - Fixes the environment variables, setting defaults - Adds a `main.py` test file quick sanity testing - Updates README.md with correct instructions
6 lines
138 B
Python
6 lines
138 B
Python
from rag_aws_bedrock.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
query = "What is this data about?"
|
|
|
|
print(chain.invoke(query)) |