Skip to content

Commit 5b6f9f8

Browse files
authored
Merge pull request #1560 from tailor-platform/docs/aigateway-no-provider
docs(aigateway): present supported models without naming backend providers
2 parents e1c9e49 + 1899633 commit 5b6f9f8

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@tailor-platform/sdk": patch
3+
---
4+
5+
Update AI Gateway documentation to present supported models without naming backend providers

packages/sdk/docs/services/aigateway.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# AI Gateway
22

3-
AI Gateway provides a unified endpoint for accessing multiple LLM providers (Azure OpenAI, Google Vertex AI Gemini, Anthropic via Vertex AI) through a single OpenAI-compatible API, with platform-managed credentials and workspace-scoped authentication.
3+
AI Gateway provides a unified endpoint for accessing a range of large language models through a single OpenAI-compatible API, with platform-managed credentials and workspace-scoped authentication.
44

55
## Overview
66

77
AI Gateway provides:
88

9-
- A unified, OpenAI-compatible endpoint for multiple LLM providers
9+
- A unified, OpenAI-compatible endpoint for multiple LLM models
1010
- Mandatory authentication via your workspace's auth (request tokens are resolved against the configured auth namespace)
1111
- Per-workspace isolation: each gateway is provisioned with its own platform-assigned URL
1212
- Optional CORS allow-list for browser-based clients
@@ -31,6 +31,7 @@ const aiGateway = defineAIGateway("my-aigateway", {
3131
});
3232

3333
export default defineConfig({
34+
name: "my-app",
3435
aiGateways: [aiGateway],
3536
});
3637
```
@@ -80,6 +81,7 @@ const website = defineStaticWebSite("my-frontend", {
8081
});
8182

8283
const aiGateway = defineAIGateway("my-aigateway", {
84+
// Name of an auth namespace in your workspace; request tokens are resolved against it.
8385
authNamespace: "default",
8486
cors: [website.url],
8587
});

0 commit comments

Comments
 (0)