mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-18 18:53:10 +00:00
7 lines
153 B
Python
7 lines
153 B
Python
from rag_aws_bedrock.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
query = "What is this data about?"
|
|
|
|
print(chain.invoke(query)) # noqa: T201
|