From 309bab496555eea2bdb964c06cfc68038cfa9294 Mon Sep 17 00:00:00 2001 From: BinBin He Date: Thu, 9 Nov 2023 00:41:33 -0800 Subject: [PATCH] Feature: Adding model names for LLAMA2 and Mistral. --- completion.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/completion.go b/completion.go index 2709c8b03..3b517a920 100644 --- a/completion.go +++ b/completion.go @@ -56,6 +56,9 @@ const ( GPT3Ada002 = "ada-002" GPT3Babbage = "babbage" GPT3Babbage002 = "babbage-002" + + LLAMA2DOT70B = "meta-llama/Llama-2-70b-chat-hf" + MISTRALInstructDOT7B = "mistralai/Mistral-7B-Instruct-v0.1" ) // Codex Defines the models provided by OpenAI.