addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / max_tokens / default
Removed value: -512
changedInput schema / properties / max_tokens / description
Previous value: -"Maximum output tokens."New value: +"Maximum number of tokens to generate"
changedInput schema / properties / messages / description
Previous value: -"Native Anthropic conversation messages."New value: +"Messages in the conversation"
addedInput schema / properties / messages / items / additionalProperties
Added value: +{}
removedInput schema / properties / messages / items / properties / content / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "items": {
- "additionalProperties": {},
- "properties": {},
- "type": "object"
- },
- "minItems": 1,
- "type": "array"
- }
-]
addedInput schema / properties / messages / items / properties / content / oneOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "source": {
+ "additionalProperties": {},
+ "properties": {
+ "data": {
+ "type": "string"
+ },
+ "media_type": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "base64",
+ "url"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "text": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "text",
+ "image"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+]
removedInput schema / properties / messages / minItems
Removed value: -1
changedInput schema / properties / metadata / description
Previous value: -"Optional request metadata."New value: +"Request metadata echoed into downstream logs or traces when supported."
changedInput schema / properties / model / description
Previous value: -"Public TokenLab Claude-compatible model ID."New value: +"Model to use (e.g., claude-sonnet-4-6)"
removedInput schema / properties / model / minLength
Removed value: -1
removedInput schema / properties / prompt
Removed value: -{
- "description": "Convenience shortcut for one user text message; do not combine with messages.",
- "minLength": 1,
- "type": "string"
-}
changedInput schema / properties / service_tier / description
Previous value: -"Optional service-tier hint."New value: +"Service tier hint for compatible providers."
removedInput schema / properties / stop_sequences / description
Removed value: -"Optional stop sequences."
addedInput schema / properties / stream
Added value: +{
+ "const": false,
+ "default": false,
+ "description": "MCP tool calls return one final result; omit stream or set it to false.",
+ "type": "boolean"
+}
addedInput schema / properties / stream_options
Added value: +{
+ "additionalProperties": {},
+ "description": "Streaming options such as usage chunk inclusion.",
+ "properties": {},
+ "type": "object"
+}
changedInput schema / properties / system / description
Previous value: -"Optional system prompt."New value: +"System prompt"
removedInput schema / properties / temperature / description
Removed value: -"Optional sampling temperature."
changedInput schema / properties / thinking / description
Previous value: -"Thinking configuration for compatible models."New value: +"Thinking configuration for compatible Anthropic-style models."
removedInput schema / properties / tool_choice / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "additionalProperties": {},
- "properties": {},
- "type": "object"
- }
-]
addedInput schema / properties / tool_choice / oneOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ }
+]
changedInput schema / properties / tools / description
Previous value: -"Native Anthropic tool definitions."New value: +"Tool definitions available to the model."
removedInput schema / properties / top_k / description
Removed value: -"Optional top-k sampling cutoff."
removedInput schema / properties / top_p / description
Removed value: -"Optional nucleus sampling probability."
changedInput schema / required
Previous value: -[
- "model"
-]New value: +[
+ "model",
+ "max_tokens",
+ "messages"
+]