Skip to content

Commit

Permalink
Version updates, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew committed Feb 3, 2024
1 parent f95d18b commit 6fc9413
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ tgpt is a cross-platform command-line interface (CLI) tool that allows you to us
- [KoboldAI](https://koboldai-koboldcpp-tiefighter.hf.space/) (koboldcpp/HF_SPACE_Tiefighter-13B)
- [OpenAI](https://platform.openai.com/docs/guides/text-generation/chat-completions-api) (Requires API Key)
- [Phind](https://www.phind.com/agent) (Phind Model)
- [Llama2](https://www.llama2.ai/) (Llama 2 70b)

**Image Generation Model**: Craiyon V3

Expand Down Expand Up @@ -46,7 +47,7 @@ Options:
Providers:
The default provider is opengpts which uses 'GPT-3.5-turbo' model.
Available providers to use: openai, opengpts, koboldai, phind
Available providers to use: openai, opengpts, koboldai, phind, llama2
Provider: openai
Needs API key to work and supports various models
Expand All @@ -60,12 +61,16 @@ Uses koboldcpp/HF_SPACE_Tiefighter-13B only, answers from novels
Provider: phind
Uses Phind Model. Great for developers
Provider: llama2
Llama 2 is an open source large language model (LLM) developed by Meta AI. Uses llama2-70b by default. Supports other models.
Examples:
tgpt "What is internet?"
tgpt -m
tgpt -s "How to update my system?"
tgpt --provider opengpts "What is 1+1"
tgpt --provider openai --key "sk-xxxx" --model "gpt-3.5-turbo" "What is 1+1"
cat install.sh | tgpt "Explain the code"
```

![demo](https://user-images.githubusercontent.com/66430340/233759296-c4cf8cf2-0cab-48aa-9e84-40765b823282.gif)
Expand Down Expand Up @@ -120,6 +125,11 @@ go install github.com/aandrew-me/tgpt/v2@latest
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned; Invoke-WebRequest https://raw.githubusercontent.com/aandrew-me/tgpt/main/install-win.ps1 -OutFile "$PWD\install-win.ps1"; .\install-win.ps1
``` -->

## Updating ⬆️
If you installed the program with the installation script, you may update it with
```bash
sudo tgpt -u
```
### Proxy

Support:
Expand Down
6 changes: 3 additions & 3 deletions tgpt.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"homepage": "https://github.com/aandrew-me/tgpt",
"version": "2.5.1",
"version": "2.6.0",
"description": "ChatGPT in terminal without needing API keys",
"license": "GPL-3",
"architecture": {
"64bit": {
"url": "https://github.com/aandrew-me/tgpt/releases/download/v2.5.1/tgpt-amd64.exe"
"url": "https://github.com/aandrew-me/tgpt/releases/download/v2.6.0/tgpt-amd64.exe"
},
"32bit": {
"url": "https://github.com/aandrew-me/tgpt/releases/download/v2.5.1/tgpt-i386.exe"
"url": "https://github.com/aandrew-me/tgpt/releases/download/v2.6.0/tgpt-i386.exe"
}
},

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"2.5.1"}
{"version":"2.6.0"}

0 comments on commit 6fc9413

Please sign in to comment.