stuhlmueller / gpt.el

A simple Emacs package for calling instruction-following language models
MIT License
68 stars 10 forks source link

GPT-3.5? #5

Closed benthamite closed 1 year ago

benthamite commented 1 year ago

Is there a way to make the package use GPT-3.5? Setting gpt-openai-engine to "gpt-3.5-turbo" (which appears to be the name of GPT-3.5 according to this page) does not work unfortunately.

stuhlmueller commented 1 year ago

Yes, the API format for chat engines is different, so an update is needed.

benthamite commented 1 year ago

FYI, this package was just released, which uses an Elisp library for the OpenAI API, so it may not be worth putting in the effort to update this one.

stuhlmueller commented 1 year ago

If we want to continue working on it (maybe as a simpler alternative to the chatgpt package @benthamite mentioned), we could use the openai package that the chatgpt package depends on.

stuhlmueller commented 1 year ago

Implemented in a38c152