@elevasis/sdk 1.38.0 → 1.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +10 -26
- package/dist/index.d.ts +22 -2
- package/dist/index.js +9 -25
- package/dist/node/index.d.ts +22 -2
- package/dist/test-utils/index.d.ts +24 -3
- package/dist/test-utils/index.js +80 -58
- package/dist/types/worker/adapters/llm.d.ts +1 -1
- package/dist/types/worker/index.d.ts +2 -1
- package/dist/worker/index.js +80 -58
- package/package.json +2 -2
- package/reference/claude-config/hooks/scaffold-registry-reminder.mjs +187 -188
- package/reference/claude-config/sync-notes/2026-07-23-agent-session-memory.md +49 -0
- package/reference/claude-config/sync-notes/2026-07-23-workos-org-marker.md +50 -0
- package/reference/claude-config/sync-notes/2026-07-24-claude-5-models-and-session-surface-fixes.md +116 -0
- package/reference/scaffold/operations/workflow-recipes.md +525 -525
- package/reference/sdk/platform-tools/index.mdx +1 -1
- package/reference/sdk/platform-tools/type-safety.mdx +1 -1
|
@@ -134,7 +134,7 @@ Call any supported LLM from your workflow with no API keys required. Keys are re
|
|
|
134
134
|
| ------------ | --------------------------------------------------------- |
|
|
135
135
|
| `google` | `gemini-3-flash-preview`, `gemini-3.1-flash-lite-preview` |
|
|
136
136
|
| `openai` | `gpt-5`, `gpt-5.4-mini`, `gpt-5.4-nano` |
|
|
137
|
-
| `anthropic` | `claude-sonnet-
|
|
137
|
+
| `anthropic` | `claude-sonnet-5` |
|
|
138
138
|
| `openrouter` | `openrouter/z-ai/glm-5` |
|
|
139
139
|
|
|
140
140
|
**Key params:** `provider`, `model`, `messages` (`{ role, content }[]`), `responseSchema` (optional JSON Schema), `temperature` (optional).
|
|
@@ -19,7 +19,7 @@ The approach: tighten types where misconfiguration is a realistic foot-gun, and
|
|
|
19
19
|
// Required -- both fields must be specified inline
|
|
20
20
|
await llm.generate({
|
|
21
21
|
provider: 'anthropic',
|
|
22
|
-
model: 'claude-sonnet-
|
|
22
|
+
model: 'claude-sonnet-5',
|
|
23
23
|
messages: [...],
|
|
24
24
|
responseSchema: {...},
|
|
25
25
|
})
|