Spaces:
Build error
Build error
File size: 958 Bytes
ad02fa3 3c650ed ffa4f55 ad02fa3 5da61b4 ad02fa3 da1e5da 3c650ed ad02fa3 5da61b4 ad02fa3 5da61b4 ad02fa3 3c650ed ffa4f55 ad02fa3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import {
PUBLIC_ASSISTANT_MESSAGE_TOKEN,
PUBLIC_MAX_INPUT_TOKENS,
PUBLIC_PREPROMPT,
PUBLIC_SEP_TOKEN,
PUBLIC_USER_MESSAGE_TOKEN,
} from "$env/static/public";
import type { Message } from "./types/Message";
/**
* Convert [{user: "assistant", content: "hi"}, {user: "user", content: "hello"}] to:
*
* <|assistant|>hi<|endoftext|><|prompter|>hello<|endoftext|><|assistant|>
*/
export function buildPrompt(messages: Pick<Message, "from" | "content">[]): string {
const prompt =
messages
.map(
(m) =>
(m.from === "user"
? PUBLIC_USER_MESSAGE_TOKEN + m.content
: PUBLIC_ASSISTANT_MESSAGE_TOKEN + m.content) +
(m.content.endsWith(PUBLIC_SEP_TOKEN) ? "" : PUBLIC_SEP_TOKEN)
)
.join("") + PUBLIC_ASSISTANT_MESSAGE_TOKEN;
// Not super precise, but it's truncated in the model's backend anyway
return (
PUBLIC_PREPROMPT +
"\n-----\n" +
prompt.split(" ").slice(-parseInt(PUBLIC_MAX_INPUT_TOKENS)).join(" ")
);
}
|