Skip to content

Commit 8ea43ac

Browse files
docs: correct local relative links (#88)
Co-authored-by: Alem Tuzlak <[email protected]>
1 parent 341e180 commit 8ea43ac

File tree

75 files changed

+404
-439
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+404
-439
lines changed

docs/adapters/anthropic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,6 @@ Creates an Anthropic adapter instance.
187187

188188
## Next Steps
189189

190-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
191-
- [Tools Guide](../../guides/tools) - Learn about tools
192-
- [Other Adapters](../openai) - Explore other providers
190+
- [Getting Started](../getting-started/quick-start) - Learn the basics
191+
- [Tools Guide](../guides/tools) - Learn about tools
192+
- [Other Adapters](./openai) - Explore other providers

docs/adapters/gemini.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ Creates a Gemini adapter instance.
151151

152152
## Next Steps
153153

154-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
155-
- [Tools Guide](../../guides/tools) - Learn about tools
156-
- [Other Adapters](../openai) - Explore other providers
154+
- [Getting Started](../getting-started/quick-start) - Learn the basics
155+
- [Tools Guide](../guides/tools) - Learn about tools
156+
- [Other Adapters](./openai) - Explore other providers

docs/adapters/ollama.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,6 @@ Creates an Ollama adapter instance.
188188

189189
## Next Steps
190190

191-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
192-
- [Tools Guide](../../guides/tools) - Learn about tools
193-
- [Other Adapters](../openai) - Explore other providers
191+
- [Getting Started](../getting-started/quick-start) - Learn the basics
192+
- [Tools Guide](../guides/tools) - Learn about tools
193+
- [Other Adapters](./openai) - Explore other providers

docs/adapters/openai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,6 @@ Creates an OpenAI adapter instance.
181181

182182
## Next Steps
183183

184-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
185-
- [Tools Guide](../../guides/tools) - Learn about tools
186-
- [Other Adapters](../anthropic) - Explore other providers
184+
- [Getting Started](../getting-started/quick-start) - Learn the basics
185+
- [Tools Guide](../guides/tools) - Learn about tools
186+
- [Other Adapters](./anthropic) - Explore other providers

docs/api/ai-client.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,6 @@ const client = new ChatClient({
345345

346346
## Next Steps
347347

348-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
349-
- [Connection Adapters](../../guides/connection-adapters) - Learn about adapters
350-
- [@tanstack/ai-react API](../ai-react) - React hooks wrapper
348+
- [Getting Started](../getting-started/quick-start) - Learn the basics
349+
- [Connection Adapters](../guides/connection-adapters) - Learn about adapters
350+
- [@tanstack/ai-react API](./ai-react) - React hooks wrapper

docs/api/ai-react.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,6 @@ Re-exported from `@tanstack/ai`:
311311

312312
## Next Steps
313313

314-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
315-
- [Tools Guide](../../guides/tools) - Learn about the isomorphic tool system
316-
- [Client Tools](../../guides/client-tools) - Learn about client-side tools
314+
- [Getting Started](../getting-started/quick-start) - Learn the basics
315+
- [Tools Guide](../guides/tools) - Learn about the isomorphic tool system
316+
- [Client Tools](../guides/client-tools) - Learn about client-side tools

docs/api/ai-solid.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,6 @@ Re-exported from `@tanstack/ai`:
326326

327327
## Next Steps
328328

329-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
330-
- [Tools Guide](../../guides/tools) - Learn about the isomorphic tool system
331-
- [Client Tools](../../guides/client-tools) - Learn about client-side tools
329+
- [Getting Started](../getting-started/quick-start) - Learn the basics
330+
- [Tools Guide](../guides/tools) - Learn about the isomorphic tool system
331+
- [Client Tools](../guides/client-tools) - Learn about client-side tools

docs/api/ai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,6 @@ const embeddings = await embedding({
323323

324324
## Next Steps
325325

326-
- [Getting Started](../../getting-started/quick-start) - Learn the basics
327-
- [Tools Guide](../../guides/tools) - Learn about tools
328-
- [Adapters](../../adapters/openai) - Explore adapter options
326+
- [Getting Started](../getting-started/quick-start) - Learn the basics
327+
- [Tools Guide](../guides/tools) - Learn about tools
328+
- [Adapters](../adapters/openai) - Explore adapter options

docs/getting-started/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ With the help of adapters, TanStack AI can connect to various LLM providers. Ava
9292

9393
## Next Steps
9494

95-
- [Quick Start Guide](../quick-start) - Get up and running in minutes
96-
- [Tools Guide](../../guides/tools) - Learn about the isomorphic tool system
97-
- [API Reference](../../api/ai) - Explore the full API
95+
- [Quick Start Guide](./quick-start) - Get up and running in minutes
96+
- [Tools Guide](../guides/tools) - Learn about the isomorphic tool system
97+
- [API Reference](../api/ai) - Explore the full API

docs/getting-started/quick-start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,6 @@ chat({ tools: [getProducts] })
189189

190190
## Next Steps
191191

192-
- Learn about [Tools](../../guides/tools) to add function calling
193-
- Check out [Client Tools](../../guides/client-tools) for frontend operations
194-
- See the [API Reference](../../api/ai) for more options
192+
- Learn about [Tools](../guides/tools) to add function calling
193+
- Check out [Client Tools](../guides/client-tools) for frontend operations
194+
- See the [API Reference](../api/ai) for more options

0 commit comments

Comments
 (0)