File size: 439 Bytes
f0dc1c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Game } from "@/app/games/types"
import { createLlamaPrompt } from "@/lib/createLlamaPrompt"

import { getBase } from "./getBase"
import { predict } from "./predict"

export const getMusicTrack = async ({
  game,
  situation = "",
  actionnable = "",
  newDialogue = "",
  newActionnables = [],
}: {
  game: Game;
  situation: string;
  actionnable: string;
  newDialogue: string;
  newActionnables: string[];
}) => {
  return ""
}