Skip to content

Commit fe19675

Browse files
committed
Fix docs links
1 parent 515e844 commit fe19675

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

docs-site/src/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ const redirect_lookup: Record<string, string> = {
5656
'/mcp': '/mcp/overview/',
5757
'/models': '/models/overview/',
5858
'/ag-ui': '/ui/ag-ui/',
59-
'/evals': '/evals/',
60-
'/graph': '/graph/',
61-
'/gateway': '/gateway/overview/',
6259
'/api/ag_ui': '/api/ui/ag_ui/'
6360
}
6461

docs/agents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In typing terms, agents are generic in their dependency and output types, e.g.,
2121
!!! info "Code Examples with Gateway Support"
2222
Throughout this documentation, code examples are provided in two variations using tabs:
2323

24-
- **Pydantic AI Gateway**: Shows how to use examples with the [Pydantic AI Gateway](https://gateway.pydantic.dev/), which provides a unified interface to access multiple LLM models with additional features like failover, budget control, and Logfire observability.
24+
- **Pydantic AI Gateway**: Shows how to use examples with the [Pydantic AI Gateway](gateway.md), which provides a unified interface to access multiple LLM models with additional features like failover, budget control, and automatic [Logfire observability](logfire.md).
2525
- **Pydantic AI**: Shows the direct implementation using Pydantic AI with provider-specific model strings.
2626

2727
Both approaches are functionally equivalent for basic usage. Choose the Gateway tab if you're using Pydantic AI Gateway, or the Pydantic AI tab for direct provider integration.
@@ -123,7 +123,7 @@ There are five ways to run an agent:
123123
- **Gateway format**: `gateway/chat:gpt-5` or `gateway/anthropic:claude-sonnet-4-5`
124124
- **Direct format**: `openai:gpt-5` or `anthropic:claude-sonnet-4-5`
125125

126-
Use the Gateway format if you're routing requests through Pydantic AI Gateway.
126+
Use the Gateway format if you're routing requests through [Pydantic AI Gateway](gateway.md).
127127

128128
Here's a simple example demonstrating the first four:
129129

File renamed without changes.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Realistically though, no list is going to be as convincing as [giving it a try](
7070
- **Direct usage** with provider-specific models (e.g., `openai:gpt-5`)
7171
- **Gateway usage** via Pydantic AI Gateway (e.g., `gateway/chat:gpt-5`)
7272

73-
Look for the tabs at the top of code examples to switch between implementations. [Learn more about the Gateway →](gateway/overview.md)
73+
Look for the tabs at the top of code examples to switch between implementations. [Learn more about the Gateway →](gateway.md)
7474

7575
Here's a minimal example of Pydantic AI:
7676

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you want to install only those dependencies required to use a specific model,
1515

1616
If you're using Pydantic AI Gateway, you'll see "Pydantic AI Gateway" tabs in code examples throughout the documentation. These show how to adapt examples to use the Gateway's unified model interface.
1717

18-
See the [Gateway documentation](gateway/usage.md) for setup instructions.
18+
See the [Gateway documentation](gateway.md) for setup instructions.
1919

2020
## Use with Pydantic Logfire
2121

mkdocs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ nav:
5454
- Multi-Agent Patterns: multi-agent-applications.md
5555
- Testing: testing.md
5656

57-
- Pydantic AI Gateway:
58-
- Overview: gateway/overview.md
57+
- Pydantic AI Gateway: gateway.md
5958

6059
- Pydantic Evals:
6160
- Overview: evals.md

0 commit comments

Comments
 (0)