TaxyAI / browser-extension

Automate your browser with GPT-4
MIT License
941 stars 383 forks source link

Token exceeded from 128000 #57

Open agn-7 opened 6 months ago

agn-7 commented 6 months ago

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 commented 6 months ago

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!