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
@@ -181,17 +182,19 @@ export class ChatGPTApi implements LLMApi {
181
182
constcontent=visionModel
182
183
? awaitpreProcessImageContent(v.content)
183
184
: getMessageTextContent(v);
184
-
messages.push({role: v.role, content });
185
+
if(!(isO1&&v.role==="system"))
186
+
messages.push({role: v.role, content });
185
187
}
186
188
189
+
// O1 not support image, tools (plugin in ChatGPTNextWeb) and system, stream, logprobs, temperature, top_p, n, presence_penalty, frequency_penalty yet.
0 commit comments