NikilDGr8 commited on
Commit
8a150e9
1 Parent(s): d0a33ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -202,11 +202,11 @@ with gr.Blocks() as demo:
202
  textboxes_left = [gr.Textbox(label=oral_health_assessment_form[i], value="", interactive=True) for i in range(3, 9)] # Age, Gender, Chief complaint, Medical history, Dental history, Clinical Findings
203
  with gr.Column():
204
  textboxes_right = [
205
- gr.Dropdown(choices=["NONE", "ORAL MEDICINE & RADIOLOGY", "PERIODONTICS", "ORAL SURGERY", "CONSERVATIVE AND ENDODONTICS", "PROSTHODONTICS", "PEDODONTICS", "ORTHODONTICS"], value="NONE", label="Referred to", interactive=True),
206
  gr.Dropdown(choices=["+", "++", "+++"], label="Calculus", interactive=True),
207
- gr.Dropdown(choices=["-", "+", "++", "+++"], label="Stains", interactive=True),
208
  ]
209
- treatment_plan_dropdown = gr.Dropdown(choices=["Scaling", "Filling", "Pulp therapy/RCT", "Extraction", "Medication", "Referral"], label="Treatment plan", interactive=True)
210
 
211
  oha_output = gr.Textbox(label="OHA Output", value="", interactive=False)
212
  save_button = gr.Button("Save to Supabase", elem_id="save_button", interactive=True)
 
202
  textboxes_left = [gr.Textbox(label=oral_health_assessment_form[i], value="", interactive=True) for i in range(3, 9)] # Age, Gender, Chief complaint, Medical history, Dental history, Clinical Findings
203
  with gr.Column():
204
  textboxes_right = [
205
+ gr.Dropdown(choices=["None", "Oral Medicine and Radiology", "Periodontics", "Oral Surgery", "Conservative and Endodontics", "Prosthodontics", "Pedodontics", "Orthodontics"], label="Referred to", interactive=True),
206
  gr.Dropdown(choices=["+", "++", "+++"], label="Calculus", interactive=True),
207
+ gr.Dropdown(choices=[ "+", "++", "+++"], label="Stains", interactive=True),
208
  ]
209
+ treatment_plan_dropdown = gr.Dropdown(choices=["Scaling", "Filling", "Pulp therapy/RCT", "Extraction", "Medication"], label="Treatment plan", interactive=True)
210
 
211
  oha_output = gr.Textbox(label="OHA Output", value="", interactive=False)
212
  save_button = gr.Button("Save to Supabase", elem_id="save_button", interactive=True)