browser-extension icon indicating copy to clipboard operation
browser-extension copied to clipboard

Token exceeded from 128000

Open agn-7 opened this issue 1 year ago • 1 comments

I wanted to test this extension on my local, however, I encountered the following error!

I also test with the different current pages like google, bing, github, etc.

Error:
This model's maximum context length is 128000 tokens. However, your messages resulted in 133758 tokens. Please reduce the length of the messages.

2024-03-06_18-24

agn-7 avatar Mar 07 '24 08:03 agn-7

I also checked the inspect->console and I saw the following error as well:

Refused to set unsafe header "User-Agent"

Then I came up with the issue via the following code changes:

  // const openai = new OpenAIApi(
  //   new Configuration({
  //     apiKey: key,
  //   })
  // );

  // This hardcodes insertion of 'User-Agent'
  let config = new Configuration({ apiKey: key,});
  delete config.baseOptions.headers['User-Agent'];
  const openai = new OpenAIApi(config);

But still, the maximum token issue exists from openai API response with status 400!

agn-7 avatar Mar 11 '24 13:03 agn-7