Restore Ultracite + fix sidebar (#1233)

This commit is contained in:
Hayden Bleasel 2025-09-21 11:02:31 -07:00 committed by GitHub
parent 8fbfc253fa
commit 947ed094a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
177 changed files with 6908 additions and 8306 deletions

View file

@ -1,13 +1,13 @@
import { generateUUID } from '@/lib/utils';
import { generateUUID } from "@/lib/utils";
export const TEST_PROMPTS = {
SKY: {
MESSAGE: {
id: generateUUID(),
createdAt: new Date().toISOString(),
role: 'user',
content: 'Why is the sky blue?',
parts: [{ type: 'text', text: 'Why is the sky blue?' }],
role: "user",
content: "Why is the sky blue?",
parts: [{ type: "text", text: "Why is the sky blue?" }],
},
OUTPUT_STREAM: [
'data: {"type":"start-step"}',
@ -19,16 +19,16 @@ export const TEST_PROMPTS = {
'data: {"type":"text-end","id":"STATIC_ID"}',
'data: {"type":"finish-step"}',
'data: {"type":"finish"}',
'data: [DONE]',
"data: [DONE]",
],
},
GRASS: {
MESSAGE: {
id: generateUUID(),
createdAt: new Date().toISOString(),
role: 'user',
content: 'Why is grass green?',
parts: [{ type: 'text', text: 'Why is grass green?' }],
role: "user",
content: "Why is grass green?",
parts: [{ type: "text", text: "Why is grass green?" }],
},
OUTPUT_STREAM: [
'data: {"type":"start-step"}',
@ -40,7 +40,7 @@ export const TEST_PROMPTS = {
'data: {"type":"text-end","id":"STATIC_ID"}',
'data: {"type":"finish-step"}',
'data: {"type":"finish"}',
'data: [DONE]',
"data: [DONE]",
],
},
};