Saiteja Solleti commited on
Commit
73d0932
·
1 Parent(s): 1ad280e

modified UI

Browse files
Files changed (1) hide show
  1. app.py +14 -12
app.py CHANGED
@@ -106,18 +106,20 @@ with gr.Blocks() as iface:
106
  gr.Markdown("## Capstone Project Group 10 ")
107
 
108
  with gr.Row():
109
- question_input = gr.Textbox(label="Enter your Question", lines=2)
110
- dropdown_input = gr.Dropdown(
111
- ["LLaMA 3.3", "Mistral 7B","Deepseek 70b"],
112
- value="LLaMA 3.3",
113
- label="Select a Model"
114
- )
115
-
116
- reranker_dropdown = gr.Dropdown(
117
- list(RERANKING_MODELS.keys()),
118
- value="MS MARCO MiniLM",
119
- label="Select Reranking Model"
120
- )
 
 
121
 
122
  submit_button = gr.Button("Evaluate Model")
123
 
 
106
  gr.Markdown("## Capstone Project Group 10 ")
107
 
108
  with gr.Row():
109
+ question_input = gr.Textbox(label="Enter your Question", lines=5)
110
+ with gr.Column(scale=2):
111
+
112
+ dropdown_input = gr.Dropdown(
113
+ ["LLaMA 3.3", "Mistral 7B","Deepseek 70b"],
114
+ value="LLaMA 3.3",
115
+ label="Select a Model"
116
+ )
117
+
118
+ reranker_dropdown = gr.Dropdown(
119
+ list(RERANKING_MODELS.keys()),
120
+ value="MS MARCO MiniLM",
121
+ label="Select Reranking Model"
122
+ )
123
 
124
  submit_button = gr.Button("Evaluate Model")
125