Spaces:
Running
Running
add config files
Browse files- .python-version +1 -0
- README.md +10 -0
- poetry.lock +0 -0
- pyproject.toml +24 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.9
|
README.md
CHANGED
@@ -10,3 +10,13 @@ pinned: false
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
13 |
+
|
14 |
+
```
|
15 |
+
git clone https://huggingface.co/spaces/realvest/realvest-app
|
16 |
+
pyenv install 3.9
|
17 |
+
pyenv local 3.9
|
18 |
+
|
19 |
+
poetry use env 3.9.17
|
20 |
+
poetry install
|
21 |
+
poetry shell
|
22 |
+
```
|
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "realvest-app"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Your Name <[email protected]>"]
|
6 |
+
readme = "README.md"
|
7 |
+
packages = [{include = "realvest_app"}]
|
8 |
+
|
9 |
+
[tool.poetry.dependencies]
|
10 |
+
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
|
11 |
+
streamlit = "^1.23.1"
|
12 |
+
openai = "^0.27.8"
|
13 |
+
langchain = "^0.0.213"
|
14 |
+
pinecone-client = "^2.2.2"
|
15 |
+
python-dotenv = "^1.0.0"
|
16 |
+
tqdm = "^4.65.0"
|
17 |
+
pandas = "^2.0.2"
|
18 |
+
psycopg2-binary = "^2.9.6"
|
19 |
+
PyYAML = "^6.0"
|
20 |
+
|
21 |
+
|
22 |
+
[build-system]
|
23 |
+
requires = ["poetry-core"]
|
24 |
+
build-backend = "poetry.core.masonry.api"
|