VideoQuest / src /app /queries /getSoundTrack.ts
jbilcke-hf's picture
jbilcke-hf HF staff
up
f0dc1c3
raw
history blame
440 Bytes
import { Game } from "@/app/games/types"
import { createLlamaPrompt } from "@/lib/createLlamaPrompt"
import { getBase } from "./getBase"
import { predict } from "./predict"
export const getSoundTrack = async ({
game,
situation = "",
actionnable = "",
newDialogue = "",
newActionnables = [],
}: {
game: Game;
situation: string;
actionnable: string;
newDialogue: string;
newActionnables: string[];
}) => {
return ""
}