Spaces:
Sleeping
Sleeping
Srimanth Agastyaraju
commited on
Commit
·
2c38794
1
Parent(s):
1ec7830
Update app.py prompt UI
Browse files
app.py
CHANGED
@@ -62,8 +62,8 @@ if __name__ == "__main__":
|
|
62 |
"asrimanth/person-thumbs-up-lora-no-cap : <tom_cruise> #thumbsup",
|
63 |
]
|
64 |
current_model = st.selectbox("Choose a model", options=model_options)
|
65 |
-
model,
|
66 |
-
prompt = st.text_input("Enter the prompt:
|
67 |
current_model = current_model.split(" : ")[0]
|
68 |
col1_inp, col2_inp, col_3_inp = st.columns(3)
|
69 |
with col1_inp:
|
|
|
62 |
"asrimanth/person-thumbs-up-lora-no-cap : <tom_cruise> #thumbsup",
|
63 |
]
|
64 |
current_model = st.selectbox("Choose a model", options=model_options)
|
65 |
+
model, _ = current_model.split(" : ")
|
66 |
+
prompt = st.text_input("Enter the prompt: (sample prompts in dropdown)")
|
67 |
current_model = current_model.split(" : ")[0]
|
68 |
col1_inp, col2_inp, col_3_inp = st.columns(3)
|
69 |
with col1_inp:
|