Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ if "full_text" not in st.session_state:
|
|
21 |
st.session_state["full_text"] = ""
|
22 |
|
23 |
# Model selection dropdown
|
24 |
-
model_options = [ "TinyLlama/TinyLlama-1.1B-Chat-v1.0", "
|
25 |
selected_model = st.selectbox("Choose a model:", model_options)
|
26 |
|
27 |
# Create a text input area for user prompts
|
|
|
21 |
st.session_state["full_text"] = ""
|
22 |
|
23 |
# Model selection dropdown
|
24 |
+
model_options = [ "TinyLlama/TinyLlama-1.1B-Chat-v1.0", "EleutherAI/gpt-neo-2.7B", "meta-llama/Llama-Llama-3.2-3B-Instruct", "meta-llama/Llama-Llama-3.2-8B-Instruct", "Qwen/Qwen2.5-1.5B-Instruct", "openai-community/gpt2", "google/gemma-1.1-7b-it", "google/gemma-1.27b-it", "google/gemma-1.2b-it", "google/gemma-1.9b-it", "google/gemma-2.2b-it", "HuggingFaceH4/starchat7b-beta", "distilbert/distilgpt2", "facebook/opt-1.3b", "distributed/optimized=gpt2-1b" ]
|
25 |
selected_model = st.selectbox("Choose a model:", model_options)
|
26 |
|
27 |
# Create a text input area for user prompts
|