mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-04 04:28:58 +00:00
7 lines
165 B
Python
7 lines
165 B
Python
from rag_aws_kendra.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
query = "Does Kendra support table extraction?"
|
|
|
|
print(chain.invoke(query)) # noqa: T201
|