|
|
|
import { dirtyLLMJsonParser } from "@/lib/dirtyLLMJsonParser" |
|
import { dirtyCaptionCleaner } from "@/lib/dirtyCaptionCleaner" |
|
|
|
import { predict } from "./predict" |
|
import { Preset } from "../engine/presets" |
|
import { LLMResponse } from "@/types" |
|
import { cleanJson } from "@/lib/cleanJson" |
|
import { createZephyrPrompt } from "@/lib/createZephyrPrompt" |
|
|
|
export const getStory = async ({ |
|
preset, |
|
prompt = "", |
|
nbTotalPanels = 4, |
|
}: { |
|
preset: Preset; |
|
prompt: string; |
|
nbTotalPanels: number; |
|
}): Promise<LLMResponse> => { |
|
|
|
|
|
|
|
|
|
|
|
const query = createZephyrPrompt([ |
|
{ |
|
role: "system", |
|
content: [ |
|
`You are a writer specialized in ${preset.llmPrompt}`, |
|
`Please write detailed drawing instructions and a short (2-3 sentences long) speech caption for the ${nbTotalPanels} panels of a new story. Please make sure each of the ${nbTotalPanels} panels include info about character gender, age, origin, clothes, colors, location, lights, etc.`, |
|
`Give your response as a VALID JSON array like this: \`Array<{ panel: number; instructions: string; caption: string}>\`.`, |
|
|
|
`Be brief in your ${nbTotalPanels} instructions and narrative captions, don't add your own comments. The whole story must be captivating, smart, entertaining. Be straight to the point, and never reply things like "Sure, I can.." etc. Reply using valid JSON.` |
|
].filter(item => item).join("\n") |
|
}, |
|
{ |
|
role: "user", |
|
content: `The story is: ${prompt}`, |
|
} |
|
]) + "[{" |
|
|
|
|
|
let result = "" |
|
|
|
try { |
|
|
|
result = `${await predict(query, nbTotalPanels) || ""}`.trim() |
|
if (!result.length) { |
|
throw new Error("empty result!") |
|
} |
|
} catch (err) { |
|
|
|
try { |
|
result = `${await predict(query+".", nbTotalPanels) || ""}`.trim() |
|
if (!result.length) { |
|
throw new Error("empty result!") |
|
} |
|
} catch (err) { |
|
console.error(`prediction of the story failed again 💩`) |
|
throw new Error(`failed to generate the story ${err}`) |
|
} |
|
} |
|
|
|
|
|
const tmp = cleanJson(result) |
|
|
|
let llmResponse: LLMResponse = [] |
|
|
|
try { |
|
llmResponse = dirtyLLMJsonParser(tmp) |
|
} catch (err) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
llmResponse = ( |
|
tmp.split("*") |
|
.map(item => item.trim()) |
|
.map((cap, i) => ({ |
|
panel: i, |
|
caption: cap, |
|
instructions: cap, |
|
})) |
|
) |
|
} |
|
|
|
return llmResponse.map(res => dirtyCaptionCleaner(res)) |
|
} |