Get GPT like ChatGPT on your terminal
Note: This doesn't use OpenAI ChatGPT, it uses text-davinci-003 model (by default)
You'll need to have your own OpenAi apikey to operate this package.
1. Go to https://beta.openai.com
2. Select you profile menu and go to View API Keys
3. Select + Create new secret key
4. Copy generated key
Get started:
Using tgpt:
npm -g install terminalgpt
or
yarn global add terminalgpt
Run
tgpt chat
ps.: If it is your first time...
A ChatGPT client written in Rust. The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the conversation or expand on the given prompt.
Run a fast ChatGPT-like model locally on your device. This combines the LLaMA foundation model with an open reproduction of Stanford Alpaca a fine-tuning of the base model to obey instructions (akin to the RLHF used to train ChatGPT) and a set of modifications to llama.cpp to add a chat interface. Download the zip file corresponding to your operating system from the latest release. The weights are based on the published fine-tunes from alpaca-lora, converted back into a PyTorch checkpoint...