DineshDyne commited on
Commit
9ecaf13
1 Parent(s): 66d523b

infernece api models

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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,2])
19
 
20
  question=col1.text_input("Question:")
21
- model_name=st.selectbox("Model Name",options=["google/flan-t5-large","meta-llama/Llama-2-7b-chat-hf"])
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