-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 970 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "Persona LLM for QA Chatbot"
version = "0.1.0"
description = "A persona-based language model for QA chatbot package containing multiple personas"
authors = ["Advaith Rao <advaith652@gmail.com>", "Falgun Malhotra <falgun.malhotra2@gmail.com", "Vanshita Gupta <vanshigupta04@gmail.com"]
[tool.poetry.dependencies]
#main packages
python = "^3.8"
pandas = "^1.1.4"
scipy = "*"
numpy = "*"
jupyter = "^1.0.0"
swifter = "*"
#modeling packages
transformers = "*"
torch = "2.1.0"
#nlp packages
regex = "*"
nltk = "*"
convokit = "*"
evaluate = "*"
rouge-score = "*"
langchain = "*"
cohere = "*"
InstructorEmbedding = "*"
pinecone-client = { git = "https://github.com/pinecone-io/pinecone-python-client.git" }
#mlops
wandb = "*"
#other packages
beautifulsoup4 = "4.11.1"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
pytest-xdist = "*"