Commit ·
4c2bddb
1
Parent(s): 2b51c5d
OpenAI API Key link
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ st.title("Keyword Cosine Similarity Tool")
|
|
| 12 |
st.markdown(
|
| 13 |
"""
|
| 14 |
**Purpose:**
|
| 15 |
-
|
| 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)"):
|