attempt render deploy

This commit is contained in:
Kyle Corbitt
2023-06-26 14:58:01 -07:00
parent 12af15ae32
commit dbc61b8672
7 changed files with 80 additions and 4 deletions

View File

@@ -58,6 +58,7 @@ export default function OutputCell({
if (!output.data) return <CellShell>No output</CellShell>;
return (
// @ts-expect-error TODO proper typing and error checks
<CellShell>{JSON.stringify(output.data.output.choices[0].message.content, null, 2)}</CellShell>
);
}