Spaces:
Sleeping
Sleeping
LordFarquaad42
commited on
Commit
·
5e994a1
1
Parent(s):
90e1a69
added everything
Browse files- .gitignore +1 -0
- README.md +2 -0
- app.py +7 -0
- chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/data_level0.bin +3 -0
- chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/header.bin +3 -0
- chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/length.bin +3 -0
- chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/link_lists.bin +0 -0
- chromadb/chroma.sqlite3 +3 -0
- chromadb/readme.md +1 -0
- requirements.txt +110 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
env/
|
README.md
CHANGED
@@ -11,3 +11,5 @@ license: mit
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
14 |
+
# Setup Env
|
15 |
+
- `source env/bin/activate`
|
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
NAME = "Groove-GPT"
|
4 |
+
st.title(NAME)
|
5 |
+
|
6 |
+
user_question = st.text_area("Enter your groovy questions here")
|
7 |
+
access_key = st.text_input("Enter your gpt key here")
|
chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/data_level0.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7dae3ee3f81c92a916610420e67bdc858c853e6399addd96e645880895fe3d7c
|
3 |
+
size 4236000
|
chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/header.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fcc596bc1909f7cc610d5839236c90513b4fbad06776c253fa1b21bfd712e940
|
3 |
+
size 100
|
chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/length.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68c0dcdcf4beb64e7114c6b79a57d69e9cb8314dbb4d5613c019b8a83d6d2ae5
|
3 |
+
size 4000
|
chromadb/a81ece71-a3dd-473b-b74b-da3ab01ee2b8/link_lists.bin
ADDED
File without changes
|
chromadb/chroma.sqlite3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:226a885656dc073d3c605354ba47f72ee22a0fad5c9c0b50ee9f727fd532d735
|
3 |
+
size 3117056
|
chromadb/readme.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
documents are embedded with mixedbread-ai/mxbai-embed-large-v1
|
requirements.txt
ADDED
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
altair==5.2.0
|
2 |
+
annotated-types==0.6.0
|
3 |
+
anyio==4.3.0
|
4 |
+
asgiref==3.7.2
|
5 |
+
attrs==23.2.0
|
6 |
+
backoff==2.2.1
|
7 |
+
bcrypt==4.1.2
|
8 |
+
blinker==1.7.0
|
9 |
+
build==1.1.1
|
10 |
+
cachetools==5.3.3
|
11 |
+
certifi==2024.2.2
|
12 |
+
charset-normalizer==3.3.2
|
13 |
+
chroma-hnswlib==0.7.3
|
14 |
+
chromadb==0.4.24
|
15 |
+
click==8.1.7
|
16 |
+
coloredlogs==15.0.1
|
17 |
+
Deprecated==1.2.14
|
18 |
+
distro==1.9.0
|
19 |
+
fastapi==0.110.0
|
20 |
+
filelock==3.13.1
|
21 |
+
flatbuffers==24.3.7
|
22 |
+
fsspec==2024.2.0
|
23 |
+
gitdb==4.0.11
|
24 |
+
GitPython==3.1.42
|
25 |
+
google-auth==2.28.2
|
26 |
+
googleapis-common-protos==1.63.0
|
27 |
+
grpcio==1.62.1
|
28 |
+
h11==0.14.0
|
29 |
+
httpcore==1.0.4
|
30 |
+
httptools==0.6.1
|
31 |
+
httpx==0.27.0
|
32 |
+
huggingface-hub==0.21.4
|
33 |
+
humanfriendly==10.0
|
34 |
+
idna==3.6
|
35 |
+
importlib-metadata==6.11.0
|
36 |
+
importlib_resources==6.3.0
|
37 |
+
Jinja2==3.1.3
|
38 |
+
jsonschema==4.21.1
|
39 |
+
jsonschema-specifications==2023.12.1
|
40 |
+
kubernetes==29.0.0
|
41 |
+
markdown-it-py==3.0.0
|
42 |
+
MarkupSafe==2.1.5
|
43 |
+
mdurl==0.1.2
|
44 |
+
mmh3==4.1.0
|
45 |
+
monotonic==1.6
|
46 |
+
mpmath==1.3.0
|
47 |
+
numpy==1.26.4
|
48 |
+
oauthlib==3.2.2
|
49 |
+
onnxruntime==1.17.1
|
50 |
+
openai==1.14.0
|
51 |
+
opentelemetry-api==1.23.0
|
52 |
+
opentelemetry-exporter-otlp-proto-common==1.23.0
|
53 |
+
opentelemetry-exporter-otlp-proto-grpc==1.23.0
|
54 |
+
opentelemetry-instrumentation==0.44b0
|
55 |
+
opentelemetry-instrumentation-asgi==0.44b0
|
56 |
+
opentelemetry-instrumentation-fastapi==0.44b0
|
57 |
+
opentelemetry-proto==1.23.0
|
58 |
+
opentelemetry-sdk==1.23.0
|
59 |
+
opentelemetry-semantic-conventions==0.44b0
|
60 |
+
opentelemetry-util-http==0.44b0
|
61 |
+
orjson==3.9.15
|
62 |
+
overrides==7.7.0
|
63 |
+
packaging==23.2
|
64 |
+
pandas==2.2.1
|
65 |
+
pillow==10.2.0
|
66 |
+
posthog==3.5.0
|
67 |
+
protobuf==4.25.3
|
68 |
+
pulsar-client==3.4.0
|
69 |
+
pyarrow==15.0.1
|
70 |
+
pyasn1==0.5.1
|
71 |
+
pyasn1-modules==0.3.0
|
72 |
+
pydantic==2.6.4
|
73 |
+
pydantic_core==2.16.3
|
74 |
+
pydeck==0.8.1b0
|
75 |
+
Pygments==2.17.2
|
76 |
+
PyPika==0.48.9
|
77 |
+
pyproject_hooks==1.0.0
|
78 |
+
python-dateutil==2.9.0.post0
|
79 |
+
python-dotenv==1.0.1
|
80 |
+
pytz==2024.1
|
81 |
+
PyYAML==6.0.1
|
82 |
+
referencing==0.33.0
|
83 |
+
requests==2.31.0
|
84 |
+
requests-oauthlib==1.4.0
|
85 |
+
rich==13.7.1
|
86 |
+
rpds-py==0.18.0
|
87 |
+
rsa==4.9
|
88 |
+
six==1.16.0
|
89 |
+
smmap==5.0.1
|
90 |
+
sniffio==1.3.1
|
91 |
+
starlette==0.36.3
|
92 |
+
streamlit==1.32.2
|
93 |
+
sympy==1.12
|
94 |
+
tenacity==8.2.3
|
95 |
+
tokenizers==0.15.2
|
96 |
+
toml==0.10.2
|
97 |
+
toolz==0.12.1
|
98 |
+
tornado==6.4
|
99 |
+
tqdm==4.66.2
|
100 |
+
typer==0.9.0
|
101 |
+
typing_extensions==4.10.0
|
102 |
+
tzdata==2024.1
|
103 |
+
urllib3==2.2.1
|
104 |
+
uvicorn==0.28.0
|
105 |
+
uvloop==0.19.0
|
106 |
+
watchfiles==0.21.0
|
107 |
+
websocket-client==1.7.0
|
108 |
+
websockets==12.0
|
109 |
+
wrapt==1.16.0
|
110 |
+
zipp==3.18.1
|