Spaces:
Sleeping
Sleeping
Commit ·
b105b9f
1
Parent(s): 9201c7b
Initial commit
Browse files- .gitignore +2 -0
- README.md +2 -13
- requirements.txt +73 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.streamlit
|
| 2 |
+
__pycache__
|
README.md
CHANGED
|
@@ -1,13 +1,2 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
emoji: 🚀
|
| 4 |
-
colorFrom: purple
|
| 5 |
-
colorTo: blue
|
| 6 |
-
sdk: streamlit
|
| 7 |
-
sdk_version: 1.21.0
|
| 8 |
-
app_file: app.py
|
| 9 |
-
pinned: false
|
| 10 |
-
license: mit
|
| 11 |
-
---
|
| 12 |
-
|
| 13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
# dAIgramGen v1.0
|
| 2 |
+
dAIgramGen is an AI-based diagram generator (hence the name 🤷)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiohttp==3.8.4
|
| 2 |
+
aiosignal==1.3.1
|
| 3 |
+
altair==5.0.1
|
| 4 |
+
async-timeout==4.0.2
|
| 5 |
+
attrs==23.1.0
|
| 6 |
+
blinker==1.6.2
|
| 7 |
+
cachetools==5.3.1
|
| 8 |
+
certifi==2023.5.7
|
| 9 |
+
charset-normalizer==3.1.0
|
| 10 |
+
click==8.1.3
|
| 11 |
+
dataclasses-json==0.5.9
|
| 12 |
+
decorator==5.1.1
|
| 13 |
+
diagrams==0.23.3
|
| 14 |
+
distlib==0.3.6
|
| 15 |
+
filelock==3.12.2
|
| 16 |
+
frozenlist==1.3.3
|
| 17 |
+
gitdb==4.0.10
|
| 18 |
+
GitPython==3.1.31
|
| 19 |
+
graphviz==0.20.1
|
| 20 |
+
greenlet==2.0.2
|
| 21 |
+
idna==3.4
|
| 22 |
+
importlib-metadata==6.7.0
|
| 23 |
+
Jinja2==3.1.2
|
| 24 |
+
jsonschema==4.17.3
|
| 25 |
+
langchain==0.0.220
|
| 26 |
+
langchainplus-sdk==0.0.19
|
| 27 |
+
markdown-it-py==3.0.0
|
| 28 |
+
MarkupSafe==2.1.3
|
| 29 |
+
marshmallow==3.19.0
|
| 30 |
+
marshmallow-enum==1.5.1
|
| 31 |
+
mdurl==0.1.2
|
| 32 |
+
multidict==6.0.4
|
| 33 |
+
mypy-extensions==1.0.0
|
| 34 |
+
numexpr==2.8.4
|
| 35 |
+
numpy==1.25.0
|
| 36 |
+
openai==0.27.8
|
| 37 |
+
openapi-schema-pydantic==1.2.4
|
| 38 |
+
packaging==23.1
|
| 39 |
+
pandas==2.0.3
|
| 40 |
+
Pillow==9.5.0
|
| 41 |
+
platformdirs==3.8.0
|
| 42 |
+
protobuf==4.23.3
|
| 43 |
+
pyarrow==12.0.1
|
| 44 |
+
pydantic==1.10.10
|
| 45 |
+
pydeck==0.8.1b0
|
| 46 |
+
Pygments==2.15.1
|
| 47 |
+
Pympler==1.0.1
|
| 48 |
+
pyrsistent==0.19.3
|
| 49 |
+
python-dateutil==2.8.2
|
| 50 |
+
pytz==2023.3
|
| 51 |
+
pytz-deprecation-shim==0.1.0.post0
|
| 52 |
+
PyYAML==6.0
|
| 53 |
+
requests==2.31.0
|
| 54 |
+
rich==13.4.2
|
| 55 |
+
six==1.16.0
|
| 56 |
+
smmap==5.0.0
|
| 57 |
+
SQLAlchemy==2.0.17
|
| 58 |
+
streamlit==1.24.0
|
| 59 |
+
tenacity==8.2.2
|
| 60 |
+
toml==0.10.2
|
| 61 |
+
toolz==0.12.0
|
| 62 |
+
tornado==6.3.2
|
| 63 |
+
tqdm==4.65.0
|
| 64 |
+
typed-ast==1.5.4
|
| 65 |
+
typing-inspect==0.9.0
|
| 66 |
+
typing_extensions==4.7.0
|
| 67 |
+
tzdata==2023.3
|
| 68 |
+
tzlocal==4.3.1
|
| 69 |
+
urllib3==2.0.3
|
| 70 |
+
validators==0.20.0
|
| 71 |
+
virtualenv==20.23.1
|
| 72 |
+
yarl==1.9.2
|
| 73 |
+
zipp==3.15.0
|