-
Notifications
You must be signed in to change notification settings - Fork 104
/
pyproject.toml
80 lines (76 loc) · 1.7 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
74
75
76
77
78
79
80
[project]
name = "comfyui_llm_party"
description = "A set of block-based LLM agent node libraries designed for ComfyUI.This project aims to develop a complete set of nodes for LLM workflow construction based on comfyui. It allows users to quickly and conveniently build their own LLM workflows and easily integrate them into their existing SD workflows."
version = "1.2.0"
license = {file = "LICENSE"}
dependencies = [
"beautifulsoup4",
"docx2txt",
"langchain",
"langchain_community",
"langchain_text_splitters",
"openai",
"openpyxl",
"pandas",
"pytz",
"Requests",
"xlrd",
"faiss-cpu",
"websocket-client",
"streamlit",
"virtualenv",
"tiktoken",
"transformers",
"transformers_stream_generator",
"optimum",
"pdfplumber",
"wikipedia",
"arxiv",
"bitsandbytes",
"accelerate",
"fastapi",
"py-cpuinfo",
"diskcache",
"requests_toolbelt",
"tabulate",
"charset_normalizer",
"tenacity",
"cpm_kernels",
"pydub",
"keyboard",
"sounddevice",
"neo4j",
"soundfile",
"langchain_openai",
"sentence_transformers",
"uvicorn",
"google-generativeai",
"llama_index",
"html2image",
"markdown",
"selenium",
"librosa",
"ffmpeg-python",
"moviepy",
"html5lib",
"easyocr",
"feedparser",
"psutil",
"verovio",
"mdtex2html",
"markdownify",
"srt",
"peft"
]
[project.urls]
Repository = "https://github.com/heshengtao/comfyui_LLM_party"
# Used by Comfy Registry https://comfyregistry.org
[tool.comfy]
PublisherId = "heshengtao"
DisplayName = "comfyui_LLM_party"
Icon = ""
[tool.black]
line-length = 120
preview = true
[tool.isort]
profile = "black"