Spaces:
Running
Running
File size: 272 Bytes
27e706d | 1 2 3 4 5 6 7 8 9 10 11 | import { ExtractedPatientData } from "../interfaces/extracted-patient.interface";
export function parseGroqResponse(
content: string,
): ExtractedPatientData {
try {
return JSON.parse(content);
} catch {
throw new Error("Groq returned invalid JSON.");
}
} |