mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-08-08 11:27:14 +00:00
Ssl handshake experiment.
This commit is contained in:
parent
a092409192
commit
9dbeffc888
@ -68,6 +68,9 @@ void Download::updateModelList()
|
|||||||
{
|
{
|
||||||
QUrl jsonUrl("http://gpt4all.io/models/models.json");
|
QUrl jsonUrl("http://gpt4all.io/models/models.json");
|
||||||
QNetworkRequest request(jsonUrl);
|
QNetworkRequest request(jsonUrl);
|
||||||
|
QSslConfiguration conf = request.sslConfiguration();
|
||||||
|
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
|
||||||
|
request.setSslConfiguration(conf);
|
||||||
QNetworkReply *jsonReply = m_networkManager.get(request);
|
QNetworkReply *jsonReply = m_networkManager.get(request);
|
||||||
connect(jsonReply, &QNetworkReply::finished, this, &Download::handleJsonDownloadFinished);
|
connect(jsonReply, &QNetworkReply::finished, this, &Download::handleJsonDownloadFinished);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user