first comit

This commit is contained in:
Johan
2025-12-17 09:44:42 +01:00
commit 59a077d5fd
5 changed files with 1740 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[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"