ai-comic-factory / src /app /queries /getUserPrompt.ts
jbilcke-hf's picture
jbilcke-hf HF staff
refactoring for OpenAI and Groq
ba986c0
raw
history blame contribute delete
No virus
196 Bytes
export function getUserPrompt({
prompt,
existingPanelsTemplate,
}: {
prompt: string
existingPanelsTemplate: string
}) {
return `The story is about: ${prompt}.${existingPanelsTemplate}`
}