forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 904 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 904 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
43
[tool.poetry]
name = "tutorial_quickstart"
version = "0.1.0"
description = "Quickstart Tutorial"
authors = ["Markus Ecker <markus.ecker@gmail.com>"]
license = "MIT"
[project]
name = "tutorial_quickstart"
version = "0.0.1"
dependencies = [
"langgraph==0.2.52",
"langchain_core",
"langchain-google-genai",
"langchain",
"openai",
"langchain-community",
"langchain-anthropic",
"tavily-python",
"copilotkit==0.1.28a6",
"python-dotenv",
"uvicorn",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.poetry.dependencies]
python = "^3.12"
copilotkit = "0.1.41"
langgraph = "0.2.52"
langchain-core = "^0.3.12"
langchain-community = "^0.3.1"
langchain-anthropic = "0.2.3"
langchain = "0.3.4"
openai = "^1.52.1"
tavily-python = "^0.5.0"
python-dotenv = "^1.0.1"
uvicorn = "^0.31.0"
[tool.poetry.scripts]
demo = "tutorial_quickstart.demo:main"