2023-10-28 15:58:28 +00:00
|
|
|
[tool.poetry]
|
2023-10-31 07:06:02 +00:00
|
|
|
name = "rag-aws-kendra"
|
2023-10-28 15:58:28 +00:00
|
|
|
version = "0.0.1"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "RAG using AWS-Kendra and anthropic"
|
2023-10-28 15:58:28 +00:00
|
|
|
authors = []
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
2024-01-03 21:28:05 +00:00
|
|
|
langchain = ">=0.0.353,<0.2"
|
2023-10-28 15:58:28 +00:00
|
|
|
tiktoken = ">=0.5.1"
|
2023-10-31 17:19:15 +00:00
|
|
|
boto3 = ">=1.28.57"
|
2023-10-28 15:58:28 +00:00
|
|
|
awscli = ">=1.29.57"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-11-03 20:15:29 +00:00
|
|
|
langchain-cli = ">=0.0.15"
|
2023-10-28 15:58:28 +00:00
|
|
|
fastapi = "^0.104.0"
|
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "rag_aws_kendra.chain"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "rag"
|
|
|
|
author = "LangChain"
|
|
|
|
integrations = ["AWS"]
|
|
|
|
tags = ["vectordbs"]
|
|
|
|
|
2023-10-28 15:58:28 +00:00
|
|
|
[build-system]
|
2023-10-31 17:19:15 +00:00
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
2023-10-28 15:58:28 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|