Skip to content

Commit 2933b7d

Browse files
committed
slight error fix of <h2> tag
1 parent 06190d4 commit 2933b7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/browser-rendering/rest-api/json-endpoint.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@ console.log(json);
253253
Browser Rendering can use a custom model for which you supply credentials. List the model(s) in the `custom_ai` array:
254254

255255
- `model` should be formed as `<provider>/<model_name>` and the provider must be one of these [supported providers](/ai-gateway/chat-completion/#supported-providers).
256-
- `authorization` is the bearer token or API key that allows Browser Rendering to call the provider on your behalf.
256+
- `authorization` is the bearer token or API key that allows Browser Rendering to call the provider on your behalf.
257257

258-
This example uses the `custom_ai` parameter to instruct Browser Rendering to use a custom Anthropic model. The prompt asks the model to extract the main <h1> and <h2> headings from the target URL and return them in a structured JSON object.
258+
This example uses the `custom_ai` parameter to instruct Browser Rendering to use a custom Anthropic model. The prompt asks the model to extract the main `<h1>` and `<h2>` headings from the target URL and return them in a structured JSON object.
259259

260260
```bash
261261
curl --request POST \
@@ -305,7 +305,7 @@ curl --request POST \
305305
306306
You may specify multiple models to provide automatic failover. Browser Rendering will attempt the models in order until one succeeds. To add failover, list additional models.
307307
308-
In this example, Browser Rendering first calls claude-sonnet-4-20250514. If that request returns an error, it automatically retries with gpt-4o.
308+
In this example, Browser Rendering first calls claude-sonnet-4-20250514. If that request returns an error, it automatically retries with gpt-4o.
309309
310310
```
311311
"custom_ai": [

0 commit comments

Comments
 (0)