-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (38 loc) · 1.12 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
[tool.poetry]
name = "jarvis-assistant"
version = "0.1.0"
description = ""
authors = ["Mr. Jack Tung <[email protected]>"]
readme = "README.md"
# packages = [{include = "jarvis_assistant", from = "src"}]
[tool.poetry.dependencies]
python = "^3.12"
tqdm = "^4.66.5"
pyyaml = "^6.0.2"
tiktoken = "^0.7.0"
pypdf = "^5.0.0"
python-docx = "^1.1.2"
wikipedia = "^1.4.0"
arxiv = "^2.1.3"
gradio = "^4.44.0"
gradio-toggle = "^1.0.4"
groq = "^0.11.0"
graphviz = "^0.20.3"
nomic = {extras = ["local"], version = "^3.1.2"}
langchain = "^0.3.0"
langchain-nomic = "^0.1.3"
langchain-chroma = "^0.1.4"
langchain-community = "^0.3.0"
langchainhub = "^0.1.21"
litellm = {extras = ["proxy"], version = "^1.47.1"}
ollama = "^0.3.3"
openai = "^1.47.0"
google-generativeai = "^0.8.1"
duckduckgo-search = "^6.2.12"
protobuf = "^3.20.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/Mr-Jack-Tung/JARVIS-Chatbot-a-simple-RAG-with-PDF-files"
Issues = "https://github.com/Mr-Jack-Tung/JARVIS-Chatbot-a-simple-RAG-with-PDF-files/issues"