anupajose commited on
Commit
f120d9c
·
verified ·
1 Parent(s): 4457dab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ model = SentenceTransformer('all-MiniLM-L6-v2')
11
 
12
  # Load and prepare the FAQ data
13
  def load_static_csv():
14
- df = pd.read_csv("/content/faq.csv")
15
  df.columns = ['question', 'answer']
16
  return df
17
 
 
11
 
12
  # Load and prepare the FAQ data
13
  def load_static_csv():
14
+ df = pd.read_csv("faq.csv")
15
  df.columns = ['question', 'answer']
16
  return df
17