Spaces:
Sleeping
Sleeping
adding interactions
Browse files
app.py
CHANGED
@@ -92,4 +92,4 @@ def gradio_app():
|
|
92 |
|
93 |
# Launch the Gradio app
|
94 |
if __name__ == "__main__":
|
95 |
-
gradio_app().launch()
|
|
|
92 |
|
93 |
# Launch the Gradio app
|
94 |
if __name__ == "__main__":
|
95 |
+
gradio_app().launch(debug=True)
|
mvp.py
CHANGED
@@ -28,7 +28,7 @@ def create_interactions(db_path = "rag.db"):
|
|
28 |
)""")
|
29 |
conn.close()
|
30 |
|
31 |
-
|
32 |
|
33 |
class Document(LanceModel):
|
34 |
text: str = model.SourceField()
|
|
|
28 |
)""")
|
29 |
conn.close()
|
30 |
|
31 |
+
create_interactions()
|
32 |
|
33 |
class Document(LanceModel):
|
34 |
text: str = model.SourceField()
|