@ai-sdk/gateway 3.0.136 → 3.0.137
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.
- package/CHANGELOG.md +9 -0
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/tool/parallel-search.ts +7 -3
package/package.json
CHANGED
|
@@ -199,16 +199,20 @@ const parallelSearchInputSchema = lazySchema(() =>
|
|
|
199
199
|
include_domains: z
|
|
200
200
|
.array(z.string())
|
|
201
201
|
.optional()
|
|
202
|
-
.describe(
|
|
202
|
+
.describe(
|
|
203
|
+
'Limit results to these domains. Use plain domain names only — e.g. example.com or sub.example.gov, or a bare extension like .edu. Do not include a scheme, path, or port (e.g. not https://example.com/page).',
|
|
204
|
+
),
|
|
203
205
|
exclude_domains: z
|
|
204
206
|
.array(z.string())
|
|
205
207
|
.optional()
|
|
206
|
-
.describe(
|
|
208
|
+
.describe(
|
|
209
|
+
'Exclude results from these domains. Use plain domain names only — e.g. example.com or sub.example.gov, or a bare extension like .edu. Do not include a scheme, path, or port (e.g. not https://example.com/page).',
|
|
210
|
+
),
|
|
207
211
|
after_date: z
|
|
208
212
|
.string()
|
|
209
213
|
.optional()
|
|
210
214
|
.describe(
|
|
211
|
-
'Only include results published after this date
|
|
215
|
+
'Only include results published after this date. Use an ISO 8601 calendar date formatted YYYY-MM-DD (e.g. 2025-01-01); do not include a time.',
|
|
212
216
|
),
|
|
213
217
|
})
|
|
214
218
|
.optional()
|