mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
7 lines
151 B
Python
7 lines
151 B
Python
from rag_aws_kendra.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
query = "Does Kendra support table extraction?"
|
|
|
|
print(chain.invoke(query))
|