Skip to content

Commit

Permalink
Remove llama2 from help
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew committed May 18, 2024
1 parent 0b4e0a3 commit b60c13e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
tgpt is a cross-platform command-line interface (CLI) tool that allows you to use AI chatbot in your Terminal without requiring API keys.

### Currently available providers:
<!-- - [OpenGPTs](https://opengpts-example-vz4y4ooboq-uc.a.run.app/) (GPT-3.5-turbo) -->
- [OpenGPTs](https://opengpts-example-vz4y4ooboq-uc.a.run.app/) (GPT-3.5-turbo)
- [KoboldAI](https://koboldai-koboldcpp-tiefighter.hf.space/) (koboldcpp/HF_SPACE_Tiefighter-13B)
- [Phind](https://www.phind.com/agent) (Phind Model)
- [Llama2](https://www.llama2.ai/) (Llama 2 70b)
<!-- - [Llama2](https://www.llama2.ai/) (Llama 2 70b) -->
- [Blackbox AI](https://www.blackbox.ai/) (Blackbox model)
- [OpenAI](https://platform.openai.com/docs/guides/text-generation/chat-completions-api) (All models, Requires API Key)

Expand Down Expand Up @@ -49,7 +49,7 @@ Options:
Providers:
The default provider is phind. The AI_PROVIDER environment variable can be used to specify a different provider.
Available providers to use: openai, opengpts, koboldai, phind, llama2, blackboxai, ollama and groq
Available providers to use: openai, opengpts, koboldai, phind, blackboxai, ollama and groq
Provider: openai
Needs API key to work and supports various models. Recognizes the OPENAI_API_KEY and OPENAI_MODEL environment variables.
Expand All @@ -63,9 +63,6 @@ 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.
Provider: blackboxai
Uses BlackBox model. Great for developers
Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ func showHelpMessage() {

boldBlue.Println("\nProviders:")
fmt.Println("The default provider is phind. The AI_PROVIDER environment variable can be used to specify a different provider.")
fmt.Println("Available providers to use: openai, opengpts, koboldai, phind, llama2, blackboxai, ollama and groq")
fmt.Println("Available providers to use: openai, opengpts, koboldai, phind, blackboxai, ollama and groq")

bold.Println("\nProvider: openai")
fmt.Println("Needs API key to work and supports various models. Recognizes the OPENAI_API_KEY and OPENAI_MODEL environment variables.")
Expand All @@ -496,8 +496,8 @@ func showHelpMessage() {
bold.Println("\nProvider: phind")
fmt.Println("Uses Phind Model. Great for developers")

bold.Println("\nProvider: llama2")
fmt.Println("Llama 2 is an open source large language model (LLM) developed by Meta AI. Uses llama2-70b by default. Supports other models.")
// bold.Println("\nProvider: llama2")
// fmt.Println("Llama 2 is an open source large language model (LLM) developed by Meta AI. Uses llama2-70b by default. Supports other models.")

bold.Println("\nProvider: blackboxai")
fmt.Println("Uses BlackBox model. Great for developers")
Expand Down

0 comments on commit b60c13e

Please sign in to comment.