Skip to content

Commit 35dc00a

Browse files
committed
style: format OpenAI transport
1 parent a5ad9e4 commit 35dc00a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/openai/transport.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,12 @@ export class OpenAITransport implements Transport {
523523
// Generate content from structuredContent if not provided
524524
content = Array.isArray(result.content)
525525
? result.content
526-
: [{ type: "text", text: JSON.stringify(result.structuredContent) }];
526+
: [
527+
{
528+
type: "text",
529+
text: JSON.stringify(result.structuredContent),
530+
},
531+
];
527532
} else if (Array.isArray(result.content)) {
528533
content = result.content;
529534
} else {

0 commit comments

Comments
 (0)