waylaidwanderer / node-chatgpt-api

A client implementation for ChatGPT and Bing AI. Available as a Node.js module, REST API server, and CLI app.
https://www.npmjs.com/package/@waylaidwanderer/chatgpt-api
MIT License
4.19k stars 737 forks source link

manage/resume conversations from '/backend-api/conversations' #139

Open imatrixme opened 1 year ago

imatrixme commented 1 year ago

hi, I noticed that chatgpt calls the api 'https://chat.openai.com/backend-api/conversations?offset=0&limit=20' every time when I refresh the web page. that api responses like this:

{
    "items": [
        {
            "id": "99440dc9-da0f-4004-b322-0ae9c3f45ca0",
            "title": "ABC",
            "create_time": "2023-02-28T09:01:07.992867"
        }
    ],
    "total": 6,
    "limit": 20,
    "offset": 0
}

can this repo fetches my conversations and resume them by the title? I have tons of contexts there.

big thanks!

waylaidwanderer commented 1 year ago

That's not supported right now, but I'll make a note of this as a feature request.