mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
88f0f1e73b
Context in the README. Show how score chat responses based on a followup from the user and then log that as feedback in LangSmith
27 lines
537 B
TOML
27 lines
537 B
TOML
[tool.poetry]
|
|
name = "chat_bot_feedback"
|
|
version = "0.0.1"
|
|
description = ""
|
|
authors = []
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
langchain = ">=0.0.327, <0.1"
|
|
openai = "^0.28.1"
|
|
langsmith = ">=0.0.54"
|
|
langchainhub = ">=0.1.13"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.4"
|
|
fastapi = "^0.104.0"
|
|
sse-starlette = "^1.6.5"
|
|
|
|
[tool.langserve]
|
|
export_module = "chat_bot_feedback.chain"
|
|
export_attr = "chain"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|