Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4151,7 +4151,7 @@ export function DuckDuckGoIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='-108 -108 216 216'>
<circle r='108' fill='#d53' />
<circle r='96' fill='none' stroke='#ffffff' stroke-width='7' />
<circle r='96' fill='none' stroke='#ffffff' strokeWidth={7} />
<path
d='M-32-55C-62-48-51-6-51-6l19 93 7 3M-39-73h-8l11 4s-11 0-11 7c24-1 35 5 35 5'
fill='#ddd'
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/en/tools/thinking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Processes a provided thought/instruction, making it available for subsequent ste

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `thought` | string | Yes | The thought process or instruction provided by the user in the Thinking Step block. |
| `thought` | string | Yes | Your internal reasoning, analysis, or thought process. Use this to think through the problem step by step before responding. |

#### Output

Expand Down
34 changes: 13 additions & 21 deletions apps/docs/content/docs/en/tools/translate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,38 +34,30 @@ Integrate Translate into the workflow. Can translate text to any language.

## Tools

### `openai_chat`
### `llm_chat`

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Translated text |
| `model` | string | Model used |
| `tokens` | json | Token usage |

### `anthropic_chat`


### `google_chat`
Send a chat completion request to any supported LLM provider

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `model` | string | Yes | The model to use \(e.g., gpt-4o, claude-sonnet-4-5, gemini-2.0-flash\) |
| `systemPrompt` | string | No | System prompt to set the behavior of the assistant |
| `context` | string | Yes | The user message or context to send to the model |
| `apiKey` | string | No | API key for the provider \(uses platform key if not provided for hosted models\) |
| `temperature` | number | No | Temperature for response generation \(0-2\) |
| `maxTokens` | number | No | Maximum tokens in the response |
| `azureEndpoint` | string | No | Azure OpenAI endpoint URL |
| `azureApiVersion` | string | No | Azure OpenAI API version |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Translated text |
| `model` | string | Model used |
| `tokens` | json | Token usage |
| `content` | string | The generated response content |
| `model` | string | The model used for generation |
| `tokens` | object | Token usage information |



Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/docs/en/tools/wordpress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ Upload a media file (image, video, document) to WordPress.com
| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `siteId` | string | Yes | WordPress.com site ID or domain \(e.g., 12345678 or mysite.wordpress.com\) |
| `file` | string | Yes | Base64 encoded file data or URL to fetch file from |
| `filename` | string | Yes | Filename with extension \(e.g., image.jpg\) |
| `file` | file | No | File to upload \(UserFile object\) |
| `filename` | string | No | Optional filename override \(e.g., image.jpg\) |
| `title` | string | No | Media title |
| `caption` | string | No | Media caption |
| `altText` | string | No | Alternative text for accessibility |
Expand Down
19 changes: 0 additions & 19 deletions apps/docs/content/docs/en/tools/youtube.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -173,25 +173,6 @@ Get videos from a YouTube playlist.
| --------- | ---- | ----------- |
| `items` | array | Array of videos in the playlist |

### `youtube_related_videos`

Find videos related to a specific YouTube video.

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `videoId` | string | Yes | YouTube video ID to find related videos for |
| `maxResults` | number | No | Maximum number of related videos to return \(1-50\) |
| `pageToken` | string | No | Page token for pagination |
| `apiKey` | string | Yes | YouTube API Key |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `items` | array | Array of related videos |

### `youtube_comments`

Get comments from a YouTube video.
Expand Down
110 changes: 58 additions & 52 deletions apps/docs/content/docs/en/tools/zendesk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ Retrieve a list of tickets from Zendesk with optional filtering

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Tickets data and metadata |
| `tickets` | array | Array of ticket objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_get_ticket`

Expand All @@ -96,8 +97,8 @@ Get a single ticket by ID from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Ticket data |
| `ticket` | object | Ticket object |
| `metadata` | object | Operation metadata |

### `zendesk_create_ticket`

Expand Down Expand Up @@ -125,8 +126,8 @@ Create a new ticket in Zendesk with support for custom fields

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Created ticket data |
| `ticket` | object | Created ticket object |
| `metadata` | object | Operation metadata |

### `zendesk_create_tickets_bulk`

Expand All @@ -145,8 +146,8 @@ Create multiple tickets in Zendesk at once (max 100)

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Bulk create job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_update_ticket`

