Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -7,7 +7,7 @@ from langchain.embeddings import HuggingFaceEmbeddings
|
|
| 7 |
# ------------------------------------
|
| 8 |
st.set_page_config(page_title="RAG Search", page_icon="🔍")
|
| 9 |
|
| 10 |
-
DB_PATH = "
|
| 11 |
query = st.text_input("Enter your query:", "what is verilog")
|
| 12 |
|
| 13 |
# ------------------------------------
|
|
|
|
| 7 |
# ------------------------------------
|
| 8 |
st.set_page_config(page_title="RAG Search", page_icon="🔍")
|
| 9 |
|
| 10 |
+
DB_PATH = "sumedha.sqlite3" # your existing SQLite3/Chroma folder
|
| 11 |
query = st.text_input("Enter your query:", "what is verilog")
|
| 12 |
|
| 13 |
# ------------------------------------
|