-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (36 loc) · 944 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "sre-ascent"
version = "0.1.0"
description = ""
authors = [
"Di Wang <[email protected]>",
"Anshul Verma <[email protected]>",
"Jeff Yuan <[email protected]>",
"Samantha Jayasinghe <[email protected]>",
"Shawn Bai <[email protected]>",
"Tony Kong <[email protected]>",
]
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.poetry.dependencies]
duckduckgo-search = "^4.4.3"
langchain-community = "^0.0.20"
langchain-experimental = "^0.0.51"
langchain-openai = "^0.0.6"
langgraph = "^0.0.24"
langserve = {extras = ["server"], version = ">=0.0.41"}
pydantic = "<2"
python = "^3.11"
python-dotenv = "^1.0.1"
slack-bolt = "^1.18.1"
uvicorn = "^0.23.2"
[tool.poetry.group.dev.dependencies]
langchain-cli = ">=0.0.15"
ruff = "^0.2.1"
[tool.poetry.scripts]
slack_socket_mode = "app.slack_socket_mode:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"