diff --git a/content/examples/02-next-pages/01-basics/01-generating-text.mdx b/content/examples/02-next-pages/01-basics/01-generating-text.mdx index 4e34ff2c6046..4a4a6646e524 100644 --- a/content/examples/02-next-pages/01-basics/01-generating-text.mdx +++ b/content/examples/02-next-pages/01-basics/01-generating-text.mdx @@ -70,3 +70,7 @@ export async function POST(req: Request) { return Response.json({ text }); } ``` + +--- + + diff --git a/content/examples/02-next-pages/01-basics/02-streaming-text-generation.mdx b/content/examples/02-next-pages/01-basics/02-streaming-text-generation.mdx index 4099f249c4b5..1204227fe483 100644 --- a/content/examples/02-next-pages/01-basics/02-streaming-text-generation.mdx +++ b/content/examples/02-next-pages/01-basics/02-streaming-text-generation.mdx @@ -59,3 +59,7 @@ export async function POST(req: Request) { return result.toAIStreamResponse(); } ``` + +--- + + diff --git a/content/examples/02-next-pages/01-basics/03-generating-object.mdx b/content/examples/02-next-pages/01-basics/03-generating-object.mdx index 42217147b0cb..f423ad24653b 100644 --- a/content/examples/02-next-pages/01-basics/03-generating-object.mdx +++ b/content/examples/02-next-pages/01-basics/03-generating-object.mdx @@ -104,3 +104,7 @@ export async function POST(req: Request) { return Response.json({ object }); } ``` + +--- + + diff --git a/content/examples/02-next-pages/05-chat/01-generate-chat-completion.mdx b/content/examples/02-next-pages/05-chat/01-generate-chat-completion.mdx index 2c8db6807611..99cb1c5d1bb2 100644 --- a/content/examples/02-next-pages/05-chat/01-generate-chat-completion.mdx +++ b/content/examples/02-next-pages/05-chat/01-generate-chat-completion.mdx @@ -102,3 +102,7 @@ export async function POST(req: Request) { return Response.json({ messages: responseMessages }); } ``` + +--- + + diff --git a/content/examples/02-next-pages/05-chat/02-stream-chat-completion.mdx b/content/examples/02-next-pages/05-chat/02-stream-chat-completion.mdx index c4beb5a4b4b2..9d75144d1e4a 100644 --- a/content/examples/02-next-pages/05-chat/02-stream-chat-completion.mdx +++ b/content/examples/02-next-pages/05-chat/02-stream-chat-completion.mdx @@ -74,3 +74,7 @@ export async function POST(req: Request) { return result.toAIStreamResponse(); } ``` + +--- + + diff --git a/content/examples/02-next-pages/10-tools/01-call-tool.mdx b/content/examples/02-next-pages/10-tools/01-call-tool.mdx index 62685f393ed7..53f1a6e210ec 100644 --- a/content/examples/02-next-pages/10-tools/01-call-tool.mdx +++ b/content/examples/02-next-pages/10-tools/01-call-tool.mdx @@ -112,3 +112,7 @@ export async function POST(req: Request) { return result.toAIStreamResponse(); } ``` + +--- + + diff --git a/content/examples/02-next-pages/10-tools/05-call-tools-in-parallel.mdx b/content/examples/02-next-pages/10-tools/05-call-tools-in-parallel.mdx index 98833173df93..03c75f7dfeaf 100644 --- a/content/examples/02-next-pages/10-tools/05-call-tools-in-parallel.mdx +++ b/content/examples/02-next-pages/10-tools/05-call-tools-in-parallel.mdx @@ -112,3 +112,7 @@ export async function POST(req: Request) { return result.toAIStreamResponse(); } ``` + +--- + + diff --git a/content/examples/02-next-pages/15-assistants/01-stream-assistant-responses.mdx b/content/examples/02-next-pages/15-assistants/01-stream-assistant-responses.mdx index 5c801a2d31b7..20a26be07820 100644 --- a/content/examples/02-next-pages/15-assistants/01-stream-assistant-responses.mdx +++ b/content/examples/02-next-pages/15-assistants/01-stream-assistant-responses.mdx @@ -83,3 +83,7 @@ export async function POST(req: Request) { ); } ``` + +--- + + diff --git a/content/examples/02-next-pages/15-assistants/05-stream-assistant-responses-with-tools.mdx b/content/examples/02-next-pages/15-assistants/05-stream-assistant-responses-with-tools.mdx index 8bdb5c8fc85d..7cfa53129935 100644 --- a/content/examples/02-next-pages/15-assistants/05-stream-assistant-responses-with-tools.mdx +++ b/content/examples/02-next-pages/15-assistants/05-stream-assistant-responses-with-tools.mdx @@ -140,3 +140,7 @@ export async function POST(req: Request) { ); } ``` + +--- + +