x

Programs, configuration and documentation that don't fit anywhere else
Log | Files | Refs | README | LICENSE

commit 7a579223d798a09846387b8f947b10603c69e553
parent a3fa2e888f4f864d7d31fbacd4d5b154ec9805c3
Author: Oliver Lowe <o@olowe.co>
Date:   Sat,  7 Dec 2024 18:33:47 +1100

llama: bump to Llama 3.3 70B

Diffstat:
Mbin/llama | 4++--
Mman/llama.1 | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/llama b/bin/llama @@ -10,8 +10,8 @@ url = "https://api.groq.com/openai/v1/chat/completions" # llama-3.1-8b-instant # llama-3.2-3b-preview # llama-3.2-1b-preview -model = "llama-3.2-3b-preview" -big = "llama-3.1-70b-versatile" +model = "llama-3.1-8b-instant" +big = "llama-3.3-70b-versatile" def read_token(name): with open(name) as f: diff --git a/man/llama.1 b/man/llama.1 @@ -11,7 +11,7 @@ reads a prompt from the standard input and sends it to a large language model hosted by Groq. The reply is written to the standard output. -The default model is Llama 3.2 3B. +The default model is Llama 3.1 8B. .Pp A Groq API token must be written to .Pa $HOME/.config/groq/token . @@ -19,7 +19,7 @@ A Groq API token must be written to The following flags are understood: .Bl -tag -width Ds .It Fl b -Prompt the "bigger" LLama 3.1 70B model. +Prompt the "bigger" Llama 3.3 70B model. .Sh EXAMPLE .Dl echo 'What is LLM slop?' | llama .Sh EXIT STATUS