Use the power of ChatGPT’s AI on the humble Raspberry Pi, all thanks to a clever Python library and a few lines of code.
How to Run ChatGPT on Raspberry Pi or PC : Read more
How to Run ChatGPT on Raspberry Pi or PC : Read more
The scheduled forum maintenance has now been completed. If you spot any issues, please report them here in this thread. Thank you!
text-davinci-003 is a model used by ChatGPT just as text-curie-001, text-babbage-001 & text-ada-001 but this has nothing to do with the official API as any other front end can submit queries to these data sets and receive a similar response, in the same sense that stable diffusion uses different "models".This article is plain wrong. The ChatGPT API is not yet released and the model suggested in the article - "text-davinci-003" is a GPT3 model whereas ChatGPT is a separate GPT3.5 model trained on InstructGPT to follow instructions properly.
except KeyboardInterrupt:
print("\nExiting ChatGPT")
except KeyboardInterrupt:
print("\nExiting ChatGPT")
This article is not anything to do with running any language model (GPT or otherwise) on a Raspberry Pi or PC. It is merely how to interface with a language model run by a third party.Run ChatGPT on Raspberry Pi or PC
text-davinci-003 is a model used by ChatGPT just as text-curie-001, text-babbage-001 & text-ada-001 but this has nothing to do with the official API as any other front end can submit queries to these data sets and receive a similar response, in the same sense that stable diffusion uses different "models".
You may want to research a bit more on this topic before accusing any articles of being incorrect,.... if anything there's just a small fix needed
the complete code listing contains a syntax error
Python:except KeyboardInterrupt: print("\nExiting ChatGPT")
should be
Python:except KeyboardInterrupt: print("\nExiting ChatGPT")