Simon

Results 9 comments of Simon

Hi, I created a PR for this issue: https://github.com/apache/maven/pull/861 Now waiting for reviews.

The problem is when you get a new API instance, for example, this will not retain history: ``` let api = new ChatGPTAPI({ apiKey: process.env.OPENAI }) let res = await...

I'm just catching up on the linked thread https://github.com/transitive-bullshit/chatgpt-api/issues/292. Some takeaways for newcomers like me: - `text-davinci-003` is slightly less optimized for the ChatGPT usecase - The `text-davinci-003` model does...

For me, I use a little retry mechanism because of this intermittent behavior: ``` export async function tryTimes(promiseFn, maxTries=10) { try { return await promiseFn(); } catch (e) { if...

You'd need to submit a feature request to GitHub if you;d like to spoon the potato I guess.

`document.getElementsByClassName("btn btn-sm btn-with-count")[3].innerHTML = 'Spoon'` works perfectly for me (throw it in the browser console and watch the magic happen)

@SuperOP535 Everyone can see it's your idea as it's right above my comment, but your command just didn't seem to work in Chrome.