@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.
@@ -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-4-5` |
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-4-5',
22
+ model: 'claude-sonnet-5',
23
23
  messages: [...],
24
24
  responseSchema: {...},
25
25
  })