Spaces:
Runtime error
Runtime error
poetry files
Browse files- poetry.lock +0 -0
- pyproject.toml +25 -0
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "makerlab-bot"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Assistant Bot to Makerlab"
|
5 |
+
authors = ["rohan-uiuc <rohan13@illinois.edu>"]
|
6 |
+
readme = "README.md"
|
7 |
+
packages = [{include = "makerlab_bot"}]
|
8 |
+
|
9 |
+
[tool.poetry.dependencies]
|
10 |
+
python = "^3.9"
|
11 |
+
faiss-cpu = "^1.7.3"
|
12 |
+
langchain = "^0.0.131"
|
13 |
+
beautifulsoup4 = "^4.12.0"
|
14 |
+
pypdf2 = "^3.0.1"
|
15 |
+
openai = "^0.27.4"
|
16 |
+
flask = "^2.2.3"
|
17 |
+
flask-socketio = "^5.3.3"
|
18 |
+
flask-cors = "^3.0.10"
|
19 |
+
gevent = "^22.10.2"
|
20 |
+
gevent-websocket = "^0.10.1"
|
21 |
+
|
22 |
+
|
23 |
+
[build-system]
|
24 |
+
requires = ["poetry-core"]
|
25 |
+
build-backend = "poetry.core.masonry.api"
|