langchain/templates/guardrails-output-parser/pyproject.toml

35 lines
718 B
TOML
Raw Normal View History

2023-10-31 00:01:23 +00:00
[tool.poetry]
name = "guardrails-output-parser"
2023-10-31 00:01:23 +00:00
version = "0.0.1"
description = "Use guardrails-ai to validate LLM output"
2023-10-31 00:01:23 +00:00
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
2024-01-07 02:31:46 +00:00
langchain = "^0.1"
openai = "<2"
2023-10-31 00:01:23 +00:00
guardrails-ai = "^0.2.4"
alt-profanity-check = "^1.3.1"
[tool.poetry.group.dev.dependencies]
2024-02-06 01:12:12 +00:00
langchain-cli = ">=0.0.21"
2023-10-31 00:01:23 +00:00
fastapi = "^0.104.0"
sse-starlette = "^1.6.5"
[tool.langserve]
export_module = "guardrails_output_parser.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "validation"
author = "LangChain"
integrations = ["Guardrails", "OpenAI"]
tags = ["moderation"]
2023-10-31 00:01:23 +00:00
[build-system]
requires = [
"poetry-core",
]
2023-10-31 00:01:23 +00:00
build-backend = "poetry.core.masonry.api"