Spaces:
Runtime error
Runtime error
Commit
·
9ecaf13
1
Parent(s):
66d523b
infernece api models
Browse files
app.py
CHANGED
|
@@ -15,10 +15,10 @@ st.set_page_config(
|
|
| 15 |
|
| 16 |
st.header("Do It!!!! Ask the Question.....")
|
| 17 |
|
| 18 |
-
col1,col2=st.columns([5,
|
| 19 |
|
| 20 |
question=col1.text_input("Question:")
|
| 21 |
-
model_name=
|
| 22 |
|
| 23 |
submit=st.button("Submit")
|
| 24 |
|
|
|
|
| 15 |
|
| 16 |
st.header("Do It!!!! Ask the Question.....")
|
| 17 |
|
| 18 |
+
col1,col2=st.columns([5,3])
|
| 19 |
|
| 20 |
question=col1.text_input("Question:")
|
| 21 |
+
model_name=col2.selectbox("Model Name",options=["google/flan-t5-large","gpt2-medium","EleutherAI/gpt-neo-125m"])
|
| 22 |
|
| 23 |
submit=st.button("Submit")
|
| 24 |
|