delightfulrachel commited on
Commit
f8230de
·
verified ·
1 Parent(s): 8d6cfc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -11
app.py CHANGED
@@ -436,17 +436,19 @@ def main():
436
  [object_output, object_validation_output, object_chart]
437
  )
438
 
439
- with gr.Accordion("About This Tool", open=False):
440
- gr.Markdown("""
441
- • Primary Model: Performs the initial code conversion or correction.
442
- Validation Model: Reviews and validates the output from the primary model, identifying potential issues or improvements.
443
- Trigger Correction: Fixes Apex Triggers for B2B LEx compatibility.
444
- Object Conversion: Maps and converts CloudCraze object definitions to B2B LEx.
445
- Model Selection: Choose from Together AI models or Anthropic's Claude models.
446
-
447
- Validation now outputs four key metrics (quality, accuracy, completeness, best practices) as both JSON and a fun chart.
448
- Always review AI-generated code before production use.
449
- """)
 
 
450
 
451
  app.launch()
452
 
 
436
  [object_output, object_validation_output, object_chart]
437
  )
438
 
439
+ gr.Markdown("### About This Tool")
440
+ gr.Markdown(
441
+ """
442
+ **Primary Model**: Performs the initial code conversion or correction.
443
+ **Validation Model**: Reviews and validates the output from the primary model, identifying potential issues or improvements.
444
+ **Trigger Correction**: Fixes Apex Triggers for B2B LEx compatibility.
445
+ **Object Conversion**: Maps and converts CloudCraze object definitions to B2B LEx.
446
+ **Model Selection**: Choose from Together AI models or Anthropic's Claude models.
447
+
448
+ **Validation** now outputs four key metrics (quality, accuracy, completeness, best practices) as both JSON and a fun chart.
449
+ Always review AI-generated code before production use.
450
+ """
451
+ )
452
 
453
  app.launch()
454