mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
b1fa726377
Updates docs and cookbooks to import ChatOpenAI, OpenAI, and OpenAI Embeddings from `langchain_openai` There are likely more --------- Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
26 lines
487 B
TOML
26 lines
487 B
TOML
[tool.poetry]
|
|
name = "__package_name__"
|
|
version = "0.0.1"
|
|
description = ""
|
|
authors = []
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
langchain-core = ">=0.1.5"
|
|
langchain-openai = ">=0.0.1"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.4"
|
|
fastapi = "^0.104.0"
|
|
sse-starlette = "^1.6.5"
|
|
|
|
[tool.langserve]
|
|
export_module = "__module_name__"
|
|
export_attr = "chain"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|