We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7161429 commit 542b16aCopy full SHA for 542b16a
src/content/docs/ai-gateway/providers/bedrock.mdx
@@ -89,7 +89,7 @@ export default {
89
response.headers.get("content-type")?.includes("application/json")
90
) {
91
const data = await response.json();
92
- return new Response(JSON.stringify(response));
+ return new Response(JSON.stringify(data));
93
} else {
94
return new Response("Invalid response", { status: 500 });
95
}
0 commit comments