@firebase/ai 2.3.0-canary.0ffcb26af → 2.3.0-canary.1bcf83d7f
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/ai-public.d.ts +1 -119
- package/dist/ai.d.ts +1 -120
- package/dist/esm/index.esm.js +3 -54
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/esm/src/types/googleai.d.ts +1 -2
- package/dist/esm/src/types/requests.d.ts +1 -21
- package/dist/esm/src/types/responses.d.ts +0 -92
- package/dist/index.cjs.js +2 -54
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.node.cjs.js +2 -54
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +3 -54
- package/dist/index.node.mjs.map +1 -1
- package/dist/src/types/googleai.d.ts +1 -2
- package/dist/src/types/requests.d.ts +1 -21
- package/dist/src/types/responses.d.ts +0 -92
- package/package.json +8 -8
package/dist/index.node.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { FirebaseError, Deferred, getModularInstance } from '@firebase/util';
|
|
|
4
4
|
import { Logger } from '@firebase/logger';
|
|
5
5
|
|
|
6
6
|
var name = "@firebase/ai";
|
|
7
|
-
var version = "2.3.0-canary.
|
|
7
|
+
var version = "2.3.0-canary.1bcf83d7f";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @license
|
|
@@ -360,45 +360,6 @@ const Language = {
|
|
|
360
360
|
* See the License for the specific language governing permissions and
|
|
361
361
|
* limitations under the License.
|
|
362
362
|
*/
|
|
363
|
-
/**
|
|
364
|
-
* The status of a URL retrieval.
|
|
365
|
-
*
|
|
366
|
-
* @remarks
|
|
367
|
-
* <b>URL_RETRIEVAL_STATUS_UNSPECIFIED:</b> Unspecified retrieval status.
|
|
368
|
-
* <br/>
|
|
369
|
-
* <b>URL_RETRIEVAL_STATUS_SUCCESS:</b> The URL retrieval was successful.
|
|
370
|
-
* <br/>
|
|
371
|
-
* <b>URL_RETRIEVAL_STATUS_ERROR:</b> The URL retrieval failed.
|
|
372
|
-
* <br/>
|
|
373
|
-
* <b>URL_RETRIEVAL_STATUS_PAYWALL:</b> The URL retrieval failed because the content is behind a paywall.
|
|
374
|
-
* <br/>
|
|
375
|
-
* <b>URL_RETRIEVAL_STATUS_UNSAFE:</b> The URL retrieval failed because the content is unsafe.
|
|
376
|
-
* <br/>
|
|
377
|
-
*
|
|
378
|
-
* @beta
|
|
379
|
-
*/
|
|
380
|
-
const URLRetrievalStatus = {
|
|
381
|
-
/**
|
|
382
|
-
* Unspecified retrieval status.
|
|
383
|
-
*/
|
|
384
|
-
URL_RETRIEVAL_STATUS_UNSPECIFIED: 'URL_RETRIEVAL_STATUS_UNSPECIFIED',
|
|
385
|
-
/**
|
|
386
|
-
* The URL retrieval was successful.
|
|
387
|
-
*/
|
|
388
|
-
URL_RETRIEVAL_STATUS_SUCCESS: 'URL_RETRIEVAL_STATUS_SUCCESS',
|
|
389
|
-
/**
|
|
390
|
-
* The URL retrieval failed.
|
|
391
|
-
*/
|
|
392
|
-
URL_RETRIEVAL_STATUS_ERROR: 'URL_RETRIEVAL_STATUS_ERROR',
|
|
393
|
-
/**
|
|
394
|
-
* The URL retrieval failed because the content is behind a paywall.
|
|
395
|
-
*/
|
|
396
|
-
URL_RETRIEVAL_STATUS_PAYWALL: 'URL_RETRIEVAL_STATUS_PAYWALL',
|
|
397
|
-
/**
|
|
398
|
-
* The URL retrieval failed because the content is unsafe.
|
|
399
|
-
*/
|
|
400
|
-
URL_RETRIEVAL_STATUS_UNSAFE: 'URL_RETRIEVAL_STATUS_UNSAFE'
|
|
401
|
-
};
|
|
402
363
|
/**
|
|
403
364
|
* The types of responses that can be returned by {@link LiveSession.receive}.
|
|
404
365
|
*
|
|
@@ -1602,8 +1563,7 @@ function mapGenerateContentCandidates(candidates) {
|
|
|
1602
1563
|
finishMessage: candidate.finishMessage,
|
|
1603
1564
|
safetyRatings: mappedSafetyRatings,
|
|
1604
1565
|
citationMetadata,
|
|
1605
|
-
groundingMetadata: candidate.groundingMetadata
|
|
1606
|
-
urlContextMetadata: candidate.urlContextMetadata
|
|
1566
|
+
groundingMetadata: candidate.groundingMetadata
|
|
1607
1567
|
};
|
|
1608
1568
|
mappedCandidates.push(mappedCandidate);
|
|
1609
1569
|
});
|
|
@@ -1773,17 +1733,6 @@ function aggregateResponses(responses) {
|
|
|
1773
1733
|
candidate.safetyRatings;
|
|
1774
1734
|
aggregatedResponse.candidates[i].groundingMetadata =
|
|
1775
1735
|
candidate.groundingMetadata;
|
|
1776
|
-
// The urlContextMetadata object is defined in the first chunk of the response stream.
|
|
1777
|
-
// In all subsequent chunks, the urlContextMetadata object will be undefined. We need to
|
|
1778
|
-
// make sure that we don't overwrite the first value urlContextMetadata object with undefined.
|
|
1779
|
-
// FIXME: What happens if we receive a second, valid urlContextMetadata object?
|
|
1780
|
-
const urlContextMetadata = candidate.urlContextMetadata;
|
|
1781
|
-
if (typeof urlContextMetadata === 'object' &&
|
|
1782
|
-
urlContextMetadata !== null &&
|
|
1783
|
-
Object.keys(urlContextMetadata).length > 0) {
|
|
1784
|
-
aggregatedResponse.candidates[i].urlContextMetadata =
|
|
1785
|
-
urlContextMetadata;
|
|
1786
|
-
}
|
|
1787
1736
|
/**
|
|
1788
1737
|
* Candidates should always have content and parts, but this handles
|
|
1789
1738
|
* possible malformed responses.
|
|
@@ -3773,5 +3722,5 @@ function registerAI() {
|
|
|
3773
3722
|
}
|
|
3774
3723
|
registerAI();
|
|
3775
3724
|
|
|
3776
|
-
export { AIError, AIErrorCode, AIModel, AnyOfSchema, ArraySchema, Backend, BackendType, BlockReason, BooleanSchema, ChatSession, FinishReason, FunctionCallingMode, GenerativeModel, GoogleAIBackend, HarmBlockMethod, HarmBlockThreshold, HarmCategory, HarmProbability, HarmSeverity, ImagenAspectRatio, ImagenImageFormat, ImagenModel, ImagenPersonFilterLevel, ImagenSafetyFilterLevel, InferenceMode, IntegerSchema, Language, LiveGenerativeModel, LiveResponseType, LiveSession, Modality, NumberSchema, ObjectSchema, Outcome, POSSIBLE_ROLES, ResponseModality, Schema, SchemaType, StringSchema,
|
|
3725
|
+
export { AIError, AIErrorCode, AIModel, AnyOfSchema, ArraySchema, Backend, BackendType, BlockReason, BooleanSchema, ChatSession, FinishReason, FunctionCallingMode, GenerativeModel, GoogleAIBackend, HarmBlockMethod, HarmBlockThreshold, HarmCategory, HarmProbability, HarmSeverity, ImagenAspectRatio, ImagenImageFormat, ImagenModel, ImagenPersonFilterLevel, ImagenSafetyFilterLevel, InferenceMode, IntegerSchema, Language, LiveGenerativeModel, LiveResponseType, LiveSession, Modality, NumberSchema, ObjectSchema, Outcome, POSSIBLE_ROLES, ResponseModality, Schema, SchemaType, StringSchema, VertexAIBackend, getAI, getGenerativeModel, getImagenModel, getLiveGenerativeModel, startAudioConversation };
|
|
3777
3726
|
//# sourceMappingURL=index.node.mjs.map
|