You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: service/events/prompts.ts
+70-2Lines changed: 70 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -612,11 +612,28 @@ In terms of libraries,
612
612
- You can use Google Fonts
613
613
- Font Awesome for icons: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"></link>
614
614
615
+
Code can be modified locally,
616
+
617
+
- Can use the element attribute data-uid="$id" to find the element and modify it.
618
+
- If need to delete, Delete the element use attribute data-uid="$id" like so:
619
+
input:
620
+
<div>
621
+
<h2>*</h2>
622
+
<div data-uid="$id">
623
+
****
624
+
</div>
625
+
</div>
626
+
627
+
output:
628
+
<div>
629
+
<h2>*</h2>
630
+
</div>
631
+
615
632
Return only the full code in <html></html> tags.
616
633
Do not include markdown "\`\`\`" or "\`\`\`html" at the start or end.
617
-
"""
634
+
`
618
635
619
-
IMPORTED_CODE_BOOTSTRAP_SYSTEM_PROMPT = """
636
+
constIMPORTED_CODE_BOOTSTRAP_SYSTEM_PROMPT=`
620
637
You are an expert Bootstrap developer.
621
638
622
639
- Do not add comments in the code such as "<!-- Add other navigation links as needed -->" and "<!-- ... other news items ... -->" in place of writing the full code. WRITE THE FULL CODE.
@@ -629,6 +646,23 @@ In terms of libraries,
629
646
- You can use Google Fonts
630
647
- Font Awesome for icons: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"></link>
631
648
649
+
Code can be modified locally,
650
+
651
+
- Can use the element attribute data-uid="$id" to find the element and modify it.
652
+
- If need to delete, Delete the element use attribute data-uid="$id" like so:
653
+
input:
654
+
<div>
655
+
<h2>*</h2>
656
+
<div data-uid="$id">
657
+
****
658
+
</div>
659
+
</div>
660
+
661
+
output:
662
+
<div>
663
+
<h2>*</h2>
664
+
</div>
665
+
632
666
Return only the full code in <html></html> tags.
633
667
Do not include markdown "\`\`\`" or "\`\`\`html" at the start or end.
0 commit comments