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
Copy file name to clipboardExpand all lines: web/src/app/api/v1/chat/completions/_post.ts
+26-14Lines changed: 26 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,9 @@ import {
55
55
}from'@/llm-api/siliconflow'
56
56
import{
57
57
handleOpenAINonStream,
58
-
OPENAI_SUPPORTED_MODELS,
58
+
handleOpenAIStream,
59
+
isOpenAIDirectModel,
60
+
OpenAIError,
59
61
}from'@/llm-api/openai'
60
62
import{
61
63
handleOpenRouterNonStream,
@@ -266,7 +268,7 @@ export async function postChatCompletions(params: {
266
268
returnNextResponse.json(
267
269
{
268
270
error: 'free_mode_unavailable',
269
-
message: 'Free mode is not available outside of the United States and Canada. Please upgrade to a paid plan to use Codebuff outside the US and Canada.',
271
+
message: 'Free mode is not available in your country.',
270
272
},
271
273
{status: 403},
272
274
)
@@ -421,6 +423,7 @@ export async function postChatCompletions(params: {
0 commit comments