ReithBjarkan commited on
Commit
4c2bddb
·
1 Parent(s): 2b51c5d

OpenAI API Key link

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,7 +12,7 @@ st.title("Keyword Cosine Similarity Tool")
12
  st.markdown(
13
  """
14
  **Purpose:**
15
- Quickly remove irrelevant keywords from your keyword research and move to the next step in your optimization!
16
  """
17
  )
18
 
@@ -27,7 +27,7 @@ st.text_area(
27
  )
28
  keywords = st.session_state.keywords
29
  model_name = st.selectbox("Select Embedding Model", ["sentence-transformers/LaBSE", "sentence-transformers/all-MiniLM-L6-v2", "OpenAI Embeddings"])
30
- openai_api_key = st.text_input("OpenAI API Key (optional)", type="password")
31
 
32
  # Instructions tooltip
33
  with st.expander("ℹ️ Instructions (click for details)"):
 
12
  st.markdown(
13
  """
14
  **Purpose:**
15
+ Elevate the most semantically relevant queries from keyword research.
16
  """
17
  )
18
 
 
27
  )
28
  keywords = st.session_state.keywords
29
  model_name = st.selectbox("Select Embedding Model", ["sentence-transformers/LaBSE", "sentence-transformers/all-MiniLM-L6-v2", "OpenAI Embeddings"])
30
+ openai_api_key = st.text_input("OpenAI API Key (optional) 🔗 [Get API Key](https://platform.openai.com/api-keys)", type="password")
31
 
32
  # Instructions tooltip
33
  with st.expander("ℹ️ Instructions (click for details)"):