Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,4 +6,8 @@ from openai.embeddings_utils import get_embedding, cosine_similarity
|
|
6 |
import numpy as np
|
7 |
import streamlit as st
|
8 |
|
|
|
|
|
|
|
|
|
9 |
|
|
|
6 |
import numpy as np
|
7 |
import streamlit as st
|
8 |
|
9 |
+
input_datapath = "fine_food_reviews_with_embeddings_1k.csv"
|
10 |
+
df = pd.read_csv(input_datapath, index_col=0)
|
11 |
+
|
12 |
+
st.title("Semanti Search")
|
13 |
|