24 lines
438 B
TOML
24 lines
438 B
TOML
[project]
|
|
name = "demo-llm"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Your Name",email = "you@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
langchain = "^0.3.27"
|
|
langchain-openai = "^0.3.35"
|
|
pydantic-settings = "^2.10.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|