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
`The user has chosen to use the model named ${args.model}. Begin your response with the following phrase: "The model you've selected is ${args.model}".`,
56
+
"Do not include any additional information about the selected model in this first sentence - ONLY the name.",
57
+
];
58
+
59
+
if(importantRefs){
60
+
content.push(
61
+
"The user included the following context - you may find information in this context useful for your response:",
62
+
JSON.stringify(importantRefs)
63
+
);
64
+
}
65
+
33
66
return{
34
67
model: args.model,
35
68
messages: [
36
69
{
37
70
role: "system",
38
-
content:
39
-
"Begin your response by telling the user the name of your language model.",
0 commit comments