From c93c597a08cf1ebc97cf5f3be043af31e2a9bbfe Mon Sep 17 00:00:00 2001 From: Arne Binder Date: Mon, 30 Oct 2023 17:56:22 +0100 Subject: [PATCH] add prompt template for jordiclive/Llama-2-70b-oasst-1-200 model --- frontend/templates.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/templates.json b/frontend/templates.json index 4f3aec8..e65c4f4 100644 --- a/frontend/templates.json +++ b/frontend/templates.json @@ -31,5 +31,16 @@ "bot_prompt": "ASSISTANT: {bot_message}" }, "system_prior": "Du bist ein hilfreicher Assistent." + }, + "jordiclive/Llama-2-70b-oasst-1-200": { + "description": "Based on information from https://huggingface.co/jordiclive/Llama-2-70b-oasst-1-200", + "template": { + "prompt": "{system_prompt}{history}{user_prompt}<|assistant|>", + "system_prompt": "{system_prior}", + "history": "{history}{user_prompt}{bot_prompt}", + "user_prompt": "<|prompter|>{user_message}", + "bot_prompt": "<|assistant|>{bot_message}" + }, + "system_prior": "" } }