fix: Point the Go AI SDK routing entries at go-server-sdk-ai

The ldai module moved from github.com/launchdarkly/go-server-sdk/ldai to
its own repository, github.com/launchdarkly/go-server-sdk-ai. The old
module's final release was ldai/v0.9.4, which carries a deprecation
notice, so the migrate skill was telling agents to install a frozen
module.

Ref: AIC-3306
This commit is contained in:
jsonbailey
2026-09-09 17:24:37 -05:00
parent 0aef88f1a4
commit 72032c4df3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ This is the first stage that writes code. It has nine sub-steps.
2. **Install the AI SDK.** Detect the package manager from Step 1, then install:
- Python: `launchdarkly-server-sdk` + `launchdarkly-server-sdk-ai>=0.20.0`
- Node.js/TypeScript: `@launchdarkly/node-server-sdk` + `@launchdarkly/server-sdk-ai@^0.20.0`
- Go: `github.com/launchdarkly/go-server-sdk/v7` + `github.com/launchdarkly/go-server-sdk/ldai`
- Go: `github.com/launchdarkly/go-server-sdk/v7` + `github.com/launchdarkly/go-server-sdk-ai`
Tier-2 provider packages (install in Stage 4, only if you're using the matching provider):
- OpenAI: `launchdarkly-server-sdk-ai-openai>=0.4.0` (Python) / `@launchdarkly/server-sdk-ai-openai@^0.5.5` (Node)
@@ -139,7 +139,7 @@ Feeds into Stage 2 (install + wrap). Quoted from the `ai-configs-relaunch-guides
|----------|----------|--------|------|
| Node.js / TypeScript | `@launchdarkly/node-server-sdk` | `@launchdarkly/server-sdk-ai` | https://docs.launchdarkly.com/sdk/ai/node-js |
| Python | `launchdarkly-server-sdk` | `launchdarkly-server-sdk-ai` | https://docs.launchdarkly.com/sdk/ai/python |
| Go | `github.com/launchdarkly/go-server-sdk/v7` | `github.com/launchdarkly/go-server-sdk/ldai` | https://docs.launchdarkly.com/sdk/ai/go |
| Go | `github.com/launchdarkly/go-server-sdk/v7` | `github.com/launchdarkly/go-server-sdk-ai` | https://docs.launchdarkly.com/sdk/ai/go |
| Ruby | `launchdarkly-server-sdk` | `launchdarkly-server-sdk-ai` | https://docs.launchdarkly.com/sdk/ai/ruby |
| .NET | `LaunchDarkly.ServerSdk` | `LaunchDarkly.ServerSdk.Ai` | https://docs.launchdarkly.com/sdk/ai/dotnet |