2023-10-28 23:26:52 +00:00
|
|
|
[tool.poetry]
|
2023-10-31 07:06:02 +00:00
|
|
|
name = "pirate-speak"
|
2023-10-28 23:26:52 +00:00
|
|
|
version = "0.0.1"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "Get started with a simple template that speaks like a pirate"
|
2023-10-28 23:26:52 +00:00
|
|
|
authors = []
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
2023-11-17 01:10:08 +00:00
|
|
|
openai = "<2"
|
2024-01-03 21:28:05 +00:00
|
|
|
langchain-community = "^0.0.7"
|
|
|
|
langchain-core = "^0.1.4"
|
2023-10-28 23:26:52 +00:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-06 01:12:12 +00:00
|
|
|
langchain-cli = ">=0.0.21"
|
2023-10-28 23:26:52 +00:00
|
|
|
fastapi = "^0.104.0"
|
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "pirate_speak.chain"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "chatbot"
|
|
|
|
author = "LangChain"
|
|
|
|
integrations = ["OpenAI"]
|
|
|
|
tags = ["getting-started"]
|
|
|
|
|
2023-10-28 23:26:52 +00:00
|
|
|
[build-system]
|
2023-10-31 17:19:15 +00:00
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
2023-10-28 23:26:52 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|