-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "ttyg"
version = "4.2.2a0"
description = "Natural language querying for GraphDB using LangGraph agents"
authors = []
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12,<3.14"
dependencies = [
"rdflib[graphdb]==7.6.0",
"langchain==1.2.15",
"langgraph==1.1.10",
]
[project.urls]
repository = "https://github.com/Ontotext-AD/ttyg-langgraph"
[tool.poetry.group.test.dependencies]
pytest = "<10,>=9.0.3"
pytest-cov = "<8,>=7"
[tool.poetry.group.jupyter.dependencies]
jupyter = "1.1.1"
[tool.poetry.group.jupyter]
optional = true
[tool.poetry.group.llm-openai]
optional = true
[tool.poetry.group.llm-openai.dependencies]
langchain-openai = "1.1.14"
[tool.poetry.group.llm-anthropic]
optional = true
[tool.poetry.group.llm-anthropic.dependencies]
langchain-anthropic = "1.4.1"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"