Skip to content

Commit b7d536b

Browse files
authored
v0.2.11: fix + feat + improvement
v0.2.11: fix + feat + improvement
2 parents f269fc9 + e83745f commit b7d536b

File tree

242 files changed

+38324
-6171
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+38324
-6171
lines changed

apps/docs/content/docs/blocks/function.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,8 @@ For security and performance reasons, function execution has certain limitations
8888

8989
### Outputs
9090

91-
- **Result**: The value returned by your function
92-
- **Standard Output**: Any console output from your function
93-
- **Execution Time**: The time taken to execute your function (in milliseconds)
91+
- **result**: The value returned by your function
92+
- **stdout**: Any console output from your function
9493

9594
## Example Usage
9695

apps/docs/content/docs/blocks/response.mdx

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,9 @@ Headers are configured as key-value pairs:
115115
</Tab>
116116
<Tab>
117117
<ul className="list-disc space-y-2 pl-6">
118-
<li>
119-
<strong>response</strong>: Complete response object containing:
120-
<ul className="list-disc space-y-1 pl-6 mt-2">
121-
<li><strong>data</strong>: The response body data</li>
122-
<li><strong>status</strong>: HTTP status code</li>
123-
<li><strong>headers</strong>: Response headers</li>
124-
</ul>
125-
</li>
118+
<li><strong>data</strong>: The response body data</li>
119+
<li><strong>status</strong>: HTTP status code</li>
120+
<li><strong>headers</strong>: Response headers</li>
126121
</ul>
127122
</Tab>
128123
</Tabs>

apps/docs/content/docs/tools/airtable.mdx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,9 @@ Update multiple existing records in an Airtable table
182182

183183
| Output | Type | Description |
184184
| ------ | ---- | ----------- |
185-
| `response` | object | Output from response |
186-
|`records` | json | records of the response |
187-
|`record` | json | record of the response |
188-
|`metadata` | json | metadata of the response |
185+
| `records` | json | records output from the block |
186+
| `record` | json | record output from the block |
187+
| `metadata` | json | metadata output from the block |
189188

190189

191190
## Notes

apps/docs/content/docs/tools/autoblocks.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,10 @@ Manage and render prompts using Autoblocks prompt management system
174174

175175
| Output | Type | Description |
176176
| ------ | ---- | ----------- |
177-
| `response` | object | Output from response |
178-
|`promptId` | string | promptId of the response |
179-
|`version` | string | version of the response |
180-
|`renderedPrompt` | string | renderedPrompt of the response |
181-
|`templates` | json | templates of the response |
177+
| `promptId` | string | promptId output from the block |
178+
| `version` | string | version output from the block |
179+
| `renderedPrompt` | string | renderedPrompt output from the block |
180+
| `templates` | json | templates output from the block |
182181

183182

184183
## Notes

apps/docs/content/docs/tools/browser_use.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,10 @@ Runs a browser automation task using BrowserUse
102102

103103
| Output | Type | Description |
104104
| ------ | ---- | ----------- |
105-
| `response` | object | Output from response |
106-
|`id` | string | id of the response |
107-
|`success` | boolean | success of the response |
108-
|`output` | any | output of the response |
109-
|`steps` | json | steps of the response |
105+
| `id` | string | id output from the block |
106+
| `success` | boolean | success output from the block |
107+
| `output` | any | output output from the block |
108+
| `steps` | json | steps output from the block |
110109

111110

112111
## Notes

apps/docs/content/docs/tools/clay.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,7 @@ Populate Clay with data from a JSON file. Enables direct communication and notif
238238

239239
| Output | Type | Description |
240240
| ------ | ---- | ----------- |
241-
| `response` | object | Output from response |
242-
|`data` | any | data of the response |
241+
| `data` | any | data output from the block |
243242

244243

245244
## Notes

apps/docs/content/docs/tools/confluence.mdx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,11 @@ Update a Confluence page using the Confluence API.
113113

114114
| Output | Type | Description |
115115
| ------ | ---- | ----------- |
116-
| `response` | object | Output from response |
117-
|`ts` | string | ts of the response |
118-
|`pageId` | string | pageId of the response |
119-
|`content` | string | content of the response |
120-
|`title` | string | title of the response |
121-
|`success` | boolean | success of the response |
116+
| `ts` | string | ts output from the block |
117+
| `pageId` | string | pageId output from the block |
118+
| `content` | string | content output from the block |
119+
| `title` | string | title output from the block |
120+
| `success` | boolean | success output from the block |
122121

123122

124123
## Notes

apps/docs/content/docs/tools/discord.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,8 @@ Retrieve information about a Discord user
150150

151151
| Output | Type | Description |
152152
| ------ | ---- | ----------- |
153-
| `response` | object | Output from response |
154-
|`message` | string | message of the response |
155-
|`data` | any | data of the response |
153+
| `message` | string | message output from the block |
154+
| `data` | any | data output from the block |
156155

157156

158157
## Notes

apps/docs/content/docs/tools/elevenlabs.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ Convert TTS using ElevenLabs voices
8080

8181
| Output | Type | Description |
8282
| ------ | ---- | ----------- |
83-
| `response` | object | Output from response |
84-
|`audioUrl` | string | audioUrl of the response |
83+
| `audioUrl` | string | audioUrl output from the block |
8584

8685

8786
## Notes

apps/docs/content/docs/tools/exa.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,10 @@ Get an AI-generated answer to a question with citations from the web using Exa A
158158

159159
| Output | Type | Description |
160160
| ------ | ---- | ----------- |
161-
| `response` | object | Output from response |
162-
|`results` | json | results of the response |
163-
|`similarLinks` | json | similarLinks of the response |
164-
|`answer` | string | answer of the response |
165-
|`citations` | json | citations of the response |
161+
| `results` | json | results output from the block |
162+
| `similarLinks` | json | similarLinks output from the block |
163+
| `answer` | string | answer output from the block |
164+
| `citations` | json | citations output from the block |
166165

167166

168167
## Notes

0 commit comments

Comments
 (0)