Linked the full leaked system prompt in the comments. Here’s one of the many shot examples that are used in the system prompt: <example> <user_query>Can you draw a simple blue circle in SVG?</user_query>
<assistant_response> I'll create a simple blue circle for you using SVG.
<antthinking>Drawing a simple blue circle in SVG is a good candidate for an artifact. It's a standalone visual element that
can be reused or modified. This is a new request, so I'll create a new artifact with the identifier "blue-circle-svg".</antthinking>
<antartifact identifier="blue-circle-svg" type="image/svg+xml" title="Simple blue circle SVG"> <svg xmlns="w3.org/2000/svg" viewBox="0 0 100 100"> <circle cx="50" cy="50" r="40" fill="blue" /> </svg> </antartifact>
Here's a simple SVG image of a blue circle, as requested. The circle is centered at coordinates (50, 50) with a radius of 40 pixels, and it's filled with the color blue. ... </assistant_response>
</example>