Open lykim200 opened 3 weeks ago
i am also receiving the following SSL error when executing the above snippet.
---------------------------------------------------------------------------
SSLError Traceback (most recent call last)
SSLError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1000)
The above exception was the direct cause of the following exception:
MaxRetryError Traceback (most recent call last)
File [), in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
666 try:
--> 667 resp = conn.urlopen(
668 method=request.method,
669 url=url,
670 body=request.body,
671 headers=request.headers,
672 redirect=False,
673 assert_same_host=False,
674 preload_content=False,
675 decode_content=False,
676 retries=self.max_retries,
677 timeout=timeout,
678 chunked=chunked,
679 )
681 except (ProtocolError, OSError) as err:
...
--> 698 raise SSLError(e, request=request)
700 raise ConnectionError(e, request=request)
702 except ClosedPoolError as e:
SSLError: HTTPSConnectionPool(host='gpt4all.io', port=443): Max retries exceeded with url: [/models/models3.json](https://file+.vscode-resource.vscode-cdn.net/models/models3.json) (Caused by SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1000)')))
ps: the proxy is correctly set as i can perform a get request to www.google.com via the following snipet
import requests
response = requests.get('https://www.google.com')
print(response.status_code)
When I execute
model = GPT4All("Meta-Llama-3-8B-Instruct.Q4_0.gguf")
as instructed in the README, I get the following errorIs there an alternative method to get the following README example working in python?