docs: fix English link audits (#57039)

Merged via squash.

Prepared head SHA: d20a3b620f
Co-authored-by: velvet-shark <126378+velvet-shark@users.noreply.github.com>
Reviewed-by: @velvet-shark
This commit is contained in:
Radek Sienkiewicz
2026-03-30 01:21:00 +02:00
committed by GitHub
parent 6c91b27756
commit 4680335b2a
14 changed files with 301 additions and 45 deletions

View File

@@ -37,6 +37,7 @@ dispatch.
## Walkthrough
<Steps>
<a id="step-1-package-and-manifest"></a>
<Step title="Package and manifest">
Create the standard plugin files. The `channel` field in `package.json` is
what makes this a channel plugin:
@@ -298,8 +299,9 @@ dispatch.
</Step>
<Step title="Test">
Write colocated tests in `src/channel.test.ts`:
<a id="step-6-test"></a>
<Step title="Test">
Write colocated tests in `src/channel.test.ts`:
```typescript src/channel.test.ts
import { describe, it, expect } from "vitest";

View File

@@ -23,6 +23,7 @@ API key auth, and dynamic model resolution.
## Walkthrough
<Steps>
<a id="step-1-package-and-manifest"></a>
<Step title="Package and manifest">
<CodeGroup>
```json package.json
@@ -319,6 +320,7 @@ API key auth, and dynamic model resolution.
</Step>
<Step title="Add extra capabilities (optional)">
<a id="step-5-add-extra-capabilities"></a>
A provider plugin can register speech, media understanding, image
generation, and web search alongside text inference:
@@ -360,6 +362,7 @@ API key auth, and dynamic model resolution.
</Step>
<Step title="Test">
<a id="step-6-test"></a>
```typescript src/provider.test.ts
import { describe, it, expect } from "vitest";
// Export your provider config object from index.ts or a dedicated file