-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
68 lines (61 loc) · 1.81 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
[tool.poetry]
name = "wandbot"
version = "1.2.0"
description = "A Q&A bot for Weights & Biases documentation"
authors = ["parambharat <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/wandb/wandbot"
repository = "https://github.com/wandb/wandbot"
include = ["src/**/*", "LICENSE", "README.md"]
[tool.poetry.dependencies]
python = ">=3.10.0,<=3.12.4"
numpy = "^1.26.1"
pandas = "^2.1.2"
pydantic-settings = "^2.0.3"
gitpython = "^3.1.40"
giturlparse = "^0.12.0"
scikit-learn = "^1.3.2"
python-dotenv = "^1.0.0"
slack-bolt = "^1.18.0"
slack-sdk = "^3.21.3"
discord = "^2.3.2"
markdown = "^3.5.1"
fastapi = "^0.109.2"
tree-sitter-languages = "^1.7.1"
markdownify = "^0.11.6"
uvicorn = "^0.24.0"
openai = "^1.3.2"
weave = "^0.50.12"
colorlog = "^6.8.0"
litellm = "^1.15.1"
google-cloud-bigquery = "^3.14.1"
db-dtypes = "^1.2.0"
python-frontmatter = "^1.1.0"
pymdown-extensions = "^10.5"
langchain = "^0.2.2"
langchain-openai = "^0.1.8"
langchain-experimental = "^0.0.60"
langchain-core = "^0.2.2"
langchain-cohere = "^0.1.3"
langchain-chroma = "^0.1.2"
simsimd = "3.7.7"
nbformat = "^5.10.4"
nbconvert = "^7.16.4"
wandb = {extras = ["workspaces"], version = "^0.17.5"}
tree-sitter = "0.21.3"
[tool.poetry.dev-dependencies]
[tool.poetry.group.eval.dependencies]
ragas = "^0.1.7"
dataclasses-json = "^0.6.4"
llama-index = "^0.10.30"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 80
skip = [".gitignore", "data", "examples", "notebooks", "artifacts", ".vscode", ".github", ".idea", ".replit", "*.md", "wandb", ".env", ".git", ]
[tool.black]
line-length = 80
skip = [".gitignore", "data", "examples", "notebooks", "artifacts", ".vscode", ".github", ".idea", ".replit", "*.md", "wandb", ".env", ".git", ]