-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 818 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
[tool.poetry]
name = "hello-python-ai-managed-agent-graph"
version = "0.1.0"
description = "Hello LaunchDarkly for Python AI - Managed Agent Graph"
authors = ["LaunchDarkly <dev@launchdarkly.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "create_agent_graph_example.py"}]
[tool.poetry.scripts]
agent-graph = "create_agent_graph_example:main"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = ">=1.0.0"
launchdarkly-server-sdk-ai = ">=1.0.0,<2.0.0"
launchdarkly-observability = ">=0.1.0"
launchdarkly-server-sdk-ai-openai = {version = ">=0.5.0", extras = ["agents"]}
launchdarkly-server-sdk-ai-langchain = {version = ">=0.6.0", extras = ["graph"]}
openai = ">=1.0.0"
langchain-openai = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"