Spaces:
Runtime error
Runtime error
Commit
Β·
3cb3b70
1
Parent(s):
3d5bb89
structure
Browse files
app.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"""
|
2 |
testing my own vectors
|
3 |
"""
|
4 |
-
|
|
|
|
|
|
|
5 |
import my_new_openai
|
6 |
import time
|
7 |
import streamlit as st
|
|
|
1 |
"""
|
2 |
testing my own vectors
|
3 |
"""
|
4 |
+
import ingest
|
5 |
+
import my_2_sim_search
|
6 |
+
import my_vectors
|
7 |
+
import setup_db
|
8 |
import my_new_openai
|
9 |
import time
|
10 |
import streamlit as st
|
util/ingest.py β ingest.py
RENAMED
File without changes
|
util/my_1_reader.py β my_1_reader.py
RENAMED
File without changes
|
util/my_1_writer.py β my_1_writer.py
RENAMED
File without changes
|
util/my_2_sim_search.py β my_2_sim_search.py
RENAMED
File without changes
|
util/my_vectors.py β my_vectors.py
RENAMED
File without changes
|
util/setup_db.py β setup_db.py
RENAMED
@@ -42,7 +42,7 @@ if __name__ == '__main__':
|
|
42 |
#update_excel_with_sums("KBOB_Klassifizierung.xlsx")
|
43 |
t = time.time()
|
44 |
|
45 |
-
vec_store = load_vectorstore_from_excel("
|
46 |
|
47 |
print(time.time()-t)
|
48 |
for e in vec_store.keys():
|
|
|
42 |
#update_excel_with_sums("KBOB_Klassifizierung.xlsx")
|
43 |
t = time.time()
|
44 |
|
45 |
+
vec_store = load_vectorstore_from_excel("data/KBOB_Klassifizierung.xlsx")
|
46 |
|
47 |
print(time.time()-t)
|
48 |
for e in vec_store.keys():
|