2023-12-19 23:55:58 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "bedrock-jcvd"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "LangChain template that behaves like JCVD using Anthropic's Claude on Amazon Bedrock"
|
|
|
|
authors = ["JGalego <jgalego1990@gmail.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
|
|
|
uvicorn = "^0.23.2"
|
|
|
|
langserve = {extras = ["server"], version = ">=0.0.30"}
|
|
|
|
pydantic = "<2"
|
|
|
|
boto3 = "^1.33.10"
|
2024-01-07 02:31:46 +00:00
|
|
|
langchain = "^0.1"
|
2023-12-19 23:55:58 +00:00
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "bedrock_jcvd.chain"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "chatbot"
|
|
|
|
author = "LangChain"
|
|
|
|
integrations = ["AWS"]
|
|
|
|
tags = ["conversation"]
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-06 01:12:12 +00:00
|
|
|
langchain-cli = ">=0.0.21"
|
2023-12-19 23:55:58 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|