prettier side panel

This commit is contained in:
Kyle Corbitt
2023-06-26 18:25:21 -07:00
parent 0646fc0ba3
commit cd9e7bce1a
5 changed files with 63 additions and 29 deletions

View File

@@ -47,7 +47,7 @@ export const experimentsRouter = createTRPCRouter({
messages: [
{
role: "system",
content: "count to three in Spanish...",
content: "count to three in {{input}}...",
},
],
},
@@ -56,7 +56,13 @@ export const experimentsRouter = createTRPCRouter({
prisma.testScenario.create({
data: {
experimentId: exp.id,
variableValues: {},
variableValues: { input: "Spanish" },
},
}),
prisma.templateVariable.create({
data: {
experimentId: exp.id,
label: "input",
},
}),
]);