Spaces:
markush1
/
Running on CPU Upgrade

markush1 commited on
Commit
558e6b6
·
verified ·
1 Parent(s): 2e4d4c2

Update app/api/ask-ai/route.ts

Browse files
Files changed (1) hide show
  1. app/api/ask-ai/route.ts +2 -2
app/api/ask-ai/route.ts CHANGED
@@ -53,7 +53,7 @@ export async function POST(request: NextRequest) {
53
  }
54
 
55
  let token = userToken;
56
- let billTo: string | null = null;
57
 
58
  /**
59
  * Handle local usage token, this bypass the need for a user token
@@ -234,7 +234,7 @@ export async function PUT(request: NextRequest) {
234
  const selectedModel = MODELS[0];
235
 
236
  let token = userToken;
237
- let billTo: string | null = null;
238
 
239
  /**
240
  * Handle local usage token, this bypass the need for a user token
 
53
  }
54
 
55
  let token = userToken;
56
+ const billTo: string | null = null;
57
 
58
  /**
59
  * Handle local usage token, this bypass the need for a user token
 
234
  const selectedModel = MODELS[0];
235
 
236
  let token = userToken;
237
+ const billTo: string | null = null;
238
 
239
  /**
240
  * Handle local usage token, this bypass the need for a user token