/embedded-anthropic | Type: Embedded | PCID required: No
Tools
| Tool | Description |
|---|---|
embedded-anthropic_generate | Generate text using Anthropic Claude models |
embedded-anthropic_generate
Generate text using Anthropic Claude models Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | No | "Sonnet-4.5" | Anthropic Claude model to use: - Haiku-4.5: Fastest model with near-frontier intelligence - Sonnet-4.5: Best balance of speed and intelligence (default) - Opus-4.6: Most intelligent model for agents and complex coding - Opus-4.7: Latest Opus, most intelligent model |
systemPrompt | string | No | — | System prompt to set behavior and context |
userPrompt | string | Yes | — | User prompt containing the main request or conversation |
fileUrls | string[] | No | — | Optional array of file URLs for analysis. Claude supports Images (.jpg, .jpeg, .png, .gif, .webp) and Documents (.pdf). Always include file URLs when analyzing specific files. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"model": {
"type": "string",
"enum": [
"Haiku-4.5",
"Sonnet-4.5",
"Opus-4.6",
"Opus-4.7"
],
"description": "\n Anthropic Claude model to use:\n - Haiku-4.5: Fastest model with near-frontier intelligence\n - Sonnet-4.5: Best balance of speed and intelligence (default)\n - Opus-4.6: Most intelligent model for agents and complex coding\n - Opus-4.7: Latest Opus, most intelligent model\n ",
"default": "Sonnet-4.5"
},
"systemPrompt": {
"type": "string",
"description": "System prompt to set behavior and context"
},
"userPrompt": {
"type": "string",
"description": "User prompt containing the main request or conversation"
},
"fileUrls": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional array of file URLs for analysis. Claude supports Images (.jpg, .jpeg, .png, .gif, .webp) and Documents (.pdf). Always include file URLs when analyzing specific files."
}
},
"required": [
"userPrompt"
]
}

