saritha5 commited on
Commit
4ad3703
·
1 Parent(s): 39f3cf0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -9,6 +9,8 @@ import streamlit as st
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
 
14
 
 
9
  input_datapath = "fine_food_reviews_with_embeddings_1k.csv"
10
  df = pd.read_csv(input_datapath, index_col=0)
11
 
12
+ os.environ["OPENAI_API_KEY"] = "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"
13
+ openai.api_key = "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"
14
  st.title("Semanti Search")
15
 
16