Expand Down Expand Up @@ -174,8 +175,8 @@ Update an existing ticket in Zendesk with support for custom fields

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Updated ticket data |
| `ticket` | object | Updated ticket object |
| `metadata` | object | Operation metadata |

### `zendesk_update_tickets_bulk`

Expand All @@ -199,8 +200,8 @@ Update multiple tickets in Zendesk at once (max 100)

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Bulk update job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_delete_ticket`

Expand All @@ -219,8 +220,8 @@ Delete a ticket from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Delete confirmation |
| `deleted` | boolean | Deletion success |
| `metadata` | object | Operation metadata |

### `zendesk_merge_tickets`

Expand All @@ -241,8 +242,8 @@ Merge multiple tickets into a target ticket

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Merge job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_get_users`

Expand All @@ -264,8 +265,9 @@ Retrieve a list of users from Zendesk with optional filtering

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Users data and metadata |
| `users` | array | Array of user objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_get_user`

Expand All @@ -284,8 +286,8 @@ Get a single user by ID from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | User data |
| `user` | object | User object |
| `metadata` | object | Operation metadata |

### `zendesk_get_current_user`

Expand All @@ -303,8 +305,8 @@ Get the currently authenticated user from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Current user data |
| `user` | object | Current user object |
| `metadata` | object | Operation metadata |

### `zendesk_search_users`

Expand All @@ -326,8 +328,9 @@ Search for users in Zendesk using a query string

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Users search results |
| `users` | array | Array of user objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_create_user`

Expand All @@ -353,8 +356,8 @@ Create a new user in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Created user data |
| `user` | object | Created user object |
| `metadata` | object | Operation metadata |

### `zendesk_create_users_bulk`

Expand All @@ -373,8 +376,8 @@ Create multiple users in Zendesk using bulk import

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Bulk creation job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_update_user`

Expand All @@ -401,8 +404,8 @@ Update an existing user in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Updated user data |
| `user` | object | Updated user object |
| `metadata` | object | Operation metadata |

### `zendesk_update_users_bulk`

Expand All @@ -421,8 +424,8 @@ Update multiple users in Zendesk using bulk update

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Bulk update job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_delete_user`

Expand All @@ -441,8 +444,8 @@ Delete a user from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Deleted user data |
| `deleted` | boolean | Deletion success |
| `metadata` | object | Operation metadata |

### `zendesk_get_organizations`

Expand All @@ -462,8 +465,9 @@ Retrieve a list of organizations from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Organizations data and metadata |
| `organizations` | array | Array of organization objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_get_organization`

Expand All @@ -482,8 +486,8 @@ Get a single organization by ID from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Organization data |
| `organization` | object | Organization object |
| `metadata` | object | Operation metadata |

### `zendesk_autocomplete_organizations`

Expand All @@ -504,8 +508,9 @@ Autocomplete organizations in Zendesk by name prefix (for name matching/autocomp

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Organizations search results |
| `organizations` | array | Array of organization objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_create_organization`

Expand All @@ -529,8 +534,8 @@ Create a new organization in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Created organization data |
| `organization` | object | Created organization object |
| `metadata` | object | Operation metadata |

### `zendesk_create_organizations_bulk`

Expand All @@ -549,8 +554,8 @@ Create multiple organizations in Zendesk using bulk import

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Bulk creation job status |
| `jobStatus` | object | Job status object |
| `metadata` | object | Operation metadata |

### `zendesk_update_organization`

Expand All @@ -575,8 +580,8 @@ Update an existing organization in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Updated organization data |
| `organization` | object | Updated organization object |
| `metadata` | object | Operation metadata |

### `zendesk_delete_organization`

Expand All @@ -595,8 +600,8 @@ Delete an organization from Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Deleted organization data |
| `deleted` | boolean | Deletion success |
| `metadata` | object | Operation metadata |

### `zendesk_search`

Expand All @@ -619,8 +624,9 @@ Unified search across tickets, users, and organizations in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Search results |
| `results` | array | Array of result objects |
| `paging` | object | Pagination information |
| `metadata` | object | Operation metadata |

### `zendesk_search_count`

Expand All @@ -639,8 +645,8 @@ Count the number of search results matching a query in Zendesk

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | object | Search count result |
| `count` | number | Number of matching results |
| `metadata` | object | Operation metadata |



Expand Down
Loading