Spaces:
Runtime error
Runtime error
File size: 552 Bytes
f0dc1c3 b1ecc22 ab75c71 b1ecc22 ab75c71 b1ecc22 f0dc1c3 b1ecc22 9f14b6c b1ecc22 ab75c71 b1ecc22 f0dc1c3 |
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 |
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 }
} |