From 4f18d400008541e9d2dca9efbc030211bf92e542 Mon Sep 17 00:00:00 2001 From: Webifi Date: Fri, 1 Sep 2023 18:06:04 -0500 Subject: [PATCH] Add base llama-65b model --- src/lib/providers/petals/models.svelte | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/lib/providers/petals/models.svelte b/src/lib/providers/petals/models.svelte index 21d60ec..e48c582 100644 --- a/src/lib/providers/petals/models.svelte +++ b/src/lib/providers/petals/models.svelte @@ -52,20 +52,21 @@ const chatModelBase = { } as ModelDetail export const chatModels : Record = { - // 'enoch/llama-65b-hf': { - // ...chatModelBase, - // label: 'Petals - Llama-65b' - // }, - // 'codellama/CodeLlama-34b-Instruct-hf ': { - // ...chatModelBase, - // label: 'Petals - CodeLlama-34b', - // max: 2048 - // }, + 'enoch/llama-65b-hf': { + ...chatModelBase, + label: 'Petals - Llama-65b', + max: 2048 + }, 'timdettmers/guanaco-65b': { ...chatModelBase, label: 'Petals - Guanaco-65b', max: 2048 }, + // 'codellama/CodeLlama-34b-Instruct-hf ': { + // ...chatModelBase, + // label: 'Petals - CodeLlama-34b', + // max: 2048 + // }, // 'meta-llama/Llama-2-70b-hf': { // ...chatModelBase, // label: 'Petals - Llama-2-70b'