-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
74 lines (66 loc) · 1.68 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "open-notebook"
version = "0.1.1"
description = "An open source implementation of a research assistant, inspired by Google Notebook LM"
authors = ["Luis Novo <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.11"
streamlit = "^1.39.0"
watchdog = "^5.0.3"
pydantic = "^2.9.2"
loguru = "^0.7.2"
langchain = "^0.3.3"
langgraph = "^0.2.38"
humanize = "^4.11.0"
streamlit-tags = "^1.2.8"
streamlit-scrollable-textbox = "^0.0.3"
tiktoken = "^0.8.0"
streamlit-monaco = "^0.1.3"
langgraph-checkpoint-sqlite = "^2.0.0"
pymupdf = "1.24.11"
python-magic = "^0.4.27"
langdetect = "^1.0.9"
youtube-transcript-api = "^0.6.2"
openai = "^1.52.0"
pre-commit = "^4.0.1"
langchain-community = "^0.3.3"
litellm = "^1.50.1"
langchain-openai = "^0.2.3"
langchain-anthropic = "^0.2.3"
langchain-ollama = "^0.2.0"
langchain-google-vertexai = "^2.0.5"
sdblpy = {git = "https://github.com/lfnovo/surreal-lite-py.git"}
langchain-google-genai = "^2.0.1"
podcastfy = "^0.4"
tomli = "^2.0.2"
bs4 = "^0.0.2"
python-docx = "^1.1.2"
python-pptx = "^1.0.2"
openpyxl = "^3.1.5"
google-generativeai = "^0.8.3"
langchain-groq = "^0.2.1"
groq = "^0.12.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
ruff = "^0.5.5"
mypy = "^1.11.1"
types-requests = "^2.32.0.20241016"
ipywidgets = "^8.1.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 88
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]