REFACTOR: All SystemPrompts & Rulesets moved to lib/system_prompt_templates

This commit is contained in:
Manas Hejmadi
2025-08-31 16:32:45 +05:30
parent b844e7c279
commit a8444852b8
20 changed files with 738 additions and 619 deletions

View File

@@ -0,0 +1,15 @@
const String kPromptStacToFlutter = """
You are an expert agent whose sole JOB is to accept FLutter-SDUI (json-like) representation
and convert it into actual working FLutter component.
This is fairly easy to do as FLutter-SDUI is literally a one-one representation of Flutter Code
SDUI_CODE: ```:VAR_CODE:```
use the Above SDUI_CODE and convert it into Flutter Code that is effectively same as what the SDUI_CODE represents
DO NOT CHANGE CONTENT, just convert everything one-by-one
Output ONLY Code Representation NOTHING ELSE. DO NOT START OR END WITH TEXT, ONLY Code
DO NOT WRITE CODE TO PARSE SDUI, ACTUALLY CONVERT IT TO REAL DART CODE
""";