@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/dist/index.mjs
CHANGED
|
@@ -1826,10 +1826,14 @@ var parallelSearchInputSchema = lazySchema9(
|
|
|
1826
1826
|
"Maximum number of results to return (1-20). Defaults to 10 if not specified."
|
|
1827
1827
|
),
|
|
1828
1828
|
source_policy: z14.object({
|
|
1829
|
-
include_domains: z14.array(z14.string()).optional().describe(
|
|
1830
|
-
|
|
1829
|
+
include_domains: z14.array(z14.string()).optional().describe(
|
|
1830
|
+
"Limit results to these domains. Use plain domain names only \u2014 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)."
|
|
1831
|
+
),
|
|
1832
|
+
exclude_domains: z14.array(z14.string()).optional().describe(
|
|
1833
|
+
"Exclude results from these domains. Use plain domain names only \u2014 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)."
|
|
1834
|
+
),
|
|
1831
1835
|
after_date: z14.string().optional().describe(
|
|
1832
|
-
"Only include results published after this date
|
|
1836
|
+
"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."
|
|
1833
1837
|
)
|
|
1834
1838
|
}).optional().describe(
|
|
1835
1839
|
"Source policy for controlling which domains to include/exclude and freshness."
|
|
@@ -2002,7 +2006,7 @@ async function getVercelRequestId() {
|
|
|
2002
2006
|
}
|
|
2003
2007
|
|
|
2004
2008
|
// src/version.ts
|
|
2005
|
-
var VERSION = true ? "3.0.
|
|
2009
|
+
var VERSION = true ? "3.0.137" : "0.0.0-test";
|
|
2006
2010
|
|
|
2007
2011
|
// src/gateway-provider.ts
|
|
2008
2012
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|