ai-comic-factory / src /lib /dirtyLLMJsonParser.ts
jbilcke-hf's picture
jbilcke-hf HF staff
try to improve robustness of LLM responses
2f7798c
raw
history blame
No virus
420 Bytes
import { LLMResponse } from "@/types"
export function dirtyLLMJsonParser(input: string): string[] {
// we only keep what's after the first [
let jsonOrNot = `[${input.split("[").pop() || ""}`
// and before the first ]
jsonOrNot = `${jsonOrNot.split("]").shift() || ""}]`
const jsonData = JSON.parse(jsonOrNot) as LLMResponse
const captions = jsonData.map(item => item.caption.trim())
return captions
}