Update app.py
Browse files
app.py
CHANGED
@@ -436,17 +436,19 @@ def main():
|
|
436 |
[object_output, object_validation_output, object_chart]
|
437 |
)
|
438 |
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
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 |
|