Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- poetry.lock +0 -0
- pyproject.toml +20 -0
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "swimmer"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["ohashi3399 <[email protected]>"]
|
6 |
+
readme = "README.md"
|
7 |
+
|
8 |
+
[tool.poetry.dependencies]
|
9 |
+
python = "^3.10"
|
10 |
+
langchain-community = "^0.3.16"
|
11 |
+
langchain = "^0.3.17"
|
12 |
+
langchain-huggingface = "^0.1.2"
|
13 |
+
unstructured = "^0.16.20"
|
14 |
+
faiss-cpu = "^1.10.0"
|
15 |
+
streamlit = "^1.42.0"
|
16 |
+
|
17 |
+
|
18 |
+
[build-system]
|
19 |
+
requires = ["poetry-core"]
|
20 |
+
build-backend = "poetry.core.masonry.api"
|