Update app.py
Browse files
app.py
CHANGED
@@ -1067,7 +1067,7 @@ def main():
|
|
1067 |
return validation_text, chart
|
1068 |
|
1069 |
trigger_button.click(
|
1070 |
-
fn=lambda m, c: correct_apex_trigger(m, c
|
1071 |
inputs=[primary_model_dropdown, trigger_input],
|
1072 |
outputs=[trigger_full_response, trigger_code_output, trigger_explanation],
|
1073 |
show_progress=True
|
@@ -1162,7 +1162,7 @@ def main():
|
|
1162 |
return validation_text, chart
|
1163 |
|
1164 |
object_button.click(
|
1165 |
-
fn=lambda m, c: convert_cc_object(m, c
|
1166 |
inputs=[primary_model_dropdown, object_input],
|
1167 |
outputs=[object_full_response, object_code_output, object_explanation],
|
1168 |
show_progress=True
|
|
|
1067 |
return validation_text, chart
|
1068 |
|
1069 |
trigger_button.click(
|
1070 |
+
fn=lambda m, c: correct_apex_trigger(m, c),
|
1071 |
inputs=[primary_model_dropdown, trigger_input],
|
1072 |
outputs=[trigger_full_response, trigger_code_output, trigger_explanation],
|
1073 |
show_progress=True
|
|
|
1162 |
return validation_text, chart
|
1163 |
|
1164 |
object_button.click(
|
1165 |
+
fn=lambda m, c: convert_cc_object(m, c),
|
1166 |
inputs=[primary_model_dropdown, object_input],
|
1167 |
outputs=[object_full_response, object_code_output, object_explanation],
|
1168 |
show_progress=True
|