Coder Social home page Coder Social logo

{"_action":"_ask","error":"an error occurred HTTPSConnectionPool(host='api.openai.com', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001F52CF32190>: Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it')))","success":false} about chatgpt-clone HOT 23 OPEN

xtekky avatar xtekky commented on May 14, 2024 5
{"_action":"_ask","error":"an error occurred HTTPSConnectionPool(host='api.openai.com', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError(': Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it')))","success":false}

from chatgpt-clone.

Comments (23)

chekamarue avatar chekamarue commented on May 14, 2024 12

edit config.json and enter api key !
set False for proxy

from chatgpt-clone.

maxens-git avatar maxens-git commented on May 14, 2024 7

I have the same message error

from chatgpt-clone.

neildmd avatar neildmd commented on May 14, 2024 5

I have almost the identical error.

{"_action":"_ask","error":"an error occurred HTTPSConnectionPool(host='api.openai.com', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f943d6ae970>: Failed to establish a new connection: [Errno 111] Connection refused')))","success":false}

The default config.json contains this section:

"openai_api_base": "https://api.openai.com", "proxy": { "enable": true, "http": "127.0.0.1:7890", "https": "127.0.0.1:7890" }

It looks like it's expecting a proxy to be running locally on port 7890. I tried setting the enable option to false but I still get the error above.

from chatgpt-clone.

MortiMer0101 avatar MortiMer0101 commented on May 14, 2024 1

When I ask something, it never answers me. Any help?

from chatgpt-clone.

luisf371 avatar luisf371 commented on May 14, 2024 1

Because of the way docker works, the config.json is burned INTO the image when you first build it, you can create a hard link between your local config.json and the one inside the docker image, or you can re-build the image with the update config.json with the steps below.

1) docker-compose down
2) make changes to config.json (nano config.json)
3) docker-compose up -d --build

-d starts it in daemon mode (background) and --build forces to rebuild the image with any updated files.

from chatgpt-clone.

xinoxme avatar xinoxme commented on May 14, 2024

Screenshot (1145)

from chatgpt-clone.

metadreamx avatar metadreamx commented on May 14, 2024

Getting the same error, have not seen any feed back on this error so far.

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

Same here.

{"_action":"_ask","error":"an error occurred HTTPSConnectionPool(host='api.openai.com', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x0000020E2C832C50>: Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it')))","success":false}

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

api key was already in there.
I set proxy to false, but that gets me:
"I apologize, but it seems that I am having difficulty connecting to the OpenAI server. Please check your internet connection and try again later."

..and in the console:
"
list index out of range
None
- - [01/May/2023 15:13:59] "POST /backend-api/v2/conversation HTTP/1.1" 200 -
list index out of range
None
list index out of range
None
list index out of range
None
list index out of range
None
Expecting value: line 1 column 2 (char 1)
<traceback object at 0x000002077DD0D040>
list index out of range
None
"

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

Following up... I cleared all conversations in the web gui and it's working properly now.
Thanks for the help.
The fix: set the proxy false in config.json
"proxy": {
"enable": false,

from chatgpt-clone.

xinoxme avatar xinoxme commented on May 14, 2024

edit config.json and enter api key ! set False for proxy

it did not work

from chatgpt-clone.

metadreamx avatar metadreamx commented on May 14, 2024

Yeah same, I think I was under the impression there was some kind of reversed engendered api that I. Wouldn't need to use my own. This you need an api key.

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

Check out the author's other project - gpt4free - that's the reverse engineered API. This isn't that.

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

edit config.json and enter api key ! set False for proxy

it did not work

I had to restart the script, restart the browser, and clear all conversations to get it working after the changes.

from chatgpt-clone.

xinoxme avatar xinoxme commented on May 14, 2024

edit config.json and enter api key ! set False for proxy

it did not work

I had to restart the script, restart the browser, and clear all conversations to get it working after the changes.

did it work?

from chatgpt-clone.

jp7189 avatar jp7189 commented on May 14, 2024

edit config.json and enter api key ! set False for proxy

it did not work

I had to restart the script, restart the browser, and clear all conversations to get it working after the changes.

did it work?

Yes. It worked fine... two days ago. When I tried it today (with no changes) I don't get any response at all. No errors, it just sticks on generating forever.

from chatgpt-clone.

duringleaves avatar duringleaves commented on May 14, 2024

See the same problem. config.json looks fine, API key is good. cleared conversations, restarted script. no change.

from chatgpt-clone.

duringleaves avatar duringleaves commented on May 14, 2024

set proxy: false and it works a little better now except the console shows a lot of "list index out of range" errors now. gpt-35-turbo works, but gpt-4 fails

from chatgpt-clone.

NOONE1526 avatar NOONE1526 commented on May 14, 2024

after i changed true to false all modes stopped working

from chatgpt-clone.

Mario-119 avatar Mario-119 commented on May 14, 2024

after i changed true to false all modes stopped working

Likewise in my case, I just get no response no matter if I use gpt-3.5 or gpt-4

from chatgpt-clone.

SidJnsn66 avatar SidJnsn66 commented on May 14, 2024

Luisf371's comment on May 4 corrected the problem for me, after changing the proxy term to false in config.json. Thank you, I would have never figured that out!

from chatgpt-clone.

fsantamaria1 avatar fsantamaria1 commented on May 14, 2024

If you have set the proxy to false and added the API key and it still doesn't work, then it could be an issue related to your OpenAI account since they only let you use the API for free for the first three months after account creation. Unfortunately, the only solution to that issue is adding a payment method here. Keep in mind that you can set usage limits here.

from chatgpt-clone.

GuoWei96 avatar GuoWei96 commented on May 14, 2024

Thank you for your open-source project. I have identified a bug
When the input content is too much, it will exceed the range of the input box

from chatgpt-clone.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.