From b60c13ed68e897fed0190b2ecfc730868f5ec51f Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 18 May 2024 11:50:05 +0300 Subject: [PATCH] Remove llama2 from help --- README.md | 9 +++------ main.go | 6 +++--- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2d3cbcc..ee0355e 100644 --- a/README.md +++ b/README.md @@ -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) - [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) + - [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) @@ -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. @@ -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 diff --git a/main.go b/main.go index 8e5316e..019ad35 100644 --- a/main.go +++ b/main.go @@ -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.") @@ -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")