From: Georgi Gerganov Date: Fri, 18 Aug 2023 21:45:36 +0000 (+0300) Subject: server : better default prompt (#2646) X-Git-Tag: gguf-v0.4.0~299 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=1f0bccb27929e261744c979bc75114955da49e98;p=pkg%2Fggml%2Fsources%2Fllama.cpp server : better default prompt (#2646) --- diff --git a/examples/server/public/index.html b/examples/server/public/index.html index f204fff1..5eedb0b2 100644 --- a/examples/server/public/index.html +++ b/examples/server/public/index.html @@ -144,12 +144,12 @@ import { SchemaConverter } from '/json-schema-to-grammar.mjs'; const session = signal({ - prompt: "This is a conversation between user and llama, a friendly chatbot. respond in simple markdown.", + prompt: "This is a conversation between User and Llama, a friendly chatbot. Llama is helpful, kind, honest, good at writing, and never fails to answer any requests immediately and with precision.", template: "{{prompt}}\n\n{{history}}\n{{char}}:", historyTemplate: "{{name}}: {{message}}", transcript: [], type: "chat", - char: "llama", + char: "Llama", user: "User", })