scrapebadger 0.43.0 → 0.43.1
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/dist/index.d.cts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -16545,9 +16545,12 @@ declare class AskClient {
|
|
|
16545
16545
|
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
16546
16546
|
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
16547
16547
|
* @param params.web_search - "auto", "force", or "off" (default: "auto").
|
|
16548
|
-
* @param params.image_url -
|
|
16549
|
-
*
|
|
16550
|
-
*
|
|
16548
|
+
* @param params.image_url - NOT SUPPORTED; returns 422 and is never billed.
|
|
16549
|
+
* Signed-out Gemini accepts the upload and then refuses to answer about it
|
|
16550
|
+
* (PERMISSION_DENIED from its own generate call), so the API fails fast
|
|
16551
|
+
* rather than charging for a request that cannot succeed. Use
|
|
16552
|
+
* `chatgpt.ask` for image input. Gemini will not generate one either —
|
|
16553
|
+
* anonymous gemini.google.com requires a login for that.
|
|
16551
16554
|
* @returns The answer, its citations, and the full retrieved search set.
|
|
16552
16555
|
*
|
|
16553
16556
|
* @example
|
package/dist/index.d.ts
CHANGED
|
@@ -16545,9 +16545,12 @@ declare class AskClient {
|
|
|
16545
16545
|
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
16546
16546
|
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
16547
16547
|
* @param params.web_search - "auto", "force", or "off" (default: "auto").
|
|
16548
|
-
* @param params.image_url -
|
|
16549
|
-
*
|
|
16550
|
-
*
|
|
16548
|
+
* @param params.image_url - NOT SUPPORTED; returns 422 and is never billed.
|
|
16549
|
+
* Signed-out Gemini accepts the upload and then refuses to answer about it
|
|
16550
|
+
* (PERMISSION_DENIED from its own generate call), so the API fails fast
|
|
16551
|
+
* rather than charging for a request that cannot succeed. Use
|
|
16552
|
+
* `chatgpt.ask` for image input. Gemini will not generate one either —
|
|
16553
|
+
* anonymous gemini.google.com requires a login for that.
|
|
16551
16554
|
* @returns The answer, its citations, and the full retrieved search set.
|
|
16552
16555
|
*
|
|
16553
16556
|
* @example
|
package/dist/index.js
CHANGED
|
@@ -8699,9 +8699,12 @@ var AskClient2 = class {
|
|
|
8699
8699
|
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
8700
8700
|
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
8701
8701
|
* @param params.web_search - "auto", "force", or "off" (default: "auto").
|
|
8702
|
-
* @param params.image_url -
|
|
8703
|
-
*
|
|
8704
|
-
*
|
|
8702
|
+
* @param params.image_url - NOT SUPPORTED; returns 422 and is never billed.
|
|
8703
|
+
* Signed-out Gemini accepts the upload and then refuses to answer about it
|
|
8704
|
+
* (PERMISSION_DENIED from its own generate call), so the API fails fast
|
|
8705
|
+
* rather than charging for a request that cannot succeed. Use
|
|
8706
|
+
* `chatgpt.ask` for image input. Gemini will not generate one either —
|
|
8707
|
+
* anonymous gemini.google.com requires a login for that.
|
|
8705
8708
|
* @returns The answer, its citations, and the full retrieved search set.
|
|
8706
8709
|
*
|
|
8707
8710
|
* @example
|