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
`Given this prompt: ${switchModesPrompt} grade the response from 1 to 10 in the format of "Grade: (1-10)": `+
36
-
messages
37
-
.filter(({ type })=>type==="say")
38
-
.map(({ text })=>text??"")
39
-
.join("\n")
38
+
constresponse=messages
39
+
.filter(({ type, say, partial })=>say==="text")
40
+
.map(({ text })=>text??"")
41
+
.join("\n")
42
+
43
+
constgradePrompt=`Given this prompt: ${switchModesPrompt} grade the response from 1 to 10 in the format of "Grade: (1-10)". For example: Grade 7\n\nResponse: ${response}`
0 commit comments