Skip to content

Commit b60c13e

Browse files
author
Andrew
committed
Remove llama2 from help
1 parent 0b4e0a3 commit b60c13e

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
tgpt is a cross-platform command-line interface (CLI) tool that allows you to use AI chatbot in your Terminal without requiring API keys.
1010

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

@@ -49,7 +49,7 @@ Options:
4949
5050
Providers:
5151
The default provider is phind. The AI_PROVIDER environment variable can be used to specify a different provider.
52-
Available providers to use: openai, opengpts, koboldai, phind, llama2, blackboxai, ollama and groq
52+
Available providers to use: openai, opengpts, koboldai, phind, blackboxai, ollama and groq
5353
5454
Provider: openai
5555
Needs API key to work and supports various models. Recognizes the OPENAI_API_KEY and OPENAI_MODEL environment variables.
@@ -63,9 +63,6 @@ Uses koboldcpp/HF_SPACE_Tiefighter-13B only, answers from novels
6363
Provider: phind
6464
Uses Phind Model. Great for developers
6565
66-
Provider: llama2
67-
Llama 2 is an open source large language model (LLM) developed by Meta AI. Uses llama2-70b by default. Supports other models.
68-
6966
Provider: blackboxai
7067
Uses BlackBox model. Great for developers
7168

main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ func showHelpMessage() {
482482

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

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

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

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

0 commit comments

Comments
 (0)