chatgpt-google-extension icon indicating copy to clipboard operation
chatgpt-google-extension copied to clipboard

Is it possible to integrate Turbo model for ChatGPT Plus ?

Open jason1122g opened this issue 2 years ago • 0 comments

Recently, ChatGPT has added a Turbo Model option to the ChatGPT Plus plan, which responds very quickly.
It would be great if this option could be integrated into this extension!

ChatGPT Models
{
    "models": [
        {
            "slug": "text-davinci-002-render-paid",
            "max_tokens": 4097,
            "title": "Default",
            "description": "The standard (Plus) ChatGPT model",
            "tags": [
                "concise"
            ]
        },
        {
            "slug": "text-davinci-002-render-sha",
            "max_tokens": 4097,
            "title": "Turbo",
            "description": "Optimized for speed (alpha, currently available to plus users)",
            "tags": []
        }
    ]
}

https://github.com/wong2/chatgpt-google-extension/blob/v1.17.0/src/background/providers/chatgpt.ts#L64

jason1122g avatar Feb 13 '23 13:02 jason1122g