Spaces:
Sleeping
Sleeping
Aishwarya Solanki
commited on
Commit
·
b128bc4
1
Parent(s):
b5bfff3
checking
Browse files
app.py
CHANGED
@@ -95,6 +95,7 @@ with gr.Blocks() as ui:
|
|
95 |
|
96 |
with gr.Column(scale=2, min_width=600):
|
97 |
message = gr.Textbox(label="", value=message, interactive=False, visible=True)
|
|
|
98 |
temperature = gr.Slider(0.0, 1.0, value=0.7, step = 0.01, label="Temperature", info="Set the Temperature")
|
99 |
top_k = gr.Slider(1, 10, value=3, step = 1, label="top-k value", info="Set the 'k' for top-k LLM responses")
|
100 |
symptoms = gr.Textbox(label="Add the symptom data in the input to receive diagnosis")
|
|
|
95 |
|
96 |
with gr.Column(scale=2, min_width=600):
|
97 |
message = gr.Textbox(label="", value=message, interactive=False, visible=True)
|
98 |
+
output = gr.Textbox(label="Model output status", value="Model hasn't run yet.")
|
99 |
temperature = gr.Slider(0.0, 1.0, value=0.7, step = 0.01, label="Temperature", info="Set the Temperature")
|
100 |
top_k = gr.Slider(1, 10, value=3, step = 1, label="top-k value", info="Set the 'k' for top-k LLM responses")
|
101 |
symptoms = gr.Textbox(label="Add the symptom data in the input to receive diagnosis")
|