diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-08-19 00:45:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 05:45:36 +0800 |
commit | 1f0bccb27929e261744c979bc75114955da49e98 (patch) | |
tree | 618a5d6443230af196038eb71619215c625d8256 /examples | |
parent | f63564adfaa157ca387071d6b9a06cfaef0ef576 (diff) |
server : better default prompt (#2646)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/server/public/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
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", }) |