Search notes:

ChatGPT

ChatGPT is a fine-tuned version of GPT-3.5 and GPT-4.

2024-09-22 - Cannot login anymore

On 2024-09-22, all of a sudden, I was unable to login to my ChatGPT account with Firefox using the URL https://chatgpt.com/auth/login: when clicking on Log in, nothing would happen, not even an error message would be displayed.
Using ctrl+shift+e, under the network tab, I found the error message Uncaught TypeError: Intl.Segmenter is not a constructor.
As per this link, I was able to create a workaround with the following Tampermonkey script:
// ==UserScript==
// @name         Intl.Segmenter Polyfill for ChatGPT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fix missing Intl.Segmenter in Firefox ESR
// @match        https://chatgpt.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (!Intl.Segmenter) {
        Intl.Segmenter = function() {
            return {
                segment: () => [{segment: 'fallback'}]
            };
        };
    }
})();

See also

As per CODEFUSION: A Pre-trained Diffusion Model for Code Generation (2023, Mukul Singh et al.), ChatGPT has 20 B parameters.
Generative pre-trained transformers (GPT)

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758201479, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/Artificial-intelligence/language-model/LLM/GPT/Chat(69): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78