Spaces:
Running
Running
Saiteja Solleti
commited on
Commit
·
73d0932
1
Parent(s):
1ad280e
modified UI
Browse files
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=
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
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 |
|