jbilcke-hf's picture
jbilcke-hf HF staff
small fix
9f14b6c
raw
history blame contribute delete
552 Bytes
import { Game } from "@/app/games/types"
export const getBase = ({
game,
situation = "",
lastEvent = "",
}: {
game: Game;
situation: string;
lastEvent: string;
}) => {
const initialPrompt = [...game.getScenePrompt()].join(", ")
const currentPrompt = situation
? [...game.getScenePrompt(situation)].join(", ")
: initialPrompt
const userSituationPrompt = [
...game.description,
`Player is currently in "${currentPrompt}".`,
lastEvent
].join(" ")
return { initialPrompt, currentPrompt, userSituationPrompt }
}