Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ with st.sidebar:
|
|
53 |
api_key = st.text_input("Hugging Face API Key", placeholder="hg-...", type="password")
|
54 |
if not api_key.startswith('hg-'):
|
55 |
st.warning('Please enter your HuggingFace API key!', icon='⚠')
|
56 |
-
huggingface_model = st.selectbox("Choose Model", options=["google/flan-t5-xl"])
|
57 |
model_settings()
|
58 |
case EmbeddingTypes.COHERE:
|
59 |
api_key = st.text_input("Cohere API Key", placeholder="...", type="password")
|
|
|
53 |
api_key = st.text_input("Hugging Face API Key", placeholder="hg-...", type="password")
|
54 |
if not api_key.startswith('hg-'):
|
55 |
st.warning('Please enter your HuggingFace API key!', icon='⚠')
|
56 |
+
huggingface_model = st.selectbox("Choose Model", options=["google/flan-t5-xl", "huggingface/model2", "huggingface/model3"])
|
57 |
model_settings()
|
58 |
case EmbeddingTypes.COHERE:
|
59 |
api_key = st.text_input("Cohere API Key", placeholder="...", type="password")
|