@shawnstack/quickforge 1.3.24 → 1.3.25

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.
Files changed (45) hide show
  1. package/README.md +14 -14
  2. package/dist/assets/anthropic-B1_Yrokl.js +39 -0
  3. package/dist/assets/azure-openai-responses-UMiOBCBd.js +1 -0
  4. package/dist/assets/google-BLE_Gcd1.js +1 -0
  5. package/dist/assets/google-shared-Cqjw1plk.js +11 -0
  6. package/dist/assets/google-vertex-6_sIZLVc.js +1 -0
  7. package/dist/assets/{icons-DmRYmmql.js → icons-Bs7OG8yi.js} +1 -1
  8. package/dist/assets/{index-s72bxhrh.js → index-C3bc5C3k.js} +550 -544
  9. package/dist/assets/index-C7oT9Rdw.css +3 -0
  10. package/dist/assets/{mistral-DCZ8VphX.js → mistral-DmZEmRkv.js} +1 -1
  11. package/dist/assets/openai-codex-responses-i_SmQGzQ.js +7 -0
  12. package/dist/assets/openai-completions-BmmZFDDY.js +5 -0
  13. package/dist/assets/openai-prompt-cache-CErE62Yt.js +1 -0
  14. package/dist/assets/openai-responses-C8tPdeE9.js +1 -0
  15. package/dist/assets/{openai-responses-shared-RzgnIlMf.js → openai-responses-shared-DchtjQNp.js} +1 -1
  16. package/dist/assets/openrouter-CcTv1G_v.js +1 -0
  17. package/dist/assets/{react-vendor-BsV2HYbc.js → react-vendor-Cu-7p9CI.js} +1 -1
  18. package/dist/assets/sanitize-unicode-BhyPmlyt.js +1 -0
  19. package/dist/assets/transform-messages-Dhj_4OTw.js +1 -0
  20. package/dist/index.html +4 -4
  21. package/package.json +3 -3
  22. package/server/agent-manager.mjs +66 -160
  23. package/server/ai-http-logger.mjs +20 -5
  24. package/server/approval-store.mjs +63 -0
  25. package/server/message-converters.mjs +79 -0
  26. package/server/routes/agent-profiles.mjs +1 -1
  27. package/server/routes/filesystem.mjs +18 -2
  28. package/server/routes/scheduled-tasks.mjs +1 -1
  29. package/server/routes/storage.mjs +66 -31
  30. package/server/session-utils.mjs +1 -1
  31. package/server/storage.mjs +78 -2
  32. package/server/tool-wiring.mjs +87 -0
  33. package/server/utils/workspace.mjs +20 -1
  34. package/dist/assets/anthropic-BrbLtQkg.js +0 -39
  35. package/dist/assets/azure-openai-responses-q9QFpQk3.js +0 -1
  36. package/dist/assets/google-Bv6IeSRf.js +0 -1
  37. package/dist/assets/google-shared-CLc4ziON.js +0 -11
  38. package/dist/assets/google-vertex-Cwpe8vbn.js +0 -1
  39. package/dist/assets/index-C4m48ndP.css +0 -3
  40. package/dist/assets/openai-codex-responses-Bx7iyHzd.js +0 -7
  41. package/dist/assets/openai-completions-CihVV11E.js +0 -5
  42. package/dist/assets/openai-responses-BigEdUNS.js +0 -1
  43. package/dist/assets/transform-messages-CmnxG9RB.js +0 -1
  44. /package/dist/assets/{hash-Bt1aVMQ3.js → hash-kZ2KD_no.js} +0 -0
  45. /package/dist/assets/{openai-Cn7eGqwa.js → openai-Bf1npfRy.js} +0 -0
@@ -1,11 +0,0 @@
1
- import{r as e,t}from"./rolldown-runtime-CkqCuyE9.js";import{i as n,t as r}from"./transform-messages-CmnxG9RB.js";var i=t(((e,t)=>{function n(e,t){typeof t==`boolean`&&(t={forever:t}),this._originalTimeouts=JSON.parse(JSON.stringify(e)),this._timeouts=e,this._options=t||{},this._maxRetryTime=t&&t.maxRetryTime||1/0,this._fn=null,this._errors=[],this._attempts=1,this._operationTimeout=null,this._operationTimeoutCb=null,this._timeout=null,this._operationStart=null,this._timer=null,this._options.forever&&(this._cachedTimeouts=this._timeouts.slice(0))}t.exports=n,n.prototype.reset=function(){this._attempts=1,this._timeouts=this._originalTimeouts.slice(0)},n.prototype.stop=function(){this._timeout&&clearTimeout(this._timeout),this._timer&&clearTimeout(this._timer),this._timeouts=[],this._cachedTimeouts=null},n.prototype.retry=function(e){if(this._timeout&&clearTimeout(this._timeout),!e)return!1;var t=new Date().getTime();if(e&&t-this._operationStart>=this._maxRetryTime)return this._errors.push(e),this._errors.unshift(Error(`RetryOperation timeout occurred`)),!1;this._errors.push(e);var n=this._timeouts.shift();if(n===void 0)if(this._cachedTimeouts)this._errors.splice(0,this._errors.length-1),n=this._cachedTimeouts.slice(-1);else return!1;var r=this;return this._timer=setTimeout(function(){r._attempts++,r._operationTimeoutCb&&(r._timeout=setTimeout(function(){r._operationTimeoutCb(r._attempts)},r._operationTimeout),r._options.unref&&r._timeout.unref()),r._fn(r._attempts)},n),this._options.unref&&this._timer.unref(),!0},n.prototype.attempt=function(e,t){this._fn=e,t&&(t.timeout&&(this._operationTimeout=t.timeout),t.cb&&(this._operationTimeoutCb=t.cb));var n=this;this._operationTimeoutCb&&(this._timeout=setTimeout(function(){n._operationTimeoutCb()},n._operationTimeout)),this._operationStart=new Date().getTime(),this._fn(this._attempts)},n.prototype.try=function(e){console.log(`Using RetryOperation.try() is deprecated`),this.attempt(e)},n.prototype.start=function(e){console.log(`Using RetryOperation.start() is deprecated`),this.attempt(e)},n.prototype.start=n.prototype.try,n.prototype.errors=function(){return this._errors},n.prototype.attempts=function(){return this._attempts},n.prototype.mainError=function(){if(this._errors.length===0)return null;for(var e={},t=null,n=0,r=0;r<this._errors.length;r++){var i=this._errors[r],a=i.message,o=(e[a]||0)+1;e[a]=o,o>=n&&(t=i,n=o)}return t}})),a=t((e=>{var t=i();e.operation=function(n){return new t(e.timeouts(n),{forever:n&&(n.forever||n.retries===1/0),unref:n&&n.unref,maxRetryTime:n&&n.maxRetryTime})},e.timeouts=function(e){if(e instanceof Array)return[].concat(e);var t={retries:10,factor:2,minTimeout:1*1e3,maxTimeout:1/0,randomize:!1};for(var n in e)t[n]=e[n];if(t.minTimeout>t.maxTimeout)throw Error(`minTimeout is greater than maxTimeout`);for(var r=[],i=0;i<t.retries;i++)r.push(this.createTimeout(i,t));return e&&e.forever&&!r.length&&r.push(this.createTimeout(i,t)),r.sort(function(e,t){return e-t}),r},e.createTimeout=function(e,t){var n=t.randomize?Math.random()+1:1,r=Math.round(n*Math.max(t.minTimeout,1)*t.factor**+e);return r=Math.min(r,t.maxTimeout),r},e.wrap=function(t,n,r){if(n instanceof Array&&(r=n,n=null),!r)for(var i in r=[],t)typeof t[i]==`function`&&r.push(i);for(var a=0;a<r.length;a++){var o=r[a],s=t[o];t[o]=function(r){var i=e.operation(n),a=Array.prototype.slice.call(arguments,1),o=a.pop();a.push(function(e){i.retry(e)||(e&&(arguments[0]=i.mainError()),o.apply(this,arguments))}),i.attempt(function(){r.apply(t,a)})}.bind(t,s),t[o].options=n}}})),o=t(((e,t)=>{t.exports=a()})),s=e(t(((e,t)=>{var n=o(),r=[`Failed to fetch`,`NetworkError when attempting to fetch resource.`,`The Internet connection appears to be offline.`,`Network request failed`],i=class extends Error{constructor(e){super(),e instanceof Error?(this.originalError=e,{message:e}=e):(this.originalError=Error(e),this.originalError.stack=this.stack),this.name=`AbortError`,this.message=e}},a=(e,t,n)=>{let r=n.retries-(t-1);return e.attemptNumber=t,e.retriesLeft=r,e},s=e=>r.includes(e),c=(e,t)=>new Promise((r,o)=>{t={onFailedAttempt:()=>{},retries:10,...t};let c=n.operation(t);c.attempt(async n=>{try{r(await e(n))}catch(e){if(!(e instanceof Error)){o(TypeError(`Non-error was thrown: "${e}". You should only throw errors.`));return}if(e instanceof i)c.stop(),o(e.originalError);else if(e instanceof TypeError&&!s(e.message))c.stop(),o(e);else{a(e,n,t);try{await t.onFailedAttempt(e)}catch(e){o(e);return}c.retry(e)||o(c.mainError())}}})});t.exports=c,t.exports.default=c,t.exports.AbortError=i}))(),1),c=void 0,l=void 0;function u(){return{geminiUrl:c,vertexUrl:l}}function d(e,t,n,r){if(!e?.baseUrl){let e=u();return t?e.vertexUrl??n:e.geminiUrl??r}return e.baseUrl}var f=class{};function p(e,t){return e.replace(/\{([^}]+)\}/g,(e,n)=>{if(Object.prototype.hasOwnProperty.call(t,n)){let e=t[n];return e==null?``:String(e)}else throw Error(`Key '${n}' not found in valueMap.`)})}function m(e,t,n){for(let r=0;r<t.length-1;r++){let i=t[r];if(i.endsWith(`[]`)){let a=i.slice(0,-2);if(!(a in e))if(Array.isArray(n))e[a]=Array.from({length:n.length},()=>({}));else throw Error(`Value must be a list given an array path ${i}`);if(Array.isArray(e[a])){let i=e[a];if(Array.isArray(n))for(let e=0;e<i.length;e++){let a=i[e];m(a,t.slice(r+1),n[e])}else for(let e of i)m(e,t.slice(r+1),n)}return}else if(i.endsWith(`[0]`)){let a=i.slice(0,-3);a in e||(e[a]=[{}]);let o=e[a];m(o[0],t.slice(r+1),n);return}(!e[i]||typeof e[i]!=`object`)&&(e[i]={}),e=e[i]}let r=t[t.length-1],i=e[r];if(i!==void 0){if(!n||typeof n==`object`&&Object.keys(n).length===0||n===i)return;if(typeof i==`object`&&typeof n==`object`&&i!==null&&n!==null)Object.assign(i,n);else throw Error(`Cannot set value for an existing key. Key: ${r}`)}else r===`_self`&&typeof n==`object`&&n&&!Array.isArray(n)?Object.assign(e,n):e[r]=n}function h(e,t,n=void 0){try{if(t.length===1&&t[0]===`_self`)return e;for(let r=0;r<t.length;r++){if(typeof e!=`object`||!e)return n;let i=t[r];if(i.endsWith(`[]`)){let a=i.slice(0,-2);if(a in e){let i=e[a];return Array.isArray(i)?i.map(e=>h(e,t.slice(r+1),n)):n}else return n}else e=e[i]}return e}catch(e){if(e instanceof TypeError)return n;throw e}}function g(e,t){for(let[n,r]of Object.entries(t)){let t=n.split(`.`),i=r.split(`.`),a=new Set,o=-1;for(let e=0;e<t.length;e++)if(t[e]===`*`){o=e;break}if(o!==-1&&i.length>o)for(let e=o;e<i.length;e++){let t=i[e];t!==`*`&&!t.endsWith(`[]`)&&!t.endsWith(`[0]`)&&a.add(t)}_(e,t,i,0,a)}}function _(e,t,n,r,i){if(r>=t.length||typeof e!=`object`||!e)return;let a=t[r];if(a.endsWith(`[]`)){let o=a.slice(0,-2),s=e;if(o in s&&Array.isArray(s[o]))for(let e of s[o])_(e,t,n,r+1,i)}else if(a===`*`){if(typeof e==`object`&&e&&!Array.isArray(e)){let t=e,a=Object.keys(t).filter(e=>!e.startsWith(`_`)&&!i.has(e)),o={};for(let e of a)o[e]=t[e];for(let[e,i]of Object.entries(o)){let a=[];for(let t of n.slice(r))t===`*`?a.push(e):a.push(t);m(t,a,i)}for(let e of a)delete t[e]}}else{let o=e;a in o&&_(o[a],t,n,r+1,i)}}function v(e){if(typeof e!=`string`)throw Error(`fromImageBytes must be a string`);return e}function y(e){let t={},n=h(e,[`operationName`]);n!=null&&m(t,[`operationName`],n);let r=h(e,[`resourceName`]);return r!=null&&m(t,[`_url`,`resourceName`],r),t}function b(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`response`,`generateVideoResponse`]);return o!=null&&m(t,[`response`],S(o)),t}function x(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`response`]);return o!=null&&m(t,[`response`],C(o)),t}function S(e){let t={},n=h(e,[`generatedSamples`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>w(e))),m(t,[`generatedVideos`],e)}let r=h(e,[`raiMediaFilteredCount`]);r!=null&&m(t,[`raiMediaFilteredCount`],r);let i=h(e,[`raiMediaFilteredReasons`]);return i!=null&&m(t,[`raiMediaFilteredReasons`],i),t}function C(e){let t={},n=h(e,[`videos`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>T(e))),m(t,[`generatedVideos`],e)}let r=h(e,[`raiMediaFilteredCount`]);r!=null&&m(t,[`raiMediaFilteredCount`],r);let i=h(e,[`raiMediaFilteredReasons`]);return i!=null&&m(t,[`raiMediaFilteredReasons`],i),t}function w(e){let t={},n=h(e,[`video`]);return n!=null&&m(t,[`video`],M(n)),t}function T(e){let t={},n=h(e,[`_self`]);return n!=null&&m(t,[`video`],ee(n)),t}function E(e){let t={},n=h(e,[`operationName`]);return n!=null&&m(t,[`_url`,`operationName`],n),t}function D(e){let t={},n=h(e,[`operationName`]);return n!=null&&m(t,[`_url`,`operationName`],n),t}function O(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`response`]);return o!=null&&m(t,[`response`],k(o)),t}function k(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`parent`]);r!=null&&m(t,[`parent`],r);let i=h(e,[`documentName`]);return i!=null&&m(t,[`documentName`],i),t}function A(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`response`]);return o!=null&&m(t,[`response`],j(o)),t}function j(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`parent`]);r!=null&&m(t,[`parent`],r);let i=h(e,[`documentName`]);return i!=null&&m(t,[`documentName`],i),t}function M(e){let t={},n=h(e,[`uri`]);n!=null&&m(t,[`uri`],n);let r=h(e,[`encodedVideo`]);r!=null&&m(t,[`videoBytes`],v(r));let i=h(e,[`encoding`]);return i!=null&&m(t,[`mimeType`],i),t}function ee(e){let t={},n=h(e,[`gcsUri`]);n!=null&&m(t,[`uri`],n);let r=h(e,[`bytesBase64Encoded`]);r!=null&&m(t,[`videoBytes`],v(r));let i=h(e,[`mimeType`]);return i!=null&&m(t,[`mimeType`],i),t}var te;(function(e){e.LANGUAGE_UNSPECIFIED=`LANGUAGE_UNSPECIFIED`,e.PYTHON=`PYTHON`})(te||={});var ne;(function(e){e.OUTCOME_UNSPECIFIED=`OUTCOME_UNSPECIFIED`,e.OUTCOME_OK=`OUTCOME_OK`,e.OUTCOME_FAILED=`OUTCOME_FAILED`,e.OUTCOME_DEADLINE_EXCEEDED=`OUTCOME_DEADLINE_EXCEEDED`})(ne||={});var re;(function(e){e.SCHEDULING_UNSPECIFIED=`SCHEDULING_UNSPECIFIED`,e.SILENT=`SILENT`,e.WHEN_IDLE=`WHEN_IDLE`,e.INTERRUPT=`INTERRUPT`})(re||={});var N;(function(e){e.TYPE_UNSPECIFIED=`TYPE_UNSPECIFIED`,e.STRING=`STRING`,e.NUMBER=`NUMBER`,e.INTEGER=`INTEGER`,e.BOOLEAN=`BOOLEAN`,e.ARRAY=`ARRAY`,e.OBJECT=`OBJECT`,e.NULL=`NULL`})(N||={});var ie;(function(e){e.ENVIRONMENT_UNSPECIFIED=`ENVIRONMENT_UNSPECIFIED`,e.ENVIRONMENT_BROWSER=`ENVIRONMENT_BROWSER`})(ie||={});var ae;(function(e){e.AUTH_TYPE_UNSPECIFIED=`AUTH_TYPE_UNSPECIFIED`,e.NO_AUTH=`NO_AUTH`,e.API_KEY_AUTH=`API_KEY_AUTH`,e.HTTP_BASIC_AUTH=`HTTP_BASIC_AUTH`,e.GOOGLE_SERVICE_ACCOUNT_AUTH=`GOOGLE_SERVICE_ACCOUNT_AUTH`,e.OAUTH=`OAUTH`,e.OIDC_AUTH=`OIDC_AUTH`})(ae||={});var oe;(function(e){e.HTTP_IN_UNSPECIFIED=`HTTP_IN_UNSPECIFIED`,e.HTTP_IN_QUERY=`HTTP_IN_QUERY`,e.HTTP_IN_HEADER=`HTTP_IN_HEADER`,e.HTTP_IN_PATH=`HTTP_IN_PATH`,e.HTTP_IN_BODY=`HTTP_IN_BODY`,e.HTTP_IN_COOKIE=`HTTP_IN_COOKIE`})(oe||={});var se;(function(e){e.API_SPEC_UNSPECIFIED=`API_SPEC_UNSPECIFIED`,e.SIMPLE_SEARCH=`SIMPLE_SEARCH`,e.ELASTIC_SEARCH=`ELASTIC_SEARCH`})(se||={});var ce;(function(e){e.PHISH_BLOCK_THRESHOLD_UNSPECIFIED=`PHISH_BLOCK_THRESHOLD_UNSPECIFIED`,e.BLOCK_LOW_AND_ABOVE=`BLOCK_LOW_AND_ABOVE`,e.BLOCK_MEDIUM_AND_ABOVE=`BLOCK_MEDIUM_AND_ABOVE`,e.BLOCK_HIGH_AND_ABOVE=`BLOCK_HIGH_AND_ABOVE`,e.BLOCK_HIGHER_AND_ABOVE=`BLOCK_HIGHER_AND_ABOVE`,e.BLOCK_VERY_HIGH_AND_ABOVE=`BLOCK_VERY_HIGH_AND_ABOVE`,e.BLOCK_ONLY_EXTREMELY_HIGH=`BLOCK_ONLY_EXTREMELY_HIGH`})(ce||={});var le;(function(e){e.UNSPECIFIED=`UNSPECIFIED`,e.BLOCKING=`BLOCKING`,e.NON_BLOCKING=`NON_BLOCKING`})(le||={});var ue;(function(e){e.MODE_UNSPECIFIED=`MODE_UNSPECIFIED`,e.MODE_DYNAMIC=`MODE_DYNAMIC`})(ue||={});var de;(function(e){e.MODE_UNSPECIFIED=`MODE_UNSPECIFIED`,e.AUTO=`AUTO`,e.ANY=`ANY`,e.NONE=`NONE`,e.VALIDATED=`VALIDATED`})(de||={});var fe;(function(e){e.THINKING_LEVEL_UNSPECIFIED=`THINKING_LEVEL_UNSPECIFIED`,e.MINIMAL=`MINIMAL`,e.LOW=`LOW`,e.MEDIUM=`MEDIUM`,e.HIGH=`HIGH`})(fe||={});var pe;(function(e){e.DONT_ALLOW=`DONT_ALLOW`,e.ALLOW_ADULT=`ALLOW_ADULT`,e.ALLOW_ALL=`ALLOW_ALL`})(pe||={});var me;(function(e){e.PROMINENT_PEOPLE_UNSPECIFIED=`PROMINENT_PEOPLE_UNSPECIFIED`,e.ALLOW_PROMINENT_PEOPLE=`ALLOW_PROMINENT_PEOPLE`,e.BLOCK_PROMINENT_PEOPLE=`BLOCK_PROMINENT_PEOPLE`})(me||={});var he;(function(e){e.HARM_CATEGORY_UNSPECIFIED=`HARM_CATEGORY_UNSPECIFIED`,e.HARM_CATEGORY_HARASSMENT=`HARM_CATEGORY_HARASSMENT`,e.HARM_CATEGORY_HATE_SPEECH=`HARM_CATEGORY_HATE_SPEECH`,e.HARM_CATEGORY_SEXUALLY_EXPLICIT=`HARM_CATEGORY_SEXUALLY_EXPLICIT`,e.HARM_CATEGORY_DANGEROUS_CONTENT=`HARM_CATEGORY_DANGEROUS_CONTENT`,e.HARM_CATEGORY_CIVIC_INTEGRITY=`HARM_CATEGORY_CIVIC_INTEGRITY`,e.HARM_CATEGORY_IMAGE_HATE=`HARM_CATEGORY_IMAGE_HATE`,e.HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT=`HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT`,e.HARM_CATEGORY_IMAGE_HARASSMENT=`HARM_CATEGORY_IMAGE_HARASSMENT`,e.HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT=`HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT`,e.HARM_CATEGORY_JAILBREAK=`HARM_CATEGORY_JAILBREAK`})(he||={});var ge;(function(e){e.HARM_BLOCK_METHOD_UNSPECIFIED=`HARM_BLOCK_METHOD_UNSPECIFIED`,e.SEVERITY=`SEVERITY`,e.PROBABILITY=`PROBABILITY`})(ge||={});var _e;(function(e){e.HARM_BLOCK_THRESHOLD_UNSPECIFIED=`HARM_BLOCK_THRESHOLD_UNSPECIFIED`,e.BLOCK_LOW_AND_ABOVE=`BLOCK_LOW_AND_ABOVE`,e.BLOCK_MEDIUM_AND_ABOVE=`BLOCK_MEDIUM_AND_ABOVE`,e.BLOCK_ONLY_HIGH=`BLOCK_ONLY_HIGH`,e.BLOCK_NONE=`BLOCK_NONE`,e.OFF=`OFF`})(_e||={});var P;(function(e){e.FINISH_REASON_UNSPECIFIED=`FINISH_REASON_UNSPECIFIED`,e.STOP=`STOP`,e.MAX_TOKENS=`MAX_TOKENS`,e.SAFETY=`SAFETY`,e.RECITATION=`RECITATION`,e.LANGUAGE=`LANGUAGE`,e.OTHER=`OTHER`,e.BLOCKLIST=`BLOCKLIST`,e.PROHIBITED_CONTENT=`PROHIBITED_CONTENT`,e.SPII=`SPII`,e.MALFORMED_FUNCTION_CALL=`MALFORMED_FUNCTION_CALL`,e.IMAGE_SAFETY=`IMAGE_SAFETY`,e.UNEXPECTED_TOOL_CALL=`UNEXPECTED_TOOL_CALL`,e.IMAGE_PROHIBITED_CONTENT=`IMAGE_PROHIBITED_CONTENT`,e.NO_IMAGE=`NO_IMAGE`,e.IMAGE_RECITATION=`IMAGE_RECITATION`,e.IMAGE_OTHER=`IMAGE_OTHER`})(P||={});var ve;(function(e){e.HARM_PROBABILITY_UNSPECIFIED=`HARM_PROBABILITY_UNSPECIFIED`,e.NEGLIGIBLE=`NEGLIGIBLE`,e.LOW=`LOW`,e.MEDIUM=`MEDIUM`,e.HIGH=`HIGH`})(ve||={});var ye;(function(e){e.HARM_SEVERITY_UNSPECIFIED=`HARM_SEVERITY_UNSPECIFIED`,e.HARM_SEVERITY_NEGLIGIBLE=`HARM_SEVERITY_NEGLIGIBLE`,e.HARM_SEVERITY_LOW=`HARM_SEVERITY_LOW`,e.HARM_SEVERITY_MEDIUM=`HARM_SEVERITY_MEDIUM`,e.HARM_SEVERITY_HIGH=`HARM_SEVERITY_HIGH`})(ye||={});var be;(function(e){e.URL_RETRIEVAL_STATUS_UNSPECIFIED=`URL_RETRIEVAL_STATUS_UNSPECIFIED`,e.URL_RETRIEVAL_STATUS_SUCCESS=`URL_RETRIEVAL_STATUS_SUCCESS`,e.URL_RETRIEVAL_STATUS_ERROR=`URL_RETRIEVAL_STATUS_ERROR`,e.URL_RETRIEVAL_STATUS_PAYWALL=`URL_RETRIEVAL_STATUS_PAYWALL`,e.URL_RETRIEVAL_STATUS_UNSAFE=`URL_RETRIEVAL_STATUS_UNSAFE`})(be||={});var xe;(function(e){e.BLOCKED_REASON_UNSPECIFIED=`BLOCKED_REASON_UNSPECIFIED`,e.SAFETY=`SAFETY`,e.OTHER=`OTHER`,e.BLOCKLIST=`BLOCKLIST`,e.PROHIBITED_CONTENT=`PROHIBITED_CONTENT`,e.IMAGE_SAFETY=`IMAGE_SAFETY`,e.MODEL_ARMOR=`MODEL_ARMOR`,e.JAILBREAK=`JAILBREAK`})(xe||={});var Se;(function(e){e.TRAFFIC_TYPE_UNSPECIFIED=`TRAFFIC_TYPE_UNSPECIFIED`,e.ON_DEMAND=`ON_DEMAND`,e.ON_DEMAND_PRIORITY=`ON_DEMAND_PRIORITY`,e.ON_DEMAND_FLEX=`ON_DEMAND_FLEX`,e.PROVISIONED_THROUGHPUT=`PROVISIONED_THROUGHPUT`})(Se||={});var Ce;(function(e){e.MODALITY_UNSPECIFIED=`MODALITY_UNSPECIFIED`,e.TEXT=`TEXT`,e.IMAGE=`IMAGE`,e.AUDIO=`AUDIO`,e.VIDEO=`VIDEO`})(Ce||={});var we;(function(e){e.MODEL_STAGE_UNSPECIFIED=`MODEL_STAGE_UNSPECIFIED`,e.UNSTABLE_EXPERIMENTAL=`UNSTABLE_EXPERIMENTAL`,e.EXPERIMENTAL=`EXPERIMENTAL`,e.PREVIEW=`PREVIEW`,e.STABLE=`STABLE`,e.LEGACY=`LEGACY`,e.DEPRECATED=`DEPRECATED`,e.RETIRED=`RETIRED`})(we||={});var Te;(function(e){e.MEDIA_RESOLUTION_UNSPECIFIED=`MEDIA_RESOLUTION_UNSPECIFIED`,e.MEDIA_RESOLUTION_LOW=`MEDIA_RESOLUTION_LOW`,e.MEDIA_RESOLUTION_MEDIUM=`MEDIA_RESOLUTION_MEDIUM`,e.MEDIA_RESOLUTION_HIGH=`MEDIA_RESOLUTION_HIGH`})(Te||={});var Ee;(function(e){e.TUNING_MODE_UNSPECIFIED=`TUNING_MODE_UNSPECIFIED`,e.TUNING_MODE_FULL=`TUNING_MODE_FULL`,e.TUNING_MODE_PEFT_ADAPTER=`TUNING_MODE_PEFT_ADAPTER`})(Ee||={});var De;(function(e){e.ADAPTER_SIZE_UNSPECIFIED=`ADAPTER_SIZE_UNSPECIFIED`,e.ADAPTER_SIZE_ONE=`ADAPTER_SIZE_ONE`,e.ADAPTER_SIZE_TWO=`ADAPTER_SIZE_TWO`,e.ADAPTER_SIZE_FOUR=`ADAPTER_SIZE_FOUR`,e.ADAPTER_SIZE_EIGHT=`ADAPTER_SIZE_EIGHT`,e.ADAPTER_SIZE_SIXTEEN=`ADAPTER_SIZE_SIXTEEN`,e.ADAPTER_SIZE_THIRTY_TWO=`ADAPTER_SIZE_THIRTY_TWO`})(De||={});var Oe;(function(e){e.JOB_STATE_UNSPECIFIED=`JOB_STATE_UNSPECIFIED`,e.JOB_STATE_QUEUED=`JOB_STATE_QUEUED`,e.JOB_STATE_PENDING=`JOB_STATE_PENDING`,e.JOB_STATE_RUNNING=`JOB_STATE_RUNNING`,e.JOB_STATE_SUCCEEDED=`JOB_STATE_SUCCEEDED`,e.JOB_STATE_FAILED=`JOB_STATE_FAILED`,e.JOB_STATE_CANCELLING=`JOB_STATE_CANCELLING`,e.JOB_STATE_CANCELLED=`JOB_STATE_CANCELLED`,e.JOB_STATE_PAUSED=`JOB_STATE_PAUSED`,e.JOB_STATE_EXPIRED=`JOB_STATE_EXPIRED`,e.JOB_STATE_UPDATING=`JOB_STATE_UPDATING`,e.JOB_STATE_PARTIALLY_SUCCEEDED=`JOB_STATE_PARTIALLY_SUCCEEDED`})(Oe||={});var ke;(function(e){e.TUNING_JOB_STATE_UNSPECIFIED=`TUNING_JOB_STATE_UNSPECIFIED`,e.TUNING_JOB_STATE_WAITING_FOR_QUOTA=`TUNING_JOB_STATE_WAITING_FOR_QUOTA`,e.TUNING_JOB_STATE_PROCESSING_DATASET=`TUNING_JOB_STATE_PROCESSING_DATASET`,e.TUNING_JOB_STATE_WAITING_FOR_CAPACITY=`TUNING_JOB_STATE_WAITING_FOR_CAPACITY`,e.TUNING_JOB_STATE_TUNING=`TUNING_JOB_STATE_TUNING`,e.TUNING_JOB_STATE_POST_PROCESSING=`TUNING_JOB_STATE_POST_PROCESSING`})(ke||={});var Ae;(function(e){e.AGGREGATION_METRIC_UNSPECIFIED=`AGGREGATION_METRIC_UNSPECIFIED`,e.AVERAGE=`AVERAGE`,e.MODE=`MODE`,e.STANDARD_DEVIATION=`STANDARD_DEVIATION`,e.VARIANCE=`VARIANCE`,e.MINIMUM=`MINIMUM`,e.MAXIMUM=`MAXIMUM`,e.MEDIAN=`MEDIAN`,e.PERCENTILE_P90=`PERCENTILE_P90`,e.PERCENTILE_P95=`PERCENTILE_P95`,e.PERCENTILE_P99=`PERCENTILE_P99`})(Ae||={});var je;(function(e){e.PAIRWISE_CHOICE_UNSPECIFIED=`PAIRWISE_CHOICE_UNSPECIFIED`,e.BASELINE=`BASELINE`,e.CANDIDATE=`CANDIDATE`,e.TIE=`TIE`})(je||={});var Me;(function(e){e.TUNING_TASK_UNSPECIFIED=`TUNING_TASK_UNSPECIFIED`,e.TUNING_TASK_I2V=`TUNING_TASK_I2V`,e.TUNING_TASK_T2V=`TUNING_TASK_T2V`,e.TUNING_TASK_R2V=`TUNING_TASK_R2V`})(Me||={});var Ne;(function(e){e.STATE_UNSPECIFIED=`STATE_UNSPECIFIED`,e.STATE_PENDING=`STATE_PENDING`,e.STATE_ACTIVE=`STATE_ACTIVE`,e.STATE_FAILED=`STATE_FAILED`})(Ne||={});var Pe;(function(e){e.MEDIA_RESOLUTION_UNSPECIFIED=`MEDIA_RESOLUTION_UNSPECIFIED`,e.MEDIA_RESOLUTION_LOW=`MEDIA_RESOLUTION_LOW`,e.MEDIA_RESOLUTION_MEDIUM=`MEDIA_RESOLUTION_MEDIUM`,e.MEDIA_RESOLUTION_HIGH=`MEDIA_RESOLUTION_HIGH`,e.MEDIA_RESOLUTION_ULTRA_HIGH=`MEDIA_RESOLUTION_ULTRA_HIGH`})(Pe||={});var Fe;(function(e){e.TOOL_TYPE_UNSPECIFIED=`TOOL_TYPE_UNSPECIFIED`,e.GOOGLE_SEARCH_WEB=`GOOGLE_SEARCH_WEB`,e.GOOGLE_SEARCH_IMAGE=`GOOGLE_SEARCH_IMAGE`,e.URL_CONTEXT=`URL_CONTEXT`,e.GOOGLE_MAPS=`GOOGLE_MAPS`,e.FILE_SEARCH=`FILE_SEARCH`})(Fe||={});var Ie;(function(e){e.COLLECTION=`COLLECTION`})(Ie||={});var Le;(function(e){e.UNSPECIFIED=`unspecified`,e.FLEX=`flex`,e.STANDARD=`standard`,e.PRIORITY=`priority`})(Le||={});var Re;(function(e){e.FEATURE_SELECTION_PREFERENCE_UNSPECIFIED=`FEATURE_SELECTION_PREFERENCE_UNSPECIFIED`,e.PRIORITIZE_QUALITY=`PRIORITIZE_QUALITY`,e.BALANCED=`BALANCED`,e.PRIORITIZE_COST=`PRIORITIZE_COST`})(Re||={});var ze;(function(e){e.PREDICT=`PREDICT`,e.EMBED_CONTENT=`EMBED_CONTENT`})(ze||={});var Be;(function(e){e.BLOCK_LOW_AND_ABOVE=`BLOCK_LOW_AND_ABOVE`,e.BLOCK_MEDIUM_AND_ABOVE=`BLOCK_MEDIUM_AND_ABOVE`,e.BLOCK_ONLY_HIGH=`BLOCK_ONLY_HIGH`,e.BLOCK_NONE=`BLOCK_NONE`})(Be||={});var Ve;(function(e){e.auto=`auto`,e.en=`en`,e.ja=`ja`,e.ko=`ko`,e.hi=`hi`,e.zh=`zh`,e.pt=`pt`,e.es=`es`})(Ve||={});var He;(function(e){e.MASK_MODE_DEFAULT=`MASK_MODE_DEFAULT`,e.MASK_MODE_USER_PROVIDED=`MASK_MODE_USER_PROVIDED`,e.MASK_MODE_BACKGROUND=`MASK_MODE_BACKGROUND`,e.MASK_MODE_FOREGROUND=`MASK_MODE_FOREGROUND`,e.MASK_MODE_SEMANTIC=`MASK_MODE_SEMANTIC`})(He||={});var Ue;(function(e){e.CONTROL_TYPE_DEFAULT=`CONTROL_TYPE_DEFAULT`,e.CONTROL_TYPE_CANNY=`CONTROL_TYPE_CANNY`,e.CONTROL_TYPE_SCRIBBLE=`CONTROL_TYPE_SCRIBBLE`,e.CONTROL_TYPE_FACE_MESH=`CONTROL_TYPE_FACE_MESH`})(Ue||={});var We;(function(e){e.SUBJECT_TYPE_DEFAULT=`SUBJECT_TYPE_DEFAULT`,e.SUBJECT_TYPE_PERSON=`SUBJECT_TYPE_PERSON`,e.SUBJECT_TYPE_ANIMAL=`SUBJECT_TYPE_ANIMAL`,e.SUBJECT_TYPE_PRODUCT=`SUBJECT_TYPE_PRODUCT`})(We||={});var Ge;(function(e){e.EDIT_MODE_DEFAULT=`EDIT_MODE_DEFAULT`,e.EDIT_MODE_INPAINT_REMOVAL=`EDIT_MODE_INPAINT_REMOVAL`,e.EDIT_MODE_INPAINT_INSERTION=`EDIT_MODE_INPAINT_INSERTION`,e.EDIT_MODE_OUTPAINT=`EDIT_MODE_OUTPAINT`,e.EDIT_MODE_CONTROLLED_EDITING=`EDIT_MODE_CONTROLLED_EDITING`,e.EDIT_MODE_STYLE=`EDIT_MODE_STYLE`,e.EDIT_MODE_BGSWAP=`EDIT_MODE_BGSWAP`,e.EDIT_MODE_PRODUCT_IMAGE=`EDIT_MODE_PRODUCT_IMAGE`})(Ge||={});var Ke;(function(e){e.FOREGROUND=`FOREGROUND`,e.BACKGROUND=`BACKGROUND`,e.PROMPT=`PROMPT`,e.SEMANTIC=`SEMANTIC`,e.INTERACTIVE=`INTERACTIVE`})(Ke||={});var qe;(function(e){e.ASSET=`ASSET`,e.STYLE=`STYLE`})(qe||={});var Je;(function(e){e.INSERT=`INSERT`,e.REMOVE=`REMOVE`,e.REMOVE_STATIC=`REMOVE_STATIC`,e.OUTPAINT=`OUTPAINT`})(Je||={});var Ye;(function(e){e.OPTIMIZED=`OPTIMIZED`,e.LOSSLESS=`LOSSLESS`})(Ye||={});var Xe;(function(e){e.SUPERVISED_FINE_TUNING=`SUPERVISED_FINE_TUNING`,e.PREFERENCE_TUNING=`PREFERENCE_TUNING`,e.DISTILLATION=`DISTILLATION`})(Xe||={});var Ze;(function(e){e.STATE_UNSPECIFIED=`STATE_UNSPECIFIED`,e.PROCESSING=`PROCESSING`,e.ACTIVE=`ACTIVE`,e.FAILED=`FAILED`})(Ze||={});var Qe;(function(e){e.SOURCE_UNSPECIFIED=`SOURCE_UNSPECIFIED`,e.UPLOADED=`UPLOADED`,e.GENERATED=`GENERATED`,e.REGISTERED=`REGISTERED`})(Qe||={});var $e;(function(e){e.TURN_COMPLETE_REASON_UNSPECIFIED=`TURN_COMPLETE_REASON_UNSPECIFIED`,e.MALFORMED_FUNCTION_CALL=`MALFORMED_FUNCTION_CALL`,e.RESPONSE_REJECTED=`RESPONSE_REJECTED`,e.NEED_MORE_INPUT=`NEED_MORE_INPUT`,e.PROHIBITED_INPUT_CONTENT=`PROHIBITED_INPUT_CONTENT`,e.IMAGE_PROHIBITED_INPUT_CONTENT=`IMAGE_PROHIBITED_INPUT_CONTENT`,e.INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED=`INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED`,e.INPUT_IMAGE_CELEBRITY=`INPUT_IMAGE_CELEBRITY`,e.INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED=`INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED`,e.INPUT_TEXT_NCII_PROHIBITED=`INPUT_TEXT_NCII_PROHIBITED`,e.INPUT_OTHER=`INPUT_OTHER`,e.INPUT_IP_PROHIBITED=`INPUT_IP_PROHIBITED`,e.BLOCKLIST=`BLOCKLIST`,e.UNSAFE_PROMPT_FOR_IMAGE_GENERATION=`UNSAFE_PROMPT_FOR_IMAGE_GENERATION`,e.GENERATED_IMAGE_SAFETY=`GENERATED_IMAGE_SAFETY`,e.GENERATED_CONTENT_SAFETY=`GENERATED_CONTENT_SAFETY`,e.GENERATED_AUDIO_SAFETY=`GENERATED_AUDIO_SAFETY`,e.GENERATED_VIDEO_SAFETY=`GENERATED_VIDEO_SAFETY`,e.GENERATED_CONTENT_PROHIBITED=`GENERATED_CONTENT_PROHIBITED`,e.GENERATED_CONTENT_BLOCKLIST=`GENERATED_CONTENT_BLOCKLIST`,e.GENERATED_IMAGE_PROHIBITED=`GENERATED_IMAGE_PROHIBITED`,e.GENERATED_IMAGE_CELEBRITY=`GENERATED_IMAGE_CELEBRITY`,e.GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER=`GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER`,e.GENERATED_IMAGE_IDENTIFIABLE_PEOPLE=`GENERATED_IMAGE_IDENTIFIABLE_PEOPLE`,e.GENERATED_IMAGE_MINORS=`GENERATED_IMAGE_MINORS`,e.OUTPUT_IMAGE_IP_PROHIBITED=`OUTPUT_IMAGE_IP_PROHIBITED`,e.GENERATED_OTHER=`GENERATED_OTHER`,e.MAX_REGENERATION_REACHED=`MAX_REGENERATION_REACHED`})($e||={});var et;(function(e){e.MODALITY_UNSPECIFIED=`MODALITY_UNSPECIFIED`,e.TEXT=`TEXT`,e.IMAGE=`IMAGE`,e.VIDEO=`VIDEO`,e.AUDIO=`AUDIO`,e.DOCUMENT=`DOCUMENT`})(et||={});var tt;(function(e){e.VAD_SIGNAL_TYPE_UNSPECIFIED=`VAD_SIGNAL_TYPE_UNSPECIFIED`,e.VAD_SIGNAL_TYPE_SOS=`VAD_SIGNAL_TYPE_SOS`,e.VAD_SIGNAL_TYPE_EOS=`VAD_SIGNAL_TYPE_EOS`})(tt||={});var nt;(function(e){e.TYPE_UNSPECIFIED=`TYPE_UNSPECIFIED`,e.ACTIVITY_START=`ACTIVITY_START`,e.ACTIVITY_END=`ACTIVITY_END`})(nt||={});var rt;(function(e){e.START_SENSITIVITY_UNSPECIFIED=`START_SENSITIVITY_UNSPECIFIED`,e.START_SENSITIVITY_HIGH=`START_SENSITIVITY_HIGH`,e.START_SENSITIVITY_LOW=`START_SENSITIVITY_LOW`})(rt||={});var it;(function(e){e.END_SENSITIVITY_UNSPECIFIED=`END_SENSITIVITY_UNSPECIFIED`,e.END_SENSITIVITY_HIGH=`END_SENSITIVITY_HIGH`,e.END_SENSITIVITY_LOW=`END_SENSITIVITY_LOW`})(it||={});var at;(function(e){e.ACTIVITY_HANDLING_UNSPECIFIED=`ACTIVITY_HANDLING_UNSPECIFIED`,e.START_OF_ACTIVITY_INTERRUPTS=`START_OF_ACTIVITY_INTERRUPTS`,e.NO_INTERRUPTION=`NO_INTERRUPTION`})(at||={});var ot;(function(e){e.TURN_COVERAGE_UNSPECIFIED=`TURN_COVERAGE_UNSPECIFIED`,e.TURN_INCLUDES_ONLY_ACTIVITY=`TURN_INCLUDES_ONLY_ACTIVITY`,e.TURN_INCLUDES_ALL_INPUT=`TURN_INCLUDES_ALL_INPUT`,e.TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO=`TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO`})(ot||={});var st;(function(e){e.SCALE_UNSPECIFIED=`SCALE_UNSPECIFIED`,e.C_MAJOR_A_MINOR=`C_MAJOR_A_MINOR`,e.D_FLAT_MAJOR_B_FLAT_MINOR=`D_FLAT_MAJOR_B_FLAT_MINOR`,e.D_MAJOR_B_MINOR=`D_MAJOR_B_MINOR`,e.E_FLAT_MAJOR_C_MINOR=`E_FLAT_MAJOR_C_MINOR`,e.E_MAJOR_D_FLAT_MINOR=`E_MAJOR_D_FLAT_MINOR`,e.F_MAJOR_D_MINOR=`F_MAJOR_D_MINOR`,e.G_FLAT_MAJOR_E_FLAT_MINOR=`G_FLAT_MAJOR_E_FLAT_MINOR`,e.G_MAJOR_E_MINOR=`G_MAJOR_E_MINOR`,e.A_FLAT_MAJOR_F_MINOR=`A_FLAT_MAJOR_F_MINOR`,e.A_MAJOR_G_FLAT_MINOR=`A_MAJOR_G_FLAT_MINOR`,e.B_FLAT_MAJOR_G_MINOR=`B_FLAT_MAJOR_G_MINOR`,e.B_MAJOR_A_FLAT_MINOR=`B_MAJOR_A_FLAT_MINOR`})(st||={});var ct;(function(e){e.MUSIC_GENERATION_MODE_UNSPECIFIED=`MUSIC_GENERATION_MODE_UNSPECIFIED`,e.QUALITY=`QUALITY`,e.DIVERSITY=`DIVERSITY`,e.VOCALIZATION=`VOCALIZATION`})(ct||={});var lt;(function(e){e.PLAYBACK_CONTROL_UNSPECIFIED=`PLAYBACK_CONTROL_UNSPECIFIED`,e.PLAY=`PLAY`,e.PAUSE=`PAUSE`,e.STOP=`STOP`,e.RESET_CONTEXT=`RESET_CONTEXT`})(lt||={});var ut=class{constructor(e){let t={};for(let n of e.headers.entries())t[n[0]]=n[1];this.headers=t,this.responseInternal=e}json(){return this.responseInternal.json()}},dt=class{get text(){if(this.candidates?.[0]?.content?.parts?.length===0)return;this.candidates&&this.candidates.length>1&&console.warn(`there are multiple candidates in the response, returning text from the first one.`);let e=``,t=!1,n=[];for(let r of this.candidates?.[0]?.content?.parts??[]){for(let[e,t]of Object.entries(r))e!==`text`&&e!==`thought`&&e!==`thoughtSignature`&&(t!==null||t!==void 0)&&n.push(e);if(typeof r.text==`string`){if(typeof r.thought==`boolean`&&r.thought)continue;t=!0,e+=r.text}}return n.length>0&&console.warn(`there are non-text parts ${n} in the response, returning concatenation of all text parts. Please refer to the non text parts for a full response from model.`),t?e:void 0}get data(){if(this.candidates?.[0]?.content?.parts?.length===0)return;this.candidates&&this.candidates.length>1&&console.warn(`there are multiple candidates in the response, returning data from the first one.`);let e=``,t=[];for(let n of this.candidates?.[0]?.content?.parts??[]){for(let[e,r]of Object.entries(n))e!==`inlineData`&&(r!==null||r!==void 0)&&t.push(e);n.inlineData&&typeof n.inlineData.data==`string`&&(e+=atob(n.inlineData.data))}return t.length>0&&console.warn(`there are non-data parts ${t} in the response, returning concatenation of all data parts. Please refer to the non data parts for a full response from model.`),e.length>0?btoa(e):void 0}get functionCalls(){if(this.candidates?.[0]?.content?.parts?.length===0)return;this.candidates&&this.candidates.length>1&&console.warn(`there are multiple candidates in the response, returning function calls from the first one.`);let e=(this.candidates?.[0]?.content?.parts)?.filter(e=>e.functionCall).map(e=>e.functionCall).filter(e=>e!==void 0);if(e?.length!==0)return e}get executableCode(){if(this.candidates?.[0]?.content?.parts?.length===0)return;this.candidates&&this.candidates.length>1&&console.warn(`there are multiple candidates in the response, returning executable code from the first one.`);let e=(this.candidates?.[0]?.content?.parts)?.filter(e=>e.executableCode).map(e=>e.executableCode).filter(e=>e!==void 0);if(e?.length!==0)return e?.[0]?.code}get codeExecutionResult(){if(this.candidates?.[0]?.content?.parts?.length===0)return;this.candidates&&this.candidates.length>1&&console.warn(`there are multiple candidates in the response, returning code execution result from the first one.`);let e=(this.candidates?.[0]?.content?.parts)?.filter(e=>e.codeExecutionResult).map(e=>e.codeExecutionResult).filter(e=>e!==void 0);if(e?.length!==0)return e?.[0]?.output}},ft=class{},pt=class{},mt=class{},ht=class{},gt=class{},_t=class{},vt=class{},yt=class{},bt=class{},xt=class{},St=class e{_fromAPIResponse({apiResponse:t,_isVertexAI:n}){let r=new e,i,a=t;return i=n?x(a):b(a),Object.assign(r,i),r}},Ct=class{},wt=class{},Tt=class{},Et=class{},Dt=class{},Ot=class{},kt=class{},At=class e{_fromAPIResponse({apiResponse:t,_isVertexAI:n}){let r=new e,i=O(t);return Object.assign(r,i),r}},jt=class{},Mt=class{},Nt=class{},Pt=class{},Ft=class{},It=class{get text(){let e=``,t=!1,n=[];for(let r of this.serverContent?.modelTurn?.parts??[]){for(let[e,t]of Object.entries(r))e!==`text`&&e!==`thought`&&t!==null&&n.push(e);if(typeof r.text==`string`){if(typeof r.thought==`boolean`&&r.thought)continue;t=!0,e+=r.text}}return n.length>0&&console.warn(`there are non-text parts ${n} in the response, returning concatenation of all text parts. Please refer to the non text parts for a full response from model.`),t?e:void 0}get data(){let e=``,t=[];for(let n of this.serverContent?.modelTurn?.parts??[]){for(let[e,r]of Object.entries(n))e!==`inlineData`&&r!==null&&t.push(e);n.inlineData&&typeof n.inlineData.data==`string`&&(e+=atob(n.inlineData.data))}return t.length>0&&console.warn(`there are non-data parts ${t} in the response, returning concatenation of all data parts. Please refer to the non data parts for a full response from model.`),e.length>0?btoa(e):void 0}},Lt=class{get audioChunk(){if(this.serverContent&&this.serverContent.audioChunks&&this.serverContent.audioChunks.length>0)return this.serverContent.audioChunks[0]}},Rt=class e{_fromAPIResponse({apiResponse:t,_isVertexAI:n}){let r=new e,i=A(t);return Object.assign(r,i),r}};function F(e,t){if(!t||typeof t!=`string`)throw Error(`model is required and must be a string`);if(t.includes(`..`)||t.includes(`?`)||t.includes(`&`))throw Error(`invalid model parameter`);if(e.isVertexAI()){if(t.startsWith(`publishers/`)||t.startsWith(`projects/`)||t.startsWith(`models/`))return t;if(t.indexOf(`/`)>=0){let e=t.split(`/`,2);return`publishers/${e[0]}/models/${e[1]}`}else return`publishers/google/models/${t}`}else if(t.startsWith(`models/`)||t.startsWith(`tunedModels/`))return t;else return`models/${t}`}function zt(e,t){let n=F(e,t);return n?n.startsWith(`publishers/`)&&e.isVertexAI()?`projects/${e.getProject()}/locations/${e.getLocation()}/${n}`:n.startsWith(`models/`)&&e.isVertexAI()?`projects/${e.getProject()}/locations/${e.getLocation()}/publishers/google/${n}`:n:``}function Bt(e){return Array.isArray(e)?e.map(e=>Vt(e)):[Vt(e)]}function Vt(e){if(typeof e==`object`&&e)return e;throw Error(`Could not parse input as Blob. Unsupported blob type: ${typeof e}`)}function Ht(e){let t=Vt(e);if(t.mimeType&&t.mimeType.startsWith(`image/`))return t;throw Error(`Unsupported mime type: ${t.mimeType}`)}function Ut(e){let t=Vt(e);if(t.mimeType&&t.mimeType.startsWith(`audio/`))return t;throw Error(`Unsupported mime type: ${t.mimeType}`)}function Wt(e){if(e==null)throw Error(`PartUnion is required`);if(typeof e==`object`)return e;if(typeof e==`string`)return{text:e};throw Error(`Unsupported part type: ${typeof e}`)}function Gt(e){if(e==null||Array.isArray(e)&&e.length===0)throw Error(`PartListUnion is required`);return Array.isArray(e)?e.map(e=>Wt(e)):[Wt(e)]}function Kt(e){return typeof e==`object`&&!!e&&`parts`in e&&Array.isArray(e.parts)}function qt(e){return typeof e==`object`&&!!e&&`functionCall`in e}function Jt(e){return typeof e==`object`&&!!e&&`functionResponse`in e}function I(e){if(e==null)throw Error(`ContentUnion is required`);return Kt(e)?e:{role:`user`,parts:Gt(e)}}function Yt(e,t){if(!t)return[];if(e.isVertexAI()&&Array.isArray(t))return t.flatMap(e=>{let t=I(e);return t.parts&&t.parts.length>0&&t.parts[0].text!==void 0?[t.parts[0].text]:[]});if(e.isVertexAI()){let e=I(t);return e.parts&&e.parts.length>0&&e.parts[0].text!==void 0?[e.parts[0].text]:[]}return Array.isArray(t)?t.map(e=>I(e)):[I(t)]}function L(e){if(e==null||Array.isArray(e)&&e.length===0)throw Error(`contents are required`);if(!Array.isArray(e)){if(qt(e)||Jt(e))throw Error(`To specify functionCall or functionResponse parts, please wrap them in a Content object, specifying the role for them`);return[I(e)]}let t=[],n=[],r=Kt(e[0]);for(let i of e){let e=Kt(i);if(e!=r)throw Error(`Mixing Content and Parts is not supported, please group the parts into a the appropriate Content objects and specify the roles for them`);if(e)t.push(i);else if(qt(i)||Jt(i))throw Error(`To specify functionCall or functionResponse parts, please wrap them, and any other parts, in Content objects as appropriate, specifying the role for them`);else n.push(i)}return r||t.push({role:`user`,parts:Gt(n)}),t}function Xt(e,t){e.includes(`null`)&&(t.nullable=!0);let n=e.filter(e=>e!==`null`);if(n.length===1)t.type=Object.values(N).includes(n[0].toUpperCase())?n[0].toUpperCase():N.TYPE_UNSPECIFIED;else{t.anyOf=[];for(let e of n)t.anyOf.push({type:Object.values(N).includes(e.toUpperCase())?e.toUpperCase():N.TYPE_UNSPECIFIED})}}function Zt(e){let t={},n=[`items`],r=[`anyOf`],i=[`properties`];if(e.type&&e.anyOf)throw Error(`type and anyOf cannot be both populated.`);let a=e.anyOf;a!=null&&a.length==2&&(a[0].type===`null`?(t.nullable=!0,e=a[1]):a[1].type===`null`&&(t.nullable=!0,e=a[0])),e.type instanceof Array&&Xt(e.type,t);for(let[a,o]of Object.entries(e))if(o!=null)if(a==`type`){if(o===`null`)throw Error(`type: null can not be the only possible type for the field.`);if(o instanceof Array)continue;t.type=Object.values(N).includes(o.toUpperCase())?o.toUpperCase():N.TYPE_UNSPECIFIED}else if(n.includes(a))t[a]=Zt(o);else if(r.includes(a)){let e=[];for(let n of o){if(n.type==`null`){t.nullable=!0;continue}e.push(Zt(n))}t[a]=e}else if(i.includes(a)){let e={};for(let[t,n]of Object.entries(o))e[t]=Zt(n);t[a]=e}else{if(a===`additionalProperties`)continue;t[a]=o}return t}function Qt(e){return Zt(e)}function $t(e){if(typeof e==`object`)return e;if(typeof e==`string`)return{voiceConfig:{prebuiltVoiceConfig:{voiceName:e}}};throw Error(`Unsupported speechConfig type: ${typeof e}`)}function en(e){if(`multiSpeakerVoiceConfig`in e)throw Error(`multiSpeakerVoiceConfig is not supported in the live API.`);return e}function tn(e){if(e.functionDeclarations)for(let t of e.functionDeclarations)t.parameters&&(Object.keys(t.parameters).includes(`$schema`)?t.parametersJsonSchema||(t.parametersJsonSchema=t.parameters,delete t.parameters):t.parameters=Zt(t.parameters)),t.response&&(Object.keys(t.response).includes(`$schema`)?t.responseJsonSchema||(t.responseJsonSchema=t.response,delete t.response):t.response=Zt(t.response));return e}function nn(e){if(e==null)throw Error(`tools is required`);if(!Array.isArray(e))throw Error(`tools is required and must be an array of Tools`);let t=[];for(let n of e)t.push(n);return t}function rn(e,t,n,r=1){let i=!t.startsWith(`${n}/`)&&t.split(`/`).length===r;return e.isVertexAI()?t.startsWith(`projects/`)?t:t.startsWith(`locations/`)?`projects/${e.getProject()}/${t}`:t.startsWith(`${n}/`)?`projects/${e.getProject()}/locations/${e.getLocation()}/${t}`:i?`projects/${e.getProject()}/locations/${e.getLocation()}/${n}/${t}`:t:i?`${n}/${t}`:t}function R(e,t){if(typeof t!=`string`)throw Error(`name must be a string`);return rn(e,t,`cachedContents`)}function an(e){switch(e){case`STATE_UNSPECIFIED`:return`JOB_STATE_UNSPECIFIED`;case`CREATING`:return`JOB_STATE_RUNNING`;case`ACTIVE`:return`JOB_STATE_SUCCEEDED`;case`FAILED`:return`JOB_STATE_FAILED`;default:return e}}function z(e){return v(e)}function on(e){return typeof e==`object`&&!!e&&`name`in e}function sn(e){return typeof e==`object`&&!!e&&`video`in e}function cn(e){return typeof e==`object`&&!!e&&`uri`in e}function ln(e){let t;if(on(e)&&(t=e.name),!(cn(e)&&(t=e.uri,t===void 0))&&!(sn(e)&&(t=e.video?.uri,t===void 0))){if(typeof e==`string`&&(t=e),t===void 0)throw Error(`Could not extract file name from the provided input.`);if(t.startsWith(`https://`)){let e=t.split(`files/`)[1].match(/[a-z0-9]+/);if(e===null)throw Error(`Could not extract file name from URI ${t}`);t=e[0]}else t.startsWith(`files/`)&&(t=t.split(`files/`)[1]);return t}}function un(e,t){let n;return n=e.isVertexAI()?t?`publishers/google/models`:`models`:t?`models`:`tunedModels`,n}function dn(e){for(let t of[`models`,`tunedModels`,`publisherModels`])if(fn(e,t))return e[t];return[]}function fn(e,t){return typeof e==`object`&&!!e&&t in e}function pn(e,t={}){let n=e,r={name:n.name,description:n.description,parametersJsonSchema:n.inputSchema};return n.outputSchema&&(r.responseJsonSchema=n.outputSchema),t.behavior&&(r.behavior=t.behavior),{functionDeclarations:[r]}}function mn(e,t={}){let n=[],r=new Set;for(let i of e){let e=i.name;if(r.has(e))throw Error(`Duplicate function name ${e} found in MCP tools. Please ensure function names are unique.`);r.add(e);let a=pn(i,t);a.functionDeclarations&&n.push(...a.functionDeclarations)}return{functionDeclarations:n}}function hn(e,t){let n;if(typeof t==`string`)if(e.isVertexAI())if(t.startsWith(`gs://`))n={format:`jsonl`,gcsUri:[t]};else if(t.startsWith(`bq://`))n={format:`bigquery`,bigqueryUri:t};else throw Error(`Unsupported string source for Vertex AI: ${t}`);else if(t.startsWith(`files/`))n={fileName:t};else throw Error(`Unsupported string source for Gemini API: ${t}`);else if(Array.isArray(t)){if(e.isVertexAI())throw Error(`InlinedRequest[] is not supported in Vertex AI.`);n={inlinedRequests:t}}else n=t;let r=[n.gcsUri,n.bigqueryUri].filter(Boolean).length,i=[n.inlinedRequests,n.fileName].filter(Boolean).length;if(e.isVertexAI()){if(i>0||r!==1)throw Error("Exactly one of `gcsUri` or `bigqueryUri` must be set for Vertex AI.")}else if(r>0||i!==1)throw Error("Exactly one of `inlinedRequests`, `fileName`, must be set for Gemini API.");return n}function gn(e){if(typeof e!=`string`)return e;let t=e;if(t.startsWith(`gs://`))return{format:`jsonl`,gcsUri:t};if(t.startsWith(`bq://`))return{format:`bigquery`,bigqueryUri:t};throw Error(`Unsupported destination: ${t}`)}function _n(e){if(typeof e!=`object`||!e)return{};let t=e,n=t.inlinedResponses;if(typeof n!=`object`||!n)return e;let r=n.inlinedResponses;if(!Array.isArray(r)||r.length===0)return e;let i=!1;for(let e of r){if(typeof e!=`object`||!e)continue;let t=e.response;if(!(typeof t!=`object`||!t)&&t.embedding!==void 0){i=!0;break}}return i&&(t.inlinedEmbedContentResponses=t.inlinedResponses,delete t.inlinedResponses),e}function vn(e,t){let n=t;if(!e.isVertexAI()){if(/batches\/[^/]+$/.test(n))return n.split(`/`).pop();throw Error(`Invalid batch job name: ${n}.`)}if(/^projects\/[^/]+\/locations\/[^/]+\/batchPredictionJobs\/[^/]+$/.test(n))return n.split(`/`).pop();if(/^\d+$/.test(n))return n;throw Error(`Invalid batch job name: ${n}.`)}function yn(e){let t=e;return t===`BATCH_STATE_UNSPECIFIED`?`JOB_STATE_UNSPECIFIED`:t===`BATCH_STATE_PENDING`?`JOB_STATE_PENDING`:t===`BATCH_STATE_RUNNING`?`JOB_STATE_RUNNING`:t===`BATCH_STATE_SUCCEEDED`?`JOB_STATE_SUCCEEDED`:t===`BATCH_STATE_FAILED`?`JOB_STATE_FAILED`:t===`BATCH_STATE_CANCELLED`?`JOB_STATE_CANCELLED`:t===`BATCH_STATE_EXPIRED`?`JOB_STATE_EXPIRED`:t}function bn(e){return e.includes(`gemini`)&&e!==`gemini-embedding-001`||e.includes(`maas`)}function xn(e){let t={},n=h(e,[`apiKey`]);if(n!=null&&m(t,[`apiKey`],n),h(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(h(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(h(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(h(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(h(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(h(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function Sn(e){let t={},n=h(e,[`responsesFile`]);n!=null&&m(t,[`fileName`],n);let r=h(e,[`inlinedResponses`,`inlinedResponses`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>or(e))),m(t,[`inlinedResponses`],e)}let i=h(e,[`inlinedEmbedContentResponses`,`inlinedResponses`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`inlinedEmbedContentResponses`],e)}return t}function Cn(e){let t={},n=h(e,[`predictionsFormat`]);n!=null&&m(t,[`format`],n);let r=h(e,[`gcsDestination`,`outputUriPrefix`]);r!=null&&m(t,[`gcsUri`],r);let i=h(e,[`bigqueryDestination`,`outputUri`]);return i!=null&&m(t,[`bigqueryUri`],i),t}function wn(e){let t={},n=h(e,[`format`]);n!=null&&m(t,[`predictionsFormat`],n);let r=h(e,[`gcsUri`]);r!=null&&m(t,[`gcsDestination`,`outputUriPrefix`],r);let i=h(e,[`bigqueryUri`]);if(i!=null&&m(t,[`bigqueryDestination`,`outputUri`],i),h(e,[`fileName`])!==void 0)throw Error(`fileName parameter is not supported in Vertex AI.`);if(h(e,[`inlinedResponses`])!==void 0)throw Error(`inlinedResponses parameter is not supported in Vertex AI.`);if(h(e,[`inlinedEmbedContentResponses`])!==void 0)throw Error(`inlinedEmbedContentResponses parameter is not supported in Vertex AI.`);return t}function Tn(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`,`displayName`]);r!=null&&m(t,[`displayName`],r);let i=h(e,[`metadata`,`state`]);i!=null&&m(t,[`state`],yn(i));let a=h(e,[`metadata`,`createTime`]);a!=null&&m(t,[`createTime`],a);let o=h(e,[`metadata`,`endTime`]);o!=null&&m(t,[`endTime`],o);let s=h(e,[`metadata`,`updateTime`]);s!=null&&m(t,[`updateTime`],s);let c=h(e,[`metadata`,`model`]);c!=null&&m(t,[`model`],c);let l=h(e,[`metadata`,`output`]);return l!=null&&m(t,[`dest`],Sn(_n(l))),t}function En(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`displayName`]);r!=null&&m(t,[`displayName`],r);let i=h(e,[`state`]);i!=null&&m(t,[`state`],yn(i));let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`createTime`]);o!=null&&m(t,[`createTime`],o);let s=h(e,[`startTime`]);s!=null&&m(t,[`startTime`],s);let c=h(e,[`endTime`]);c!=null&&m(t,[`endTime`],c);let l=h(e,[`updateTime`]);l!=null&&m(t,[`updateTime`],l);let u=h(e,[`model`]);u!=null&&m(t,[`model`],u);let d=h(e,[`inputConfig`]);d!=null&&m(t,[`src`],Dn(d));let f=h(e,[`outputConfig`]);f!=null&&m(t,[`dest`],Cn(_n(f)));let p=h(e,[`completionStats`]);return p!=null&&m(t,[`completionStats`],p),t}function Dn(e){let t={},n=h(e,[`instancesFormat`]);n!=null&&m(t,[`format`],n);let r=h(e,[`gcsSource`,`uris`]);r!=null&&m(t,[`gcsUri`],r);let i=h(e,[`bigquerySource`,`inputUri`]);return i!=null&&m(t,[`bigqueryUri`],i),t}function On(e,t){let n={};if(h(t,[`format`])!==void 0)throw Error(`format parameter is not supported in Gemini API.`);if(h(t,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);if(h(t,[`bigqueryUri`])!==void 0)throw Error(`bigqueryUri parameter is not supported in Gemini API.`);let r=h(t,[`fileName`]);r!=null&&m(n,[`fileName`],r);let i=h(t,[`inlinedRequests`]);if(i!=null){let t=i;Array.isArray(t)&&(t=t.map(t=>ar(e,t))),m(n,[`requests`,`requests`],t)}return n}function kn(e){let t={},n=h(e,[`format`]);n!=null&&m(t,[`instancesFormat`],n);let r=h(e,[`gcsUri`]);r!=null&&m(t,[`gcsSource`,`uris`],r);let i=h(e,[`bigqueryUri`]);if(i!=null&&m(t,[`bigquerySource`,`inputUri`],i),h(e,[`fileName`])!==void 0)throw Error(`fileName parameter is not supported in Vertex AI.`);if(h(e,[`inlinedRequests`])!==void 0)throw Error(`inlinedRequests parameter is not supported in Vertex AI.`);return t}function An(e){let t={},n=h(e,[`data`]);if(n!=null&&m(t,[`data`],n),h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function jn(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function Mn(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function Nn(e){let t={},n=h(e,[`content`]);n!=null&&m(t,[`content`],n);let r=h(e,[`citationMetadata`]);r!=null&&m(t,[`citationMetadata`],Pn(r));let i=h(e,[`tokenCount`]);i!=null&&m(t,[`tokenCount`],i);let a=h(e,[`finishReason`]);a!=null&&m(t,[`finishReason`],a);let o=h(e,[`groundingMetadata`]);o!=null&&m(t,[`groundingMetadata`],o);let s=h(e,[`avgLogprobs`]);s!=null&&m(t,[`avgLogprobs`],s);let c=h(e,[`index`]);c!=null&&m(t,[`index`],c);let l=h(e,[`logprobsResult`]);l!=null&&m(t,[`logprobsResult`],l);let u=h(e,[`safetyRatings`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`safetyRatings`],e)}let d=h(e,[`urlContextMetadata`]);return d!=null&&m(t,[`urlContextMetadata`],d),t}function Pn(e){let t={},n=h(e,[`citationSources`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`citations`],e)}return t}function Fn(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>pr(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function In(e,t){let n={},r=h(e,[`displayName`]);if(t!==void 0&&r!=null&&m(t,[`batch`,`displayName`],r),h(e,[`dest`])!==void 0)throw Error(`dest parameter is not supported in Gemini API.`);let i=h(e,[`webhookConfig`]);return t!==void 0&&i!=null&&m(t,[`batch`,`webhookConfig`],i),n}function Ln(e,t){let n={},r=h(e,[`displayName`]);t!==void 0&&r!=null&&m(t,[`displayName`],r);let i=h(e,[`dest`]);if(t!==void 0&&i!=null&&m(t,[`outputConfig`],wn(gn(i))),h(e,[`webhookConfig`])!==void 0)throw Error(`webhookConfig parameter is not supported in Vertex AI.`);return n}function Rn(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`_url`,`model`],F(e,r));let i=h(t,[`src`]);i!=null&&m(n,[`batch`,`inputConfig`],On(e,hn(e,i)));let a=h(t,[`config`]);return a!=null&&In(a,n),n}function zn(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`model`],F(e,r));let i=h(t,[`src`]);i!=null&&m(n,[`inputConfig`],kn(hn(e,i)));let a=h(t,[`config`]);return a!=null&&Ln(a,n),n}function Bn(e,t){let n={},r=h(e,[`displayName`]);return t!==void 0&&r!=null&&m(t,[`batch`,`displayName`],r),n}function Vn(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`_url`,`model`],F(e,r));let i=h(t,[`src`]);i!=null&&m(n,[`batch`,`inputConfig`],Jn(e,i));let a=h(t,[`config`]);return a!=null&&Bn(a,n),n}function Hn(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function Un(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function Wn(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`name`]);r!=null&&m(t,[`name`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);return a!=null&&m(t,[`error`],a),t}function Gn(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`name`]);r!=null&&m(t,[`name`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);return a!=null&&m(t,[`error`],a),t}function Kn(e,t){let n={},r=h(t,[`contents`]);if(r!=null){let t=Yt(e,r);Array.isArray(t)&&(t=t.map(e=>e)),m(n,[`requests[]`,`request`,`content`],t)}let i=h(t,[`config`]);return i!=null&&(m(n,[`_self`],qn(i,n)),g(n,{"requests[].*":`requests[].request.*`})),n}function qn(e,t){let n={},r=h(e,[`taskType`]);t!==void 0&&r!=null&&m(t,[`requests[]`,`taskType`],r);let i=h(e,[`title`]);t!==void 0&&i!=null&&m(t,[`requests[]`,`title`],i);let a=h(e,[`outputDimensionality`]);if(t!==void 0&&a!=null&&m(t,[`requests[]`,`outputDimensionality`],a),h(e,[`mimeType`])!==void 0)throw Error(`mimeType parameter is not supported in Gemini API.`);if(h(e,[`autoTruncate`])!==void 0)throw Error(`autoTruncate parameter is not supported in Gemini API.`);if(h(e,[`documentOcr`])!==void 0)throw Error(`documentOcr parameter is not supported in Gemini API.`);if(h(e,[`audioTrackExtraction`])!==void 0)throw Error(`audioTrackExtraction parameter is not supported in Gemini API.`);return n}function Jn(e,t){let n={},r=h(t,[`fileName`]);r!=null&&m(n,[`file_name`],r);let i=h(t,[`inlinedRequests`]);return i!=null&&m(n,[`requests`],Kn(e,i)),n}function Yn(e){let t={};if(h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=h(e,[`fileUri`]);n!=null&&m(t,[`fileUri`],n);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function Xn(e){let t={},n=h(e,[`id`]);n!=null&&m(t,[`id`],n);let r=h(e,[`args`]);r!=null&&m(t,[`args`],r);let i=h(e,[`name`]);if(i!=null&&m(t,[`name`],i),h(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(h(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function Zn(e){let t={},n=h(e,[`allowedFunctionNames`]);n!=null&&m(t,[`allowedFunctionNames`],n);let r=h(e,[`mode`]);if(r!=null&&m(t,[`mode`],r),h(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return t}function Qn(e,t,n){let r={},i=h(t,[`systemInstruction`]);n!==void 0&&i!=null&&m(n,[`systemInstruction`],Fn(I(i)));let a=h(t,[`temperature`]);a!=null&&m(r,[`temperature`],a);let o=h(t,[`topP`]);o!=null&&m(r,[`topP`],o);let s=h(t,[`topK`]);s!=null&&m(r,[`topK`],s);let c=h(t,[`candidateCount`]);c!=null&&m(r,[`candidateCount`],c);let l=h(t,[`maxOutputTokens`]);l!=null&&m(r,[`maxOutputTokens`],l);let u=h(t,[`stopSequences`]);u!=null&&m(r,[`stopSequences`],u);let d=h(t,[`responseLogprobs`]);d!=null&&m(r,[`responseLogprobs`],d);let f=h(t,[`logprobs`]);f!=null&&m(r,[`logprobs`],f);let p=h(t,[`presencePenalty`]);p!=null&&m(r,[`presencePenalty`],p);let g=h(t,[`frequencyPenalty`]);g!=null&&m(r,[`frequencyPenalty`],g);let _=h(t,[`seed`]);_!=null&&m(r,[`seed`],_);let v=h(t,[`responseMimeType`]);v!=null&&m(r,[`responseMimeType`],v);let y=h(t,[`responseSchema`]);y!=null&&m(r,[`responseSchema`],Qt(y));let b=h(t,[`responseJsonSchema`]);if(b!=null&&m(r,[`responseJsonSchema`],b),h(t,[`routingConfig`])!==void 0)throw Error(`routingConfig parameter is not supported in Gemini API.`);if(h(t,[`modelSelectionConfig`])!==void 0)throw Error(`modelSelectionConfig parameter is not supported in Gemini API.`);let x=h(t,[`safetySettings`]);if(n!==void 0&&x!=null){let e=x;Array.isArray(e)&&(e=e.map(e=>mr(e))),m(n,[`safetySettings`],e)}let S=h(t,[`tools`]);if(n!==void 0&&S!=null){let e=nn(S);Array.isArray(e)&&(e=e.map(e=>gr(tn(e)))),m(n,[`tools`],e)}let C=h(t,[`toolConfig`]);if(n!==void 0&&C!=null&&m(n,[`toolConfig`],hr(C)),h(t,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let w=h(t,[`cachedContent`]);n!==void 0&&w!=null&&m(n,[`cachedContent`],R(e,w));let T=h(t,[`responseModalities`]);T!=null&&m(r,[`responseModalities`],T);let E=h(t,[`mediaResolution`]);E!=null&&m(r,[`mediaResolution`],E);let D=h(t,[`speechConfig`]);if(D!=null&&m(r,[`speechConfig`],$t(D)),h(t,[`audioTimestamp`])!==void 0)throw Error(`audioTimestamp parameter is not supported in Gemini API.`);let O=h(t,[`thinkingConfig`]);O!=null&&m(r,[`thinkingConfig`],O);let k=h(t,[`imageConfig`]);k!=null&&m(r,[`imageConfig`],ir(k));let A=h(t,[`enableEnhancedCivicAnswers`]);if(A!=null&&m(r,[`enableEnhancedCivicAnswers`],A),h(t,[`modelArmorConfig`])!==void 0)throw Error(`modelArmorConfig parameter is not supported in Gemini API.`);let j=h(t,[`serviceTier`]);return n!==void 0&&j!=null&&m(n,[`serviceTier`],j),r}function $n(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`candidates`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Nn(e))),m(t,[`candidates`],e)}let i=h(e,[`modelVersion`]);i!=null&&m(t,[`modelVersion`],i);let a=h(e,[`promptFeedback`]);a!=null&&m(t,[`promptFeedback`],a);let o=h(e,[`responseId`]);o!=null&&m(t,[`responseId`],o);let s=h(e,[`usageMetadata`]);s!=null&&m(t,[`usageMetadata`],s);let c=h(e,[`modelStatus`]);return c!=null&&m(t,[`modelStatus`],c),t}function er(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function tr(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],vn(e,r)),n}function nr(e){let t={},n=h(e,[`authConfig`]);n!=null&&m(t,[`authConfig`],xn(n));let r=h(e,[`enableWidget`]);return r!=null&&m(t,[`enableWidget`],r),t}function rr(e){let t={},n=h(e,[`searchTypes`]);if(n!=null&&m(t,[`searchTypes`],n),h(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(h(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=h(e,[`timeRangeFilter`]);return r!=null&&m(t,[`timeRangeFilter`],r),t}function ir(e){let t={},n=h(e,[`aspectRatio`]);n!=null&&m(t,[`aspectRatio`],n);let r=h(e,[`imageSize`]);if(r!=null&&m(t,[`imageSize`],r),h(e,[`personGeneration`])!==void 0)throw Error(`personGeneration parameter is not supported in Gemini API.`);if(h(e,[`prominentPeople`])!==void 0)throw Error(`prominentPeople parameter is not supported in Gemini API.`);if(h(e,[`outputMimeType`])!==void 0)throw Error(`outputMimeType parameter is not supported in Gemini API.`);if(h(e,[`outputCompressionQuality`])!==void 0)throw Error(`outputCompressionQuality parameter is not supported in Gemini API.`);if(h(e,[`imageOutputOptions`])!==void 0)throw Error(`imageOutputOptions parameter is not supported in Gemini API.`);return t}function ar(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`request`,`model`],F(e,r));let i=h(t,[`contents`]);if(i!=null){let e=L(i);Array.isArray(e)&&(e=e.map(e=>Fn(e))),m(n,[`request`,`contents`],e)}let a=h(t,[`metadata`]);a!=null&&m(n,[`metadata`],a);let o=h(t,[`config`]);return o!=null&&m(n,[`request`,`generationConfig`],Qn(e,o,h(n,[`request`],{}))),n}function or(e){let t={},n=h(e,[`response`]);n!=null&&m(t,[`response`],$n(n));let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`error`]);return i!=null&&m(t,[`error`],i),t}function sr(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);if(t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),h(e,[`filter`])!==void 0)throw Error(`filter parameter is not supported in Gemini API.`);return n}function cr(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i);let a=h(e,[`filter`]);return t!==void 0&&a!=null&&m(t,[`_query`,`filter`],a),n}function lr(e){let t={},n=h(e,[`config`]);return n!=null&&sr(n,t),t}function ur(e){let t={},n=h(e,[`config`]);return n!=null&&cr(n,t),t}function dr(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`operations`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Tn(e))),m(t,[`batchJobs`],e)}return t}function fr(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`batchPredictionJobs`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>En(e))),m(t,[`batchJobs`],e)}return t}function pr(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],Yn(a));let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],Xn(o));let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],An(c));let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);f!=null&&m(t,[`videoMetadata`],f);let p=h(e,[`toolCall`]);p!=null&&m(t,[`toolCall`],p);let g=h(e,[`toolResponse`]);g!=null&&m(t,[`toolResponse`],g);let _=h(e,[`partMetadata`]);return _!=null&&m(t,[`partMetadata`],_),t}function mr(e){let t={},n=h(e,[`category`]);if(n!=null&&m(t,[`category`],n),h(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let r=h(e,[`threshold`]);return r!=null&&m(t,[`threshold`],r),t}function hr(e){let t={},n=h(e,[`retrievalConfig`]);n!=null&&m(t,[`retrievalConfig`],n);let r=h(e,[`functionCallingConfig`]);r!=null&&m(t,[`functionCallingConfig`],Zn(r));let i=h(e,[`includeServerSideToolInvocations`]);return i!=null&&m(t,[`includeServerSideToolInvocations`],i),t}function gr(e){let t={};if(h(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=h(e,[`computerUse`]);n!=null&&m(t,[`computerUse`],n);let r=h(e,[`fileSearch`]);r!=null&&m(t,[`fileSearch`],r);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],rr(i));let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],nr(a));let o=h(e,[`codeExecution`]);if(o!=null&&m(t,[`codeExecution`],o),h(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=h(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`functionDeclarations`],e)}let c=h(e,[`googleSearchRetrieval`]);if(c!=null&&m(t,[`googleSearchRetrieval`],c),h(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=h(e,[`urlContext`]);l!=null&&m(t,[`urlContext`],l);let u=h(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`mcpServers`],e)}return t}var B;(function(e){e.PAGED_ITEM_BATCH_JOBS=`batchJobs`,e.PAGED_ITEM_MODELS=`models`,e.PAGED_ITEM_TUNING_JOBS=`tuningJobs`,e.PAGED_ITEM_FILES=`files`,e.PAGED_ITEM_CACHED_CONTENTS=`cachedContents`,e.PAGED_ITEM_FILE_SEARCH_STORES=`fileSearchStores`,e.PAGED_ITEM_DOCUMENTS=`documents`})(B||={});var V=class{constructor(e,t,n,r){this.pageInternal=[],this.paramsInternal={},this.requestInternal=t,this.init(e,n,r)}init(e,t,n){this.nameInternal=e,this.pageInternal=t[this.nameInternal]||[],this.sdkHttpResponseInternal=t?.sdkHttpResponse,this.idxInternal=0;let r={config:{}};r=!n||Object.keys(n).length===0?{config:{}}:typeof n==`object`?Object.assign({},n):n,r.config&&(r.config.pageToken=t.nextPageToken),this.paramsInternal=r,this.pageInternalSize=r.config?.pageSize??this.pageInternal.length}initNextPage(e){this.init(this.nameInternal,e,this.paramsInternal)}get page(){return this.pageInternal}get name(){return this.nameInternal}get pageSize(){return this.pageInternalSize}get sdkHttpResponse(){return this.sdkHttpResponseInternal}get params(){return this.paramsInternal}get pageLength(){return this.pageInternal.length}getItem(e){return this.pageInternal[e]}[Symbol.asyncIterator](){return{next:async()=>{if(this.idxInternal>=this.pageLength)if(this.hasNextPage())await this.nextPage();else return{value:void 0,done:!0};let e=this.getItem(this.idxInternal);return this.idxInternal+=1,{value:e,done:!1}},return:async()=>({value:void 0,done:!0})}}async nextPage(){if(!this.hasNextPage())throw Error(`No more pages to fetch.`);let e=await this.requestInternal(this.params);return this.initNextPage(e),this.page}hasNextPage(){return this.params.config?.pageToken!==void 0}},_r=class extends f{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new V(B.PAGED_ITEM_BATCH_JOBS,e=>this.listInternal(e),await this.listInternal(e),e),this.create=async e=>(this.apiClient.isVertexAI()&&(e.config=this.formatDestination(e.src,e.config)),this.createInternal(e)),this.createEmbeddings=async e=>{if(console.warn(`batches.createEmbeddings() is experimental and may change without notice.`),this.apiClient.isVertexAI())throw Error(`Vertex AI does not support batches.createEmbeddings.`);return this.createEmbeddingsInternal(e)}}createInlinedGenerateContentRequest(e){let t=Rn(this.apiClient,e),n=t._url,r=p(`{model}:batchGenerateContent`,n),i=t.batch.inputConfig.requests,a=i.requests,o=[];for(let e of a){let t=Object.assign({},e);if(t.systemInstruction){let e=t.systemInstruction;delete t.systemInstruction;let n=t.request;n.systemInstruction=e,t.request=n}o.push(t)}return i.requests=o,delete t.config,delete t._url,delete t._query,{path:r,body:t}}getGcsUri(e){if(typeof e==`string`)return e.startsWith(`gs://`)?e:void 0;if(!Array.isArray(e)&&e.gcsUri&&e.gcsUri.length>0)return e.gcsUri[0]}getBigqueryUri(e){if(typeof e==`string`)return e.startsWith(`bq://`)?e:void 0;if(!Array.isArray(e))return e.bigqueryUri}formatDestination(e,t){let n=t?Object.assign({},t):{},r=Date.now().toString();if(n.displayName||=`genaiBatchJob_${r}`,n.dest===void 0){let t=this.getGcsUri(e),i=this.getBigqueryUri(e);if(t)t.endsWith(`.jsonl`)?n.dest=`${t.slice(0,-6)}/dest`:n.dest=`${t}_dest_${r}`;else if(i)n.dest=`${i}_dest_${r}`;else throw Error(`Unsupported source for Vertex AI: No GCS or BigQuery URI found.`)}return n}async createInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=zn(this.apiClient,e);return n=p(`batchPredictionJobs`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>En(e))}else{let i=Rn(this.apiClient,e);return n=p(`{model}:batchGenerateContent`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>Tn(e))}}async createEmbeddingsInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=Vn(this.apiClient,e);return n=p(`{model}:asyncBatchEmbedContent`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>Tn(e))}}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=tr(this.apiClient,e);return n=p(`batchPredictionJobs/{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>En(e))}else{let i=er(this.apiClient,e);return n=p(`batches/{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>Tn(e))}}async cancel(e){let t=``,n={};if(this.apiClient.isVertexAI()){let r=Mn(this.apiClient,e);t=p(`batchPredictionJobs/{name}:cancel`,r._url),n=r._query,delete r._url,delete r._query,await this.apiClient.request({path:t,queryParams:n,body:JSON.stringify(r),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal})}else{let r=jn(this.apiClient,e);t=p(`batches/{name}:cancel`,r._url),n=r._query,delete r._url,delete r._query,await this.apiClient.request({path:t,queryParams:n,body:JSON.stringify(r),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal})}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=ur(e);return n=p(`batchPredictionJobs`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=fr(e),n=new Ft;return Object.assign(n,t),n})}else{let i=lr(e);return n=p(`batches`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=dr(e),n=new Ft;return Object.assign(n,t),n})}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Un(this.apiClient,e);return n=p(`batchPredictionJobs/{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>Gn(e))}else{let i=Hn(this.apiClient,e);return n=p(`batches/{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>Wn(e))}}};function vr(e){let t={},n=h(e,[`apiKey`]);if(n!=null&&m(t,[`apiKey`],n),h(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(h(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(h(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(h(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(h(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(h(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function yr(e){let t={},n=h(e,[`data`]);if(n!=null&&m(t,[`data`],n),h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function br(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Wr(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function xr(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Gr(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function Sr(e,t){let n={},r=h(e,[`ttl`]);t!==void 0&&r!=null&&m(t,[`ttl`],r);let i=h(e,[`expireTime`]);t!==void 0&&i!=null&&m(t,[`expireTime`],i);let a=h(e,[`displayName`]);t!==void 0&&a!=null&&m(t,[`displayName`],a);let o=h(e,[`contents`]);if(t!==void 0&&o!=null){let e=L(o);Array.isArray(e)&&(e=e.map(e=>br(e))),m(t,[`contents`],e)}let s=h(e,[`systemInstruction`]);t!==void 0&&s!=null&&m(t,[`systemInstruction`],br(I(s)));let c=h(e,[`tools`]);if(t!==void 0&&c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Jr(e))),m(t,[`tools`],e)}let l=h(e,[`toolConfig`]);if(t!==void 0&&l!=null&&m(t,[`toolConfig`],Kr(l)),h(e,[`kmsKeyName`])!==void 0)throw Error(`kmsKeyName parameter is not supported in Gemini API.`);return n}function Cr(e,t){let n={},r=h(e,[`ttl`]);t!==void 0&&r!=null&&m(t,[`ttl`],r);let i=h(e,[`expireTime`]);t!==void 0&&i!=null&&m(t,[`expireTime`],i);let a=h(e,[`displayName`]);t!==void 0&&a!=null&&m(t,[`displayName`],a);let o=h(e,[`contents`]);if(t!==void 0&&o!=null){let e=L(o);Array.isArray(e)&&(e=e.map(e=>xr(e))),m(t,[`contents`],e)}let s=h(e,[`systemInstruction`]);t!==void 0&&s!=null&&m(t,[`systemInstruction`],xr(I(s)));let c=h(e,[`tools`]);if(t!==void 0&&c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Yr(e))),m(t,[`tools`],e)}let l=h(e,[`toolConfig`]);t!==void 0&&l!=null&&m(t,[`toolConfig`],qr(l));let u=h(e,[`kmsKeyName`]);return t!==void 0&&u!=null&&m(t,[`encryption_spec`,`kmsKeyName`],u),n}function wr(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`model`],zt(e,r));let i=h(t,[`config`]);return i!=null&&Sr(i,n),n}function Tr(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`model`],zt(e,r));let i=h(t,[`config`]);return i!=null&&Cr(i,n),n}function Er(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],R(e,r)),n}function Dr(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],R(e,r)),n}function Or(e){let t={},n=h(e,[`sdkHttpResponse`]);return n!=null&&m(t,[`sdkHttpResponse`],n),t}function kr(e){let t={},n=h(e,[`sdkHttpResponse`]);return n!=null&&m(t,[`sdkHttpResponse`],n),t}function Ar(e){let t={};if(h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=h(e,[`fileUri`]);n!=null&&m(t,[`fileUri`],n);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function jr(e){let t={},n=h(e,[`id`]);n!=null&&m(t,[`id`],n);let r=h(e,[`args`]);r!=null&&m(t,[`args`],r);let i=h(e,[`name`]);if(i!=null&&m(t,[`name`],i),h(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(h(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function Mr(e){let t={},n=h(e,[`allowedFunctionNames`]);n!=null&&m(t,[`allowedFunctionNames`],n);let r=h(e,[`mode`]);if(r!=null&&m(t,[`mode`],r),h(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return t}function Nr(e){let t={},n=h(e,[`description`]);n!=null&&m(t,[`description`],n);let r=h(e,[`name`]);r!=null&&m(t,[`name`],r);let i=h(e,[`parameters`]);i!=null&&m(t,[`parameters`],i);let a=h(e,[`parametersJsonSchema`]);a!=null&&m(t,[`parametersJsonSchema`],a);let o=h(e,[`response`]);o!=null&&m(t,[`response`],o);let s=h(e,[`responseJsonSchema`]);if(s!=null&&m(t,[`responseJsonSchema`],s),h(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return t}function Pr(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],R(e,r)),n}function Fr(e,t){let n={},r=h(t,[`name`]);return r!=null&&m(n,[`_url`,`name`],R(e,r)),n}function Ir(e){let t={},n=h(e,[`authConfig`]);n!=null&&m(t,[`authConfig`],vr(n));let r=h(e,[`enableWidget`]);return r!=null&&m(t,[`enableWidget`],r),t}function Lr(e){let t={},n=h(e,[`searchTypes`]);if(n!=null&&m(t,[`searchTypes`],n),h(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(h(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=h(e,[`timeRangeFilter`]);return r!=null&&m(t,[`timeRangeFilter`],r),t}function Rr(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);return t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),n}function zr(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);return t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),n}function Br(e){let t={},n=h(e,[`config`]);return n!=null&&Rr(n,t),t}function Vr(e){let t={},n=h(e,[`config`]);return n!=null&&zr(n,t),t}function Hr(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`cachedContents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`cachedContents`],e)}return t}function Ur(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`cachedContents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`cachedContents`],e)}return t}function Wr(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],Ar(a));let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],jr(o));let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],yr(c));let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);f!=null&&m(t,[`videoMetadata`],f);let p=h(e,[`toolCall`]);p!=null&&m(t,[`toolCall`],p);let g=h(e,[`toolResponse`]);g!=null&&m(t,[`toolResponse`],g);let _=h(e,[`partMetadata`]);return _!=null&&m(t,[`partMetadata`],_),t}function Gr(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],a);let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],o);let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],c);let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);if(f!=null&&m(t,[`videoMetadata`],f),h(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(h(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(h(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return t}function Kr(e){let t={},n=h(e,[`retrievalConfig`]);n!=null&&m(t,[`retrievalConfig`],n);let r=h(e,[`functionCallingConfig`]);r!=null&&m(t,[`functionCallingConfig`],Mr(r));let i=h(e,[`includeServerSideToolInvocations`]);return i!=null&&m(t,[`includeServerSideToolInvocations`],i),t}function qr(e){let t={},n=h(e,[`retrievalConfig`]);n!=null&&m(t,[`retrievalConfig`],n);let r=h(e,[`functionCallingConfig`]);if(r!=null&&m(t,[`functionCallingConfig`],r),h(e,[`includeServerSideToolInvocations`])!==void 0)throw Error(`includeServerSideToolInvocations parameter is not supported in Vertex AI.`);return t}function Jr(e){let t={};if(h(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=h(e,[`computerUse`]);n!=null&&m(t,[`computerUse`],n);let r=h(e,[`fileSearch`]);r!=null&&m(t,[`fileSearch`],r);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],Lr(i));let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],Ir(a));let o=h(e,[`codeExecution`]);if(o!=null&&m(t,[`codeExecution`],o),h(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=h(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`functionDeclarations`],e)}let c=h(e,[`googleSearchRetrieval`]);if(c!=null&&m(t,[`googleSearchRetrieval`],c),h(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=h(e,[`urlContext`]);l!=null&&m(t,[`urlContext`],l);let u=h(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`mcpServers`],e)}return t}function Yr(e){let t={},n=h(e,[`retrieval`]);n!=null&&m(t,[`retrieval`],n);let r=h(e,[`computerUse`]);if(r!=null&&m(t,[`computerUse`],r),h(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],i);let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],a);let o=h(e,[`codeExecution`]);o!=null&&m(t,[`codeExecution`],o);let s=h(e,[`enterpriseWebSearch`]);s!=null&&m(t,[`enterpriseWebSearch`],s);let c=h(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Nr(e))),m(t,[`functionDeclarations`],e)}let l=h(e,[`googleSearchRetrieval`]);l!=null&&m(t,[`googleSearchRetrieval`],l);let u=h(e,[`parallelAiSearch`]);u!=null&&m(t,[`parallelAiSearch`],u);let d=h(e,[`urlContext`]);if(d!=null&&m(t,[`urlContext`],d),h(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return t}function Xr(e,t){let n={},r=h(e,[`ttl`]);t!==void 0&&r!=null&&m(t,[`ttl`],r);let i=h(e,[`expireTime`]);return t!==void 0&&i!=null&&m(t,[`expireTime`],i),n}function Zr(e,t){let n={},r=h(e,[`ttl`]);t!==void 0&&r!=null&&m(t,[`ttl`],r);let i=h(e,[`expireTime`]);return t!==void 0&&i!=null&&m(t,[`expireTime`],i),n}function Qr(e,t){let n={},r=h(t,[`name`]);r!=null&&m(n,[`_url`,`name`],R(e,r));let i=h(t,[`config`]);return i!=null&&Xr(i,n),n}function $r(e,t){let n={},r=h(t,[`name`]);r!=null&&m(n,[`_url`,`name`],R(e,r));let i=h(t,[`config`]);return i!=null&&Zr(i,n),n}var ei=class extends f{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new V(B.PAGED_ITEM_CACHED_CONTENTS,e=>this.listInternal(e),await this.listInternal(e),e)}async create(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Tr(this.apiClient,e);return n=p(`cachedContents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}else{let i=wr(this.apiClient,e);return n=p(`cachedContents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Fr(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}else{let i=Pr(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Dr(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=kr(e),n=new Tt;return Object.assign(n,t),n})}else{let i=Er(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Or(e),n=new Tt;return Object.assign(n,t),n})}}async update(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=$r(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`PATCH`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}else{let i=Qr(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`PATCH`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Vr(e);return n=p(`cachedContents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Ur(e),n=new Et;return Object.assign(n,t),n})}else{let i=Br(e);return n=p(`cachedContents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Hr(e),n=new Et;return Object.assign(n,t),n})}}};function H(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==`function`)for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]]);return n}function ti(e){var t=typeof Symbol==`function`&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length==`number`)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw TypeError(t?`Object is not iterable.`:`Symbol.iterator is not defined.`)}function U(e){return this instanceof U?(this.v=e,this):new U(e)}function W(e,t,n){if(!Symbol.asyncIterator)throw TypeError(`Symbol.asyncIterator is not defined.`);var r=n.apply(e,t||[]),i,a=[];return i=Object.create((typeof AsyncIterator==`function`?AsyncIterator:Object).prototype),s(`next`),s(`throw`),s(`return`,o),i[Symbol.asyncIterator]=function(){return this},i;function o(e){return function(t){return Promise.resolve(t).then(e,d)}}function s(e,t){r[e]&&(i[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||c(e,t)})},t&&(i[e]=t(i[e])))}function c(e,t){try{l(r[e](t))}catch(e){f(a[0][3],e)}}function l(e){e.value instanceof U?Promise.resolve(e.value.v).then(u,d):f(a[0][2],e)}function u(e){c(`next`,e)}function d(e){c(`throw`,e)}function f(e,t){e(t),a.shift(),a.length&&c(a[0][0],a[0][1])}}function G(e){if(!Symbol.asyncIterator)throw TypeError(`Symbol.asyncIterator is not defined.`);var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof ti==`function`?ti(e):e[Symbol.iterator](),n={},r(`next`),r(`throw`),r(`return`),n[Symbol.asyncIterator]=function(){return this},n);function r(t){n[t]=e[t]&&function(n){return new Promise(function(r,a){n=e[t](n),i(r,a,n.done,n.value)})}}function i(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}}function ni(e){if(e.candidates==null||e.candidates.length===0)return!1;let t=e.candidates[0]?.content;return t===void 0?!1:ri(t)}function ri(e){if(e.parts===void 0||e.parts.length===0)return!1;for(let t of e.parts)if(t===void 0||Object.keys(t).length===0)return!1;return!0}function ii(e){if(e.length!==0){for(let t of e)if(t.role!==`user`&&t.role!==`model`)throw Error(`Role must be user or model, but got ${t.role}.`)}}function ai(e){if(e===void 0||e.length===0)return[];let t=[],n=e.length,r=0;for(;r<n;)if(e[r].role===`user`)t.push(e[r]),r++;else{let i=[],a=!0;for(;r<n&&e[r].role===`model`;)i.push(e[r]),a&&!ri(e[r])&&(a=!1),r++;a?t.push(...i):t.pop()}return t}var oi=class{constructor(e,t){this.modelsModule=e,this.apiClient=t}create(e){return new si(this.apiClient,this.modelsModule,e.model,e.config,structuredClone(e.history))}},si=class{constructor(e,t,n,r={},i=[]){this.apiClient=e,this.modelsModule=t,this.model=n,this.config=r,this.history=i,this.sendPromise=Promise.resolve(),ii(i)}async sendMessage(e){await this.sendPromise;let t=I(e.message),n=this.modelsModule.generateContent({model:this.model,contents:this.getHistory(!0).concat(t),config:e.config??this.config});return this.sendPromise=(async()=>{let e=await n,r=e.candidates?.[0]?.content,i=e.automaticFunctionCallingHistory,a=this.getHistory(!0).length,o=[];i!=null&&(o=i.slice(a)??[]);let s=r?[r]:[];this.recordHistory(t,s,o)})(),await this.sendPromise.catch(()=>{this.sendPromise=Promise.resolve()}),n}async sendMessageStream(e){await this.sendPromise;let t=I(e.message),n=this.modelsModule.generateContentStream({model:this.model,contents:this.getHistory(!0).concat(t),config:e.config??this.config});this.sendPromise=n.then(()=>void 0).catch(()=>void 0);let r=await n;return this.processStreamResponse(r,t)}getHistory(e=!1){let t=e?ai(this.history):this.history;return structuredClone(t)}processStreamResponse(e,t){return W(this,arguments,function*(){var n,r,i,a;let o=[];try{for(var s=!0,c=G(e),l;l=yield U(c.next()),n=l.done,!n;s=!0){a=l.value,s=!1;let e=a;if(ni(e)){let t=e.candidates?.[0]?.content;t!==void 0&&o.push(t)}yield yield U(e)}}catch(e){r={error:e}}finally{try{!s&&!n&&(i=c.return)&&(yield U(i.call(c)))}finally{if(r)throw r.error}}this.recordHistory(t,o)})}recordHistory(e,t,n){let r=[];t.length>0&&t.every(e=>e.role!==void 0)?r=t:r.push({role:`model`,parts:[]}),n&&n.length>0?this.history.push(...ai(n)):this.history.push(e),this.history.push(...r)}},ci=class e extends Error{constructor(t){super(t.message),this.name=`ApiError`,this.status=t.status,Object.setPrototypeOf(this,e.prototype)}};function li(e){let t={},n=h(e,[`file`]);return n!=null&&m(t,[`file`],n),t}function ui(e){let t={},n=h(e,[`sdkHttpResponse`]);return n!=null&&m(t,[`sdkHttpResponse`],n),t}function di(e){let t={},n=h(e,[`name`]);return n!=null&&m(t,[`_url`,`file`],ln(n)),t}function fi(e){let t={},n=h(e,[`sdkHttpResponse`]);return n!=null&&m(t,[`sdkHttpResponse`],n),t}function pi(e){let t={},n=h(e,[`name`]);return n!=null&&m(t,[`_url`,`file`],ln(n)),t}function mi(e){let t={},n=h(e,[`uris`]);return n!=null&&m(t,[`uris`],n),t}function hi(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);return t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),n}function gi(e){let t={},n=h(e,[`config`]);return n!=null&&hi(n,t),t}function _i(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`files`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`files`],e)}return t}function vi(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`files`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`files`],e)}return t}var yi=class extends f{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new V(B.PAGED_ITEM_FILES,e=>this.listInternal(e),await this.listInternal(e),e)}async upload(e){if(this.apiClient.isVertexAI())throw Error(`Vertex AI does not support uploading files. You can share files through a GCS bucket.`);return this.apiClient.uploadFile(e.file,e.config).then(e=>e)}async download(e){await this.apiClient.downloadFile(e)}async registerFiles(e){throw Error(`registerFiles is only supported in Node.js environments.`)}async _registerFiles(e){return this.registerFilesInternal(e)}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=gi(e);return n=p(`files`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=_i(e),n=new jt;return Object.assign(n,t),n})}}async createInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=li(e);return n=p(`upload/v1beta/files`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=ui(e),n=new Mt;return Object.assign(n,t),n})}}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=pi(e);return n=p(`files/{file}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=di(e);return n=p(`files/{file}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=fi(e),n=new Nt;return Object.assign(n,t),n})}}async registerFilesInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=mi(e);return n=p(`files:register`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=vi(e),n=new Pt;return Object.assign(n,t),n})}}};function bi(e){let t={};if(h(e,[`languageCodes`])!==void 0)throw Error(`languageCodes parameter is not supported in Gemini API.`);return t}function xi(e){let t={},n=h(e,[`apiKey`]);if(n!=null&&m(t,[`apiKey`],n),h(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(h(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(h(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(h(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(h(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(h(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function Si(e){let t={},n=h(e,[`data`]);if(n!=null&&m(t,[`data`],n),h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function Ci(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Bi(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function wi(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Vi(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function Ti(e){let t={};if(h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=h(e,[`fileUri`]);n!=null&&m(t,[`fileUri`],n);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function Ei(e){let t={},n=h(e,[`id`]);n!=null&&m(t,[`id`],n);let r=h(e,[`args`]);r!=null&&m(t,[`args`],r);let i=h(e,[`name`]);if(i!=null&&m(t,[`name`],i),h(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(h(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function Di(e){let t={},n=h(e,[`description`]);n!=null&&m(t,[`description`],n);let r=h(e,[`name`]);r!=null&&m(t,[`name`],r);let i=h(e,[`parameters`]);i!=null&&m(t,[`parameters`],i);let a=h(e,[`parametersJsonSchema`]);a!=null&&m(t,[`parametersJsonSchema`],a);let o=h(e,[`response`]);o!=null&&m(t,[`response`],o);let s=h(e,[`responseJsonSchema`]);if(s!=null&&m(t,[`responseJsonSchema`],s),h(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return t}function Oi(e){let t={},n=h(e,[`modelSelectionConfig`]);n!=null&&m(t,[`modelConfig`],n);let r=h(e,[`responseJsonSchema`]);r!=null&&m(t,[`responseJsonSchema`],r);let i=h(e,[`audioTimestamp`]);i!=null&&m(t,[`audioTimestamp`],i);let a=h(e,[`candidateCount`]);a!=null&&m(t,[`candidateCount`],a);let o=h(e,[`enableAffectiveDialog`]);o!=null&&m(t,[`enableAffectiveDialog`],o);let s=h(e,[`frequencyPenalty`]);s!=null&&m(t,[`frequencyPenalty`],s);let c=h(e,[`logprobs`]);c!=null&&m(t,[`logprobs`],c);let l=h(e,[`maxOutputTokens`]);l!=null&&m(t,[`maxOutputTokens`],l);let u=h(e,[`mediaResolution`]);u!=null&&m(t,[`mediaResolution`],u);let d=h(e,[`presencePenalty`]);d!=null&&m(t,[`presencePenalty`],d);let f=h(e,[`responseLogprobs`]);f!=null&&m(t,[`responseLogprobs`],f);let p=h(e,[`responseMimeType`]);p!=null&&m(t,[`responseMimeType`],p);let g=h(e,[`responseModalities`]);g!=null&&m(t,[`responseModalities`],g);let _=h(e,[`responseSchema`]);_!=null&&m(t,[`responseSchema`],_);let v=h(e,[`routingConfig`]);v!=null&&m(t,[`routingConfig`],v);let y=h(e,[`seed`]);y!=null&&m(t,[`seed`],y);let b=h(e,[`speechConfig`]);b!=null&&m(t,[`speechConfig`],b);let x=h(e,[`stopSequences`]);x!=null&&m(t,[`stopSequences`],x);let S=h(e,[`temperature`]);S!=null&&m(t,[`temperature`],S);let C=h(e,[`thinkingConfig`]);C!=null&&m(t,[`thinkingConfig`],C);let w=h(e,[`topK`]);w!=null&&m(t,[`topK`],w);let T=h(e,[`topP`]);if(T!=null&&m(t,[`topP`],T),h(e,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);return t}function ki(e){let t={},n=h(e,[`authConfig`]);n!=null&&m(t,[`authConfig`],xi(n));let r=h(e,[`enableWidget`]);return r!=null&&m(t,[`enableWidget`],r),t}function Ai(e){let t={},n=h(e,[`searchTypes`]);if(n!=null&&m(t,[`searchTypes`],n),h(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(h(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=h(e,[`timeRangeFilter`]);return r!=null&&m(t,[`timeRangeFilter`],r),t}function ji(e,t){let n={},r=h(e,[`generationConfig`]);t!==void 0&&r!=null&&m(t,[`setup`,`generationConfig`],r);let i=h(e,[`responseModalities`]);t!==void 0&&i!=null&&m(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=h(e,[`temperature`]);t!==void 0&&a!=null&&m(t,[`setup`,`generationConfig`,`temperature`],a);let o=h(e,[`topP`]);t!==void 0&&o!=null&&m(t,[`setup`,`generationConfig`,`topP`],o);let s=h(e,[`topK`]);t!==void 0&&s!=null&&m(t,[`setup`,`generationConfig`,`topK`],s);let c=h(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&m(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=h(e,[`mediaResolution`]);t!==void 0&&l!=null&&m(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=h(e,[`seed`]);t!==void 0&&u!=null&&m(t,[`setup`,`generationConfig`,`seed`],u);let d=h(e,[`speechConfig`]);t!==void 0&&d!=null&&m(t,[`setup`,`generationConfig`,`speechConfig`],en(d));let f=h(e,[`thinkingConfig`]);t!==void 0&&f!=null&&m(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=h(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&m(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let g=h(e,[`systemInstruction`]);t!==void 0&&g!=null&&m(t,[`setup`,`systemInstruction`],Ci(I(g)));let _=h(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>Wi(tn(e)))),m(t,[`setup`,`tools`],e)}let v=h(e,[`sessionResumption`]);t!==void 0&&v!=null&&m(t,[`setup`,`sessionResumption`],Ui(v));let y=h(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&m(t,[`setup`,`inputAudioTranscription`],bi(y));let b=h(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&m(t,[`setup`,`outputAudioTranscription`],bi(b));let x=h(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&m(t,[`setup`,`realtimeInputConfig`],x);let S=h(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&m(t,[`setup`,`contextWindowCompression`],S);let C=h(e,[`proactivity`]);if(t!==void 0&&C!=null&&m(t,[`setup`,`proactivity`],C),h(e,[`explicitVadSignal`])!==void 0)throw Error(`explicitVadSignal parameter is not supported in Gemini API.`);let w=h(e,[`avatarConfig`]);t!==void 0&&w!=null&&m(t,[`setup`,`avatarConfig`],w);let T=h(e,[`safetySettings`]);if(t!==void 0&&T!=null){let e=T;Array.isArray(e)&&(e=e.map(e=>Hi(e))),m(t,[`setup`,`safetySettings`],e)}return n}function Mi(e,t){let n={},r=h(e,[`generationConfig`]);t!==void 0&&r!=null&&m(t,[`setup`,`generationConfig`],Oi(r));let i=h(e,[`responseModalities`]);t!==void 0&&i!=null&&m(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=h(e,[`temperature`]);t!==void 0&&a!=null&&m(t,[`setup`,`generationConfig`,`temperature`],a);let o=h(e,[`topP`]);t!==void 0&&o!=null&&m(t,[`setup`,`generationConfig`,`topP`],o);let s=h(e,[`topK`]);t!==void 0&&s!=null&&m(t,[`setup`,`generationConfig`,`topK`],s);let c=h(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&m(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=h(e,[`mediaResolution`]);t!==void 0&&l!=null&&m(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=h(e,[`seed`]);t!==void 0&&u!=null&&m(t,[`setup`,`generationConfig`,`seed`],u);let d=h(e,[`speechConfig`]);t!==void 0&&d!=null&&m(t,[`setup`,`generationConfig`,`speechConfig`],en(d));let f=h(e,[`thinkingConfig`]);t!==void 0&&f!=null&&m(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=h(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&m(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let g=h(e,[`systemInstruction`]);t!==void 0&&g!=null&&m(t,[`setup`,`systemInstruction`],wi(I(g)));let _=h(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>Gi(tn(e)))),m(t,[`setup`,`tools`],e)}let v=h(e,[`sessionResumption`]);t!==void 0&&v!=null&&m(t,[`setup`,`sessionResumption`],v);let y=h(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&m(t,[`setup`,`inputAudioTranscription`],y);let b=h(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&m(t,[`setup`,`outputAudioTranscription`],b);let x=h(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&m(t,[`setup`,`realtimeInputConfig`],x);let S=h(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&m(t,[`setup`,`contextWindowCompression`],S);let C=h(e,[`proactivity`]);t!==void 0&&C!=null&&m(t,[`setup`,`proactivity`],C);let w=h(e,[`explicitVadSignal`]);t!==void 0&&w!=null&&m(t,[`setup`,`explicitVadSignal`],w);let T=h(e,[`avatarConfig`]);t!==void 0&&T!=null&&m(t,[`setup`,`avatarConfig`],T);let E=h(e,[`safetySettings`]);if(t!==void 0&&E!=null){let e=E;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`setup`,`safetySettings`],e)}return n}function Ni(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`setup`,`model`],F(e,r));let i=h(t,[`config`]);return i!=null&&m(n,[`config`],ji(i,n)),n}function Pi(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`setup`,`model`],F(e,r));let i=h(t,[`config`]);return i!=null&&m(n,[`config`],Mi(i,n)),n}function Fi(e){let t={},n=h(e,[`musicGenerationConfig`]);return n!=null&&m(t,[`musicGenerationConfig`],n),t}function Ii(e){let t={},n=h(e,[`weightedPrompts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`weightedPrompts`],e)}return t}function Li(e){let t={},n=h(e,[`media`]);if(n!=null){let e=Bt(n);Array.isArray(e)&&(e=e.map(e=>Si(e))),m(t,[`mediaChunks`],e)}let r=h(e,[`audio`]);r!=null&&m(t,[`audio`],Si(Ut(r)));let i=h(e,[`audioStreamEnd`]);i!=null&&m(t,[`audioStreamEnd`],i);let a=h(e,[`video`]);a!=null&&m(t,[`video`],Si(Ht(a)));let o=h(e,[`text`]);o!=null&&m(t,[`text`],o);let s=h(e,[`activityStart`]);s!=null&&m(t,[`activityStart`],s);let c=h(e,[`activityEnd`]);return c!=null&&m(t,[`activityEnd`],c),t}function Ri(e){let t={},n=h(e,[`media`]);if(n!=null){let e=Bt(n);Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`mediaChunks`],e)}let r=h(e,[`audio`]);r!=null&&m(t,[`audio`],Ut(r));let i=h(e,[`audioStreamEnd`]);i!=null&&m(t,[`audioStreamEnd`],i);let a=h(e,[`video`]);a!=null&&m(t,[`video`],Ht(a));let o=h(e,[`text`]);o!=null&&m(t,[`text`],o);let s=h(e,[`activityStart`]);s!=null&&m(t,[`activityStart`],s);let c=h(e,[`activityEnd`]);return c!=null&&m(t,[`activityEnd`],c),t}function zi(e){let t={},n=h(e,[`setupComplete`]);n!=null&&m(t,[`setupComplete`],n);let r=h(e,[`serverContent`]);r!=null&&m(t,[`serverContent`],r);let i=h(e,[`toolCall`]);i!=null&&m(t,[`toolCall`],i);let a=h(e,[`toolCallCancellation`]);a!=null&&m(t,[`toolCallCancellation`],a);let o=h(e,[`usageMetadata`]);o!=null&&m(t,[`usageMetadata`],Ki(o));let s=h(e,[`goAway`]);s!=null&&m(t,[`goAway`],s);let c=h(e,[`sessionResumptionUpdate`]);c!=null&&m(t,[`sessionResumptionUpdate`],c);let l=h(e,[`voiceActivityDetectionSignal`]);l!=null&&m(t,[`voiceActivityDetectionSignal`],l);let u=h(e,[`voiceActivity`]);return u!=null&&m(t,[`voiceActivity`],qi(u)),t}function Bi(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],Ti(a));let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],Ei(o));let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],Si(c));let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);f!=null&&m(t,[`videoMetadata`],f);let p=h(e,[`toolCall`]);p!=null&&m(t,[`toolCall`],p);let g=h(e,[`toolResponse`]);g!=null&&m(t,[`toolResponse`],g);let _=h(e,[`partMetadata`]);return _!=null&&m(t,[`partMetadata`],_),t}function Vi(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],a);let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],o);let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],c);let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);if(f!=null&&m(t,[`videoMetadata`],f),h(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(h(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(h(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return t}function Hi(e){let t={},n=h(e,[`category`]);if(n!=null&&m(t,[`category`],n),h(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let r=h(e,[`threshold`]);return r!=null&&m(t,[`threshold`],r),t}function Ui(e){let t={},n=h(e,[`handle`]);if(n!=null&&m(t,[`handle`],n),h(e,[`transparent`])!==void 0)throw Error(`transparent parameter is not supported in Gemini API.`);return t}function Wi(e){let t={};if(h(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=h(e,[`computerUse`]);n!=null&&m(t,[`computerUse`],n);let r=h(e,[`fileSearch`]);r!=null&&m(t,[`fileSearch`],r);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],Ai(i));let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],ki(a));let o=h(e,[`codeExecution`]);if(o!=null&&m(t,[`codeExecution`],o),h(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=h(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`functionDeclarations`],e)}let c=h(e,[`googleSearchRetrieval`]);if(c!=null&&m(t,[`googleSearchRetrieval`],c),h(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=h(e,[`urlContext`]);l!=null&&m(t,[`urlContext`],l);let u=h(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`mcpServers`],e)}return t}function Gi(e){let t={},n=h(e,[`retrieval`]);n!=null&&m(t,[`retrieval`],n);let r=h(e,[`computerUse`]);if(r!=null&&m(t,[`computerUse`],r),h(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],i);let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],a);let o=h(e,[`codeExecution`]);o!=null&&m(t,[`codeExecution`],o);let s=h(e,[`enterpriseWebSearch`]);s!=null&&m(t,[`enterpriseWebSearch`],s);let c=h(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Di(e))),m(t,[`functionDeclarations`],e)}let l=h(e,[`googleSearchRetrieval`]);l!=null&&m(t,[`googleSearchRetrieval`],l);let u=h(e,[`parallelAiSearch`]);u!=null&&m(t,[`parallelAiSearch`],u);let d=h(e,[`urlContext`]);if(d!=null&&m(t,[`urlContext`],d),h(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return t}function Ki(e){let t={},n=h(e,[`promptTokenCount`]);n!=null&&m(t,[`promptTokenCount`],n);let r=h(e,[`cachedContentTokenCount`]);r!=null&&m(t,[`cachedContentTokenCount`],r);let i=h(e,[`candidatesTokenCount`]);i!=null&&m(t,[`responseTokenCount`],i);let a=h(e,[`toolUsePromptTokenCount`]);a!=null&&m(t,[`toolUsePromptTokenCount`],a);let o=h(e,[`thoughtsTokenCount`]);o!=null&&m(t,[`thoughtsTokenCount`],o);let s=h(e,[`totalTokenCount`]);s!=null&&m(t,[`totalTokenCount`],s);let c=h(e,[`promptTokensDetails`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`promptTokensDetails`],e)}let l=h(e,[`cacheTokensDetails`]);if(l!=null){let e=l;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`cacheTokensDetails`],e)}let u=h(e,[`candidatesTokensDetails`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`responseTokensDetails`],e)}let d=h(e,[`toolUsePromptTokensDetails`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`toolUsePromptTokensDetails`],e)}let f=h(e,[`trafficType`]);return f!=null&&m(t,[`trafficType`],f),t}function qi(e){let t={},n=h(e,[`type`]);return n!=null&&m(t,[`voiceActivityType`],n),t}function Ji(e,t){let n={},r=h(e,[`apiKey`]);if(r!=null&&m(n,[`apiKey`],r),h(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(h(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(h(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(h(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(h(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(h(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return n}function Yi(e,t){let n={},r=h(e,[`data`]);if(r!=null&&m(n,[`data`],r),h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let i=h(e,[`mimeType`]);return i!=null&&m(n,[`mimeType`],i),n}function Xi(e,t){let n={},r=h(e,[`content`]);r!=null&&m(n,[`content`],r);let i=h(e,[`citationMetadata`]);i!=null&&m(n,[`citationMetadata`],Zi(i));let a=h(e,[`tokenCount`]);a!=null&&m(n,[`tokenCount`],a);let o=h(e,[`finishReason`]);o!=null&&m(n,[`finishReason`],o);let s=h(e,[`groundingMetadata`]);s!=null&&m(n,[`groundingMetadata`],s);let c=h(e,[`avgLogprobs`]);c!=null&&m(n,[`avgLogprobs`],c);let l=h(e,[`index`]);l!=null&&m(n,[`index`],l);let u=h(e,[`logprobsResult`]);u!=null&&m(n,[`logprobsResult`],u);let d=h(e,[`safetyRatings`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`safetyRatings`],e)}let f=h(e,[`urlContextMetadata`]);return f!=null&&m(n,[`urlContextMetadata`],f),n}function Zi(e,t){let n={},r=h(e,[`citationSources`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`citations`],e)}return n}function Qi(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let e=L(a);Array.isArray(e)&&(e=e.map(e=>ra(e))),m(r,[`contents`],e)}return r}function $i(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`tokensInfo`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`tokensInfo`],e)}return n}function ea(e,t){let n={},r=h(e,[`values`]);r!=null&&m(n,[`values`],r);let i=h(e,[`statistics`]);return i!=null&&m(n,[`statistics`],ta(i)),n}function ta(e,t){let n={},r=h(e,[`truncated`]);r!=null&&m(n,[`truncated`],r);let i=h(e,[`token_count`]);return i!=null&&m(n,[`tokenCount`],i),n}function na(e,t){let n={},r=h(e,[`parts`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>So(e))),m(n,[`parts`],e)}let i=h(e,[`role`]);return i!=null&&m(n,[`role`],i),n}function ra(e,t){let n={},r=h(e,[`parts`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Co(e))),m(n,[`parts`],e)}let i=h(e,[`role`]);return i!=null&&m(n,[`role`],i),n}function ia(e,t){let n={},r=h(e,[`controlType`]);r!=null&&m(n,[`controlType`],r);let i=h(e,[`enableControlImageComputation`]);return i!=null&&m(n,[`computeControl`],i),n}function aa(e,t){let n={};if(h(e,[`systemInstruction`])!==void 0)throw Error(`systemInstruction parameter is not supported in Gemini API.`);if(h(e,[`tools`])!==void 0)throw Error(`tools parameter is not supported in Gemini API.`);if(h(e,[`generationConfig`])!==void 0)throw Error(`generationConfig parameter is not supported in Gemini API.`);return n}function oa(e,t,n){let r={},i=h(e,[`systemInstruction`]);t!==void 0&&i!=null&&m(t,[`systemInstruction`],ra(I(i)));let a=h(e,[`tools`]);if(t!==void 0&&a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>Vo(e))),m(t,[`tools`],e)}let o=h(e,[`generationConfig`]);return t!==void 0&&o!=null&&m(t,[`generationConfig`],no(o)),r}function sa(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let e=L(a);Array.isArray(e)&&(e=e.map(e=>na(e))),m(r,[`contents`],e)}let o=h(t,[`config`]);return o!=null&&aa(o),r}function ca(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let e=L(a);Array.isArray(e)&&(e=e.map(e=>ra(e))),m(r,[`contents`],e)}let o=h(t,[`config`]);return o!=null&&oa(o,r),r}function la(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`totalTokens`]);i!=null&&m(n,[`totalTokens`],i);let a=h(e,[`cachedContentTokenCount`]);return a!=null&&m(n,[`cachedContentTokenCount`],a),n}function ua(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`totalTokens`]);return i!=null&&m(n,[`totalTokens`],i),n}function da(e,t,n){let r={},i=h(t,[`model`]);return i!=null&&m(r,[`_url`,`name`],F(e,i)),r}function fa(e,t,n){let r={},i=h(t,[`model`]);return i!=null&&m(r,[`_url`,`name`],F(e,i)),r}function pa(e,t){let n={},r=h(e,[`sdkHttpResponse`]);return r!=null&&m(n,[`sdkHttpResponse`],r),n}function ma(e,t){let n={},r=h(e,[`sdkHttpResponse`]);return r!=null&&m(n,[`sdkHttpResponse`],r),n}function ha(e,t,n){let r={},i=h(e,[`outputGcsUri`]);t!==void 0&&i!=null&&m(t,[`parameters`,`storageUri`],i);let a=h(e,[`negativePrompt`]);t!==void 0&&a!=null&&m(t,[`parameters`,`negativePrompt`],a);let o=h(e,[`numberOfImages`]);t!==void 0&&o!=null&&m(t,[`parameters`,`sampleCount`],o);let s=h(e,[`aspectRatio`]);t!==void 0&&s!=null&&m(t,[`parameters`,`aspectRatio`],s);let c=h(e,[`guidanceScale`]);t!==void 0&&c!=null&&m(t,[`parameters`,`guidanceScale`],c);let l=h(e,[`seed`]);t!==void 0&&l!=null&&m(t,[`parameters`,`seed`],l);let u=h(e,[`safetyFilterLevel`]);t!==void 0&&u!=null&&m(t,[`parameters`,`safetySetting`],u);let d=h(e,[`personGeneration`]);t!==void 0&&d!=null&&m(t,[`parameters`,`personGeneration`],d);let f=h(e,[`includeSafetyAttributes`]);t!==void 0&&f!=null&&m(t,[`parameters`,`includeSafetyAttributes`],f);let p=h(e,[`includeRaiReason`]);t!==void 0&&p!=null&&m(t,[`parameters`,`includeRaiReason`],p);let g=h(e,[`language`]);t!==void 0&&g!=null&&m(t,[`parameters`,`language`],g);let _=h(e,[`outputMimeType`]);t!==void 0&&_!=null&&m(t,[`parameters`,`outputOptions`,`mimeType`],_);let v=h(e,[`outputCompressionQuality`]);t!==void 0&&v!=null&&m(t,[`parameters`,`outputOptions`,`compressionQuality`],v);let y=h(e,[`addWatermark`]);t!==void 0&&y!=null&&m(t,[`parameters`,`addWatermark`],y);let b=h(e,[`labels`]);t!==void 0&&b!=null&&m(t,[`labels`],b);let x=h(e,[`editMode`]);t!==void 0&&x!=null&&m(t,[`parameters`,`editMode`],x);let S=h(e,[`baseSteps`]);return t!==void 0&&S!=null&&m(t,[`parameters`,`editConfig`,`baseSteps`],S),r}function ga(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`prompt`]);a!=null&&m(r,[`instances[0]`,`prompt`],a);let o=h(t,[`referenceImages`]);if(o!=null){let e=o;Array.isArray(e)&&(e=e.map(e=>ko(e))),m(r,[`instances[0]`,`referenceImages`],e)}let s=h(t,[`config`]);return s!=null&&ha(s,r),r}function _a(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Qa(e))),m(n,[`generatedImages`],e)}return n}function va(e,t,n){let r={},i=h(e,[`taskType`]);t!==void 0&&i!=null&&m(t,[`requests[]`,`taskType`],i);let a=h(e,[`title`]);t!==void 0&&a!=null&&m(t,[`requests[]`,`title`],a);let o=h(e,[`outputDimensionality`]);if(t!==void 0&&o!=null&&m(t,[`requests[]`,`outputDimensionality`],o),h(e,[`mimeType`])!==void 0)throw Error(`mimeType parameter is not supported in Gemini API.`);if(h(e,[`autoTruncate`])!==void 0)throw Error(`autoTruncate parameter is not supported in Gemini API.`);if(h(e,[`documentOcr`])!==void 0)throw Error(`documentOcr parameter is not supported in Gemini API.`);if(h(e,[`audioTrackExtraction`])!==void 0)throw Error(`audioTrackExtraction parameter is not supported in Gemini API.`);return r}function ya(e,t,n){let r={},i=h(n,[`embeddingApiType`]);if(i===void 0&&(i=`PREDICT`),i===`PREDICT`){let n=h(e,[`taskType`]);t!==void 0&&n!=null&&m(t,[`instances[]`,`task_type`],n)}else if(i===`EMBED_CONTENT`){let n=h(e,[`taskType`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`taskType`],n)}let a=h(n,[`embeddingApiType`]);if(a===void 0&&(a=`PREDICT`),a===`PREDICT`){let n=h(e,[`title`]);t!==void 0&&n!=null&&m(t,[`instances[]`,`title`],n)}else if(a===`EMBED_CONTENT`){let n=h(e,[`title`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`title`],n)}let o=h(n,[`embeddingApiType`]);if(o===void 0&&(o=`PREDICT`),o===`PREDICT`){let n=h(e,[`outputDimensionality`]);t!==void 0&&n!=null&&m(t,[`parameters`,`outputDimensionality`],n)}else if(o===`EMBED_CONTENT`){let n=h(e,[`outputDimensionality`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`outputDimensionality`],n)}let s=h(n,[`embeddingApiType`]);if(s===void 0&&(s=`PREDICT`),s===`PREDICT`){let n=h(e,[`mimeType`]);t!==void 0&&n!=null&&m(t,[`instances[]`,`mimeType`],n)}let c=h(n,[`embeddingApiType`]);if(c===void 0&&(c=`PREDICT`),c===`PREDICT`){let n=h(e,[`autoTruncate`]);t!==void 0&&n!=null&&m(t,[`parameters`,`autoTruncate`],n)}else if(c===`EMBED_CONTENT`){let n=h(e,[`autoTruncate`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`autoTruncate`],n)}let l=h(n,[`embeddingApiType`]);if(l===void 0&&(l=`PREDICT`),l===`EMBED_CONTENT`){let n=h(e,[`documentOcr`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`documentOcr`],n)}let u=h(n,[`embeddingApiType`]);if(u===void 0&&(u=`PREDICT`),u===`EMBED_CONTENT`){let n=h(e,[`audioTrackExtraction`]);t!==void 0&&n!=null&&m(t,[`embedContentConfig`,`audioTrackExtraction`],n)}return r}function ba(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let t=Yt(e,a);Array.isArray(t)&&(t=t.map(e=>e)),m(r,[`requests[]`,`content`],t)}let o=h(t,[`content`]);o!=null&&na(I(o));let s=h(t,[`config`]);s!=null&&va(s,r);let c=h(t,[`model`]);return c!==void 0&&m(r,[`requests[]`,`model`],F(e,c)),r}function xa(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(n,[`embeddingApiType`]);if(a===void 0&&(a=`PREDICT`),a===`PREDICT`){let n=h(t,[`contents`]);if(n!=null){let t=Yt(e,n);Array.isArray(t)&&(t=t.map(e=>e)),m(r,[`instances[]`,`content`],t)}}let o=h(n,[`embeddingApiType`]);if(o===void 0&&(o=`PREDICT`),o===`EMBED_CONTENT`){let e=h(t,[`content`]);e!=null&&m(r,[`content`],ra(I(e)))}let s=h(t,[`config`]);return s!=null&&ya(s,r,n),r}function Sa(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`embeddings`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`embeddings`],e)}let a=h(e,[`metadata`]);return a!=null&&m(n,[`metadata`],a),n}function Ca(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`predictions[]`,`embeddings`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>ea(e))),m(n,[`embeddings`],e)}let a=h(e,[`metadata`]);if(a!=null&&m(n,[`metadata`],a),t&&h(t,[`embeddingApiType`])===`EMBED_CONTENT`){let t=h(e,[`embedding`]),r=h(e,[`usageMetadata`]),i=h(e,[`truncated`]);if(t){let e={};r&&r.promptTokenCount&&(e.tokenCount=r.promptTokenCount),i&&(e.truncated=i),t.statistics=e,m(n,[`embeddings`],[t])}}return n}function wa(e,t){let n={},r=h(e,[`endpoint`]);r!=null&&m(n,[`name`],r);let i=h(e,[`deployedModelId`]);return i!=null&&m(n,[`deployedModelId`],i),n}function Ta(e,t){let n={};if(h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=h(e,[`fileUri`]);r!=null&&m(n,[`fileUri`],r);let i=h(e,[`mimeType`]);return i!=null&&m(n,[`mimeType`],i),n}function Ea(e,t){let n={},r=h(e,[`id`]);r!=null&&m(n,[`id`],r);let i=h(e,[`args`]);i!=null&&m(n,[`args`],i);let a=h(e,[`name`]);if(a!=null&&m(n,[`name`],a),h(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(h(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return n}function Da(e,t){let n={},r=h(e,[`allowedFunctionNames`]);r!=null&&m(n,[`allowedFunctionNames`],r);let i=h(e,[`mode`]);if(i!=null&&m(n,[`mode`],i),h(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return n}function Oa(e,t){let n={},r=h(e,[`description`]);r!=null&&m(n,[`description`],r);let i=h(e,[`name`]);i!=null&&m(n,[`name`],i);let a=h(e,[`parameters`]);a!=null&&m(n,[`parameters`],a);let o=h(e,[`parametersJsonSchema`]);o!=null&&m(n,[`parametersJsonSchema`],o);let s=h(e,[`response`]);s!=null&&m(n,[`response`],s);let c=h(e,[`responseJsonSchema`]);if(c!=null&&m(n,[`responseJsonSchema`],c),h(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return n}function ka(e,t,n,r){let i={},a=h(t,[`systemInstruction`]);n!==void 0&&a!=null&&m(n,[`systemInstruction`],na(I(a)));let o=h(t,[`temperature`]);o!=null&&m(i,[`temperature`],o);let s=h(t,[`topP`]);s!=null&&m(i,[`topP`],s);let c=h(t,[`topK`]);c!=null&&m(i,[`topK`],c);let l=h(t,[`candidateCount`]);l!=null&&m(i,[`candidateCount`],l);let u=h(t,[`maxOutputTokens`]);u!=null&&m(i,[`maxOutputTokens`],u);let d=h(t,[`stopSequences`]);d!=null&&m(i,[`stopSequences`],d);let f=h(t,[`responseLogprobs`]);f!=null&&m(i,[`responseLogprobs`],f);let p=h(t,[`logprobs`]);p!=null&&m(i,[`logprobs`],p);let g=h(t,[`presencePenalty`]);g!=null&&m(i,[`presencePenalty`],g);let _=h(t,[`frequencyPenalty`]);_!=null&&m(i,[`frequencyPenalty`],_);let v=h(t,[`seed`]);v!=null&&m(i,[`seed`],v);let y=h(t,[`responseMimeType`]);y!=null&&m(i,[`responseMimeType`],y);let b=h(t,[`responseSchema`]);b!=null&&m(i,[`responseSchema`],Qt(b));let x=h(t,[`responseJsonSchema`]);if(x!=null&&m(i,[`responseJsonSchema`],x),h(t,[`routingConfig`])!==void 0)throw Error(`routingConfig parameter is not supported in Gemini API.`);if(h(t,[`modelSelectionConfig`])!==void 0)throw Error(`modelSelectionConfig parameter is not supported in Gemini API.`);let S=h(t,[`safetySettings`]);if(n!==void 0&&S!=null){let e=S;Array.isArray(e)&&(e=e.map(e=>Mo(e))),m(n,[`safetySettings`],e)}let C=h(t,[`tools`]);if(n!==void 0&&C!=null){let e=nn(C);Array.isArray(e)&&(e=e.map(e=>Bo(tn(e)))),m(n,[`tools`],e)}let w=h(t,[`toolConfig`]);if(n!==void 0&&w!=null&&m(n,[`toolConfig`],Ro(w)),h(t,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let T=h(t,[`cachedContent`]);n!==void 0&&T!=null&&m(n,[`cachedContent`],R(e,T));let E=h(t,[`responseModalities`]);E!=null&&m(i,[`responseModalities`],E);let D=h(t,[`mediaResolution`]);D!=null&&m(i,[`mediaResolution`],D);let O=h(t,[`speechConfig`]);if(O!=null&&m(i,[`speechConfig`],$t(O)),h(t,[`audioTimestamp`])!==void 0)throw Error(`audioTimestamp parameter is not supported in Gemini API.`);let k=h(t,[`thinkingConfig`]);k!=null&&m(i,[`thinkingConfig`],k);let A=h(t,[`imageConfig`]);A!=null&&m(i,[`imageConfig`],so(A));let j=h(t,[`enableEnhancedCivicAnswers`]);if(j!=null&&m(i,[`enableEnhancedCivicAnswers`],j),h(t,[`modelArmorConfig`])!==void 0)throw Error(`modelArmorConfig parameter is not supported in Gemini API.`);let M=h(t,[`serviceTier`]);return n!==void 0&&M!=null&&m(n,[`serviceTier`],M),i}function Aa(e,t,n,r){let i={},a=h(t,[`systemInstruction`]);n!==void 0&&a!=null&&m(n,[`systemInstruction`],ra(I(a)));let o=h(t,[`temperature`]);o!=null&&m(i,[`temperature`],o);let s=h(t,[`topP`]);s!=null&&m(i,[`topP`],s);let c=h(t,[`topK`]);c!=null&&m(i,[`topK`],c);let l=h(t,[`candidateCount`]);l!=null&&m(i,[`candidateCount`],l);let u=h(t,[`maxOutputTokens`]);u!=null&&m(i,[`maxOutputTokens`],u);let d=h(t,[`stopSequences`]);d!=null&&m(i,[`stopSequences`],d);let f=h(t,[`responseLogprobs`]);f!=null&&m(i,[`responseLogprobs`],f);let p=h(t,[`logprobs`]);p!=null&&m(i,[`logprobs`],p);let g=h(t,[`presencePenalty`]);g!=null&&m(i,[`presencePenalty`],g);let _=h(t,[`frequencyPenalty`]);_!=null&&m(i,[`frequencyPenalty`],_);let v=h(t,[`seed`]);v!=null&&m(i,[`seed`],v);let y=h(t,[`responseMimeType`]);y!=null&&m(i,[`responseMimeType`],y);let b=h(t,[`responseSchema`]);b!=null&&m(i,[`responseSchema`],Qt(b));let x=h(t,[`responseJsonSchema`]);x!=null&&m(i,[`responseJsonSchema`],x);let S=h(t,[`routingConfig`]);S!=null&&m(i,[`routingConfig`],S);let C=h(t,[`modelSelectionConfig`]);C!=null&&m(i,[`modelConfig`],C);let w=h(t,[`safetySettings`]);if(n!==void 0&&w!=null){let e=w;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`safetySettings`],e)}let T=h(t,[`tools`]);if(n!==void 0&&T!=null){let e=nn(T);Array.isArray(e)&&(e=e.map(e=>Vo(tn(e)))),m(n,[`tools`],e)}let E=h(t,[`toolConfig`]);n!==void 0&&E!=null&&m(n,[`toolConfig`],zo(E));let D=h(t,[`labels`]);n!==void 0&&D!=null&&m(n,[`labels`],D);let O=h(t,[`cachedContent`]);n!==void 0&&O!=null&&m(n,[`cachedContent`],R(e,O));let k=h(t,[`responseModalities`]);k!=null&&m(i,[`responseModalities`],k);let A=h(t,[`mediaResolution`]);A!=null&&m(i,[`mediaResolution`],A);let j=h(t,[`speechConfig`]);j!=null&&m(i,[`speechConfig`],$t(j));let M=h(t,[`audioTimestamp`]);M!=null&&m(i,[`audioTimestamp`],M);let ee=h(t,[`thinkingConfig`]);ee!=null&&m(i,[`thinkingConfig`],ee);let te=h(t,[`imageConfig`]);if(te!=null&&m(i,[`imageConfig`],co(te)),h(t,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);let ne=h(t,[`modelArmorConfig`]);n!==void 0&&ne!=null&&m(n,[`modelArmorConfig`],ne);let re=h(t,[`serviceTier`]);return n!==void 0&&re!=null&&m(n,[`serviceTier`],re),i}function ja(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let e=L(a);Array.isArray(e)&&(e=e.map(e=>na(e))),m(r,[`contents`],e)}let o=h(t,[`config`]);return o!=null&&m(r,[`generationConfig`],ka(e,o,r)),r}function Ma(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`contents`]);if(a!=null){let e=L(a);Array.isArray(e)&&(e=e.map(e=>ra(e))),m(r,[`contents`],e)}let o=h(t,[`config`]);return o!=null&&m(r,[`generationConfig`],Aa(e,o,r)),r}function Na(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`candidates`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Xi(e))),m(n,[`candidates`],e)}let a=h(e,[`modelVersion`]);a!=null&&m(n,[`modelVersion`],a);let o=h(e,[`promptFeedback`]);o!=null&&m(n,[`promptFeedback`],o);let s=h(e,[`responseId`]);s!=null&&m(n,[`responseId`],s);let c=h(e,[`usageMetadata`]);c!=null&&m(n,[`usageMetadata`],c);let l=h(e,[`modelStatus`]);return l!=null&&m(n,[`modelStatus`],l),n}function Pa(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`candidates`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`candidates`],e)}let a=h(e,[`createTime`]);a!=null&&m(n,[`createTime`],a);let o=h(e,[`modelVersion`]);o!=null&&m(n,[`modelVersion`],o);let s=h(e,[`promptFeedback`]);s!=null&&m(n,[`promptFeedback`],s);let c=h(e,[`responseId`]);c!=null&&m(n,[`responseId`],c);let l=h(e,[`usageMetadata`]);return l!=null&&m(n,[`usageMetadata`],l),n}function Fa(e,t,n){let r={};if(h(e,[`outputGcsUri`])!==void 0)throw Error(`outputGcsUri parameter is not supported in Gemini API.`);if(h(e,[`negativePrompt`])!==void 0)throw Error(`negativePrompt parameter is not supported in Gemini API.`);let i=h(e,[`numberOfImages`]);t!==void 0&&i!=null&&m(t,[`parameters`,`sampleCount`],i);let a=h(e,[`aspectRatio`]);t!==void 0&&a!=null&&m(t,[`parameters`,`aspectRatio`],a);let o=h(e,[`guidanceScale`]);if(t!==void 0&&o!=null&&m(t,[`parameters`,`guidanceScale`],o),h(e,[`seed`])!==void 0)throw Error(`seed parameter is not supported in Gemini API.`);let s=h(e,[`safetyFilterLevel`]);t!==void 0&&s!=null&&m(t,[`parameters`,`safetySetting`],s);let c=h(e,[`personGeneration`]);t!==void 0&&c!=null&&m(t,[`parameters`,`personGeneration`],c);let l=h(e,[`includeSafetyAttributes`]);t!==void 0&&l!=null&&m(t,[`parameters`,`includeSafetyAttributes`],l);let u=h(e,[`includeRaiReason`]);t!==void 0&&u!=null&&m(t,[`parameters`,`includeRaiReason`],u);let d=h(e,[`language`]);t!==void 0&&d!=null&&m(t,[`parameters`,`language`],d);let f=h(e,[`outputMimeType`]);t!==void 0&&f!=null&&m(t,[`parameters`,`outputOptions`,`mimeType`],f);let p=h(e,[`outputCompressionQuality`]);if(t!==void 0&&p!=null&&m(t,[`parameters`,`outputOptions`,`compressionQuality`],p),h(e,[`addWatermark`])!==void 0)throw Error(`addWatermark parameter is not supported in Gemini API.`);if(h(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let g=h(e,[`imageSize`]);if(t!==void 0&&g!=null&&m(t,[`parameters`,`sampleImageSize`],g),h(e,[`enhancePrompt`])!==void 0)throw Error(`enhancePrompt parameter is not supported in Gemini API.`);return r}function Ia(e,t,n){let r={},i=h(e,[`outputGcsUri`]);t!==void 0&&i!=null&&m(t,[`parameters`,`storageUri`],i);let a=h(e,[`negativePrompt`]);t!==void 0&&a!=null&&m(t,[`parameters`,`negativePrompt`],a);let o=h(e,[`numberOfImages`]);t!==void 0&&o!=null&&m(t,[`parameters`,`sampleCount`],o);let s=h(e,[`aspectRatio`]);t!==void 0&&s!=null&&m(t,[`parameters`,`aspectRatio`],s);let c=h(e,[`guidanceScale`]);t!==void 0&&c!=null&&m(t,[`parameters`,`guidanceScale`],c);let l=h(e,[`seed`]);t!==void 0&&l!=null&&m(t,[`parameters`,`seed`],l);let u=h(e,[`safetyFilterLevel`]);t!==void 0&&u!=null&&m(t,[`parameters`,`safetySetting`],u);let d=h(e,[`personGeneration`]);t!==void 0&&d!=null&&m(t,[`parameters`,`personGeneration`],d);let f=h(e,[`includeSafetyAttributes`]);t!==void 0&&f!=null&&m(t,[`parameters`,`includeSafetyAttributes`],f);let p=h(e,[`includeRaiReason`]);t!==void 0&&p!=null&&m(t,[`parameters`,`includeRaiReason`],p);let g=h(e,[`language`]);t!==void 0&&g!=null&&m(t,[`parameters`,`language`],g);let _=h(e,[`outputMimeType`]);t!==void 0&&_!=null&&m(t,[`parameters`,`outputOptions`,`mimeType`],_);let v=h(e,[`outputCompressionQuality`]);t!==void 0&&v!=null&&m(t,[`parameters`,`outputOptions`,`compressionQuality`],v);let y=h(e,[`addWatermark`]);t!==void 0&&y!=null&&m(t,[`parameters`,`addWatermark`],y);let b=h(e,[`labels`]);t!==void 0&&b!=null&&m(t,[`labels`],b);let x=h(e,[`imageSize`]);t!==void 0&&x!=null&&m(t,[`parameters`,`sampleImageSize`],x);let S=h(e,[`enhancePrompt`]);return t!==void 0&&S!=null&&m(t,[`parameters`,`enhancePrompt`],S),r}function La(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`prompt`]);a!=null&&m(r,[`instances[0]`,`prompt`],a);let o=h(t,[`config`]);return o!=null&&Fa(o,r),r}function Ra(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`prompt`]);a!=null&&m(r,[`instances[0]`,`prompt`],a);let o=h(t,[`config`]);return o!=null&&Ia(o,r),r}function za(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Za(e))),m(n,[`generatedImages`],e)}let a=h(e,[`positivePromptSafetyAttributes`]);return a!=null&&m(n,[`positivePromptSafetyAttributes`],Ao(a)),n}function Ba(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Qa(e))),m(n,[`generatedImages`],e)}let a=h(e,[`positivePromptSafetyAttributes`]);return a!=null&&m(n,[`positivePromptSafetyAttributes`],jo(a)),n}function Va(e,t,n){let r={},i=h(e,[`numberOfVideos`]);if(t!==void 0&&i!=null&&m(t,[`parameters`,`sampleCount`],i),h(e,[`outputGcsUri`])!==void 0)throw Error(`outputGcsUri parameter is not supported in Gemini API.`);if(h(e,[`fps`])!==void 0)throw Error(`fps parameter is not supported in Gemini API.`);let a=h(e,[`durationSeconds`]);if(t!==void 0&&a!=null&&m(t,[`parameters`,`durationSeconds`],a),h(e,[`seed`])!==void 0)throw Error(`seed parameter is not supported in Gemini API.`);let o=h(e,[`aspectRatio`]);t!==void 0&&o!=null&&m(t,[`parameters`,`aspectRatio`],o);let s=h(e,[`resolution`]);t!==void 0&&s!=null&&m(t,[`parameters`,`resolution`],s);let c=h(e,[`personGeneration`]);if(t!==void 0&&c!=null&&m(t,[`parameters`,`personGeneration`],c),h(e,[`pubsubTopic`])!==void 0)throw Error(`pubsubTopic parameter is not supported in Gemini API.`);let l=h(e,[`negativePrompt`]);t!==void 0&&l!=null&&m(t,[`parameters`,`negativePrompt`],l);let u=h(e,[`enhancePrompt`]);if(t!==void 0&&u!=null&&m(t,[`parameters`,`enhancePrompt`],u),h(e,[`generateAudio`])!==void 0)throw Error(`generateAudio parameter is not supported in Gemini API.`);let d=h(e,[`lastFrame`]);t!==void 0&&d!=null&&m(t,[`instances[0]`,`lastFrame`],fo(d));let f=h(e,[`referenceImages`]);if(t!==void 0&&f!=null){let e=f;Array.isArray(e)&&(e=e.map(e=>es(e))),m(t,[`instances[0]`,`referenceImages`],e)}if(h(e,[`mask`])!==void 0)throw Error(`mask parameter is not supported in Gemini API.`);if(h(e,[`compressionQuality`])!==void 0)throw Error(`compressionQuality parameter is not supported in Gemini API.`);if(h(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let p=h(e,[`webhookConfig`]);return t!==void 0&&p!=null&&m(t,[`webhookConfig`],p),r}function Ha(e,t,n){let r={},i=h(e,[`numberOfVideos`]);t!==void 0&&i!=null&&m(t,[`parameters`,`sampleCount`],i);let a=h(e,[`outputGcsUri`]);t!==void 0&&a!=null&&m(t,[`parameters`,`storageUri`],a);let o=h(e,[`fps`]);t!==void 0&&o!=null&&m(t,[`parameters`,`fps`],o);let s=h(e,[`durationSeconds`]);t!==void 0&&s!=null&&m(t,[`parameters`,`durationSeconds`],s);let c=h(e,[`seed`]);t!==void 0&&c!=null&&m(t,[`parameters`,`seed`],c);let l=h(e,[`aspectRatio`]);t!==void 0&&l!=null&&m(t,[`parameters`,`aspectRatio`],l);let u=h(e,[`resolution`]);t!==void 0&&u!=null&&m(t,[`parameters`,`resolution`],u);let d=h(e,[`personGeneration`]);t!==void 0&&d!=null&&m(t,[`parameters`,`personGeneration`],d);let f=h(e,[`pubsubTopic`]);t!==void 0&&f!=null&&m(t,[`parameters`,`pubsubTopic`],f);let p=h(e,[`negativePrompt`]);t!==void 0&&p!=null&&m(t,[`parameters`,`negativePrompt`],p);let g=h(e,[`enhancePrompt`]);t!==void 0&&g!=null&&m(t,[`parameters`,`enhancePrompt`],g);let _=h(e,[`generateAudio`]);t!==void 0&&_!=null&&m(t,[`parameters`,`generateAudio`],_);let v=h(e,[`lastFrame`]);t!==void 0&&v!=null&&m(t,[`instances[0]`,`lastFrame`],K(v));let y=h(e,[`referenceImages`]);if(t!==void 0&&y!=null){let e=y;Array.isArray(e)&&(e=e.map(e=>ts(e))),m(t,[`instances[0]`,`referenceImages`],e)}let b=h(e,[`mask`]);t!==void 0&&b!=null&&m(t,[`instances[0]`,`mask`],$o(b));let x=h(e,[`compressionQuality`]);t!==void 0&&x!=null&&m(t,[`parameters`,`compressionQuality`],x);let S=h(e,[`labels`]);if(t!==void 0&&S!=null&&m(t,[`labels`],S),h(e,[`webhookConfig`])!==void 0)throw Error(`webhookConfig parameter is not supported in Vertex AI.`);return r}function Ua(e,t){let n={},r=h(e,[`name`]);r!=null&&m(n,[`name`],r);let i=h(e,[`metadata`]);i!=null&&m(n,[`metadata`],i);let a=h(e,[`done`]);a!=null&&m(n,[`done`],a);let o=h(e,[`error`]);o!=null&&m(n,[`error`],o);let s=h(e,[`response`,`generateVideoResponse`]);return s!=null&&m(n,[`response`],qa(s)),n}function Wa(e,t){let n={},r=h(e,[`name`]);r!=null&&m(n,[`name`],r);let i=h(e,[`metadata`]);i!=null&&m(n,[`metadata`],i);let a=h(e,[`done`]);a!=null&&m(n,[`done`],a);let o=h(e,[`error`]);o!=null&&m(n,[`error`],o);let s=h(e,[`response`]);return s!=null&&m(n,[`response`],Ja(s)),n}function Ga(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`prompt`]);a!=null&&m(r,[`instances[0]`,`prompt`],a);let o=h(t,[`image`]);o!=null&&m(r,[`instances[0]`,`image`],fo(o));let s=h(t,[`video`]);s!=null&&m(r,[`instances[0]`,`video`],ns(s));let c=h(t,[`source`]);c!=null&&Ya(c,r);let l=h(t,[`config`]);return l!=null&&Va(l,r),r}function Ka(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`prompt`]);a!=null&&m(r,[`instances[0]`,`prompt`],a);let o=h(t,[`image`]);o!=null&&m(r,[`instances[0]`,`image`],K(o));let s=h(t,[`video`]);s!=null&&m(r,[`instances[0]`,`video`],rs(s));let c=h(t,[`source`]);c!=null&&Xa(c,r);let l=h(t,[`config`]);return l!=null&&Ha(l,r),r}function qa(e,t){let n={},r=h(e,[`generatedSamples`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>eo(e))),m(n,[`generatedVideos`],e)}let i=h(e,[`raiMediaFilteredCount`]);i!=null&&m(n,[`raiMediaFilteredCount`],i);let a=h(e,[`raiMediaFilteredReasons`]);return a!=null&&m(n,[`raiMediaFilteredReasons`],a),n}function Ja(e,t){let n={},r=h(e,[`videos`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>to(e))),m(n,[`generatedVideos`],e)}let i=h(e,[`raiMediaFilteredCount`]);i!=null&&m(n,[`raiMediaFilteredCount`],i);let a=h(e,[`raiMediaFilteredReasons`]);return a!=null&&m(n,[`raiMediaFilteredReasons`],a),n}function Ya(e,t,n){let r={},i=h(e,[`prompt`]);t!==void 0&&i!=null&&m(t,[`instances[0]`,`prompt`],i);let a=h(e,[`image`]);t!==void 0&&a!=null&&m(t,[`instances[0]`,`image`],fo(a));let o=h(e,[`video`]);return t!==void 0&&o!=null&&m(t,[`instances[0]`,`video`],ns(o)),r}function Xa(e,t,n){let r={},i=h(e,[`prompt`]);t!==void 0&&i!=null&&m(t,[`instances[0]`,`prompt`],i);let a=h(e,[`image`]);t!==void 0&&a!=null&&m(t,[`instances[0]`,`image`],K(a));let o=h(e,[`video`]);return t!==void 0&&o!=null&&m(t,[`instances[0]`,`video`],rs(o)),r}function Za(e,t){let n={},r=h(e,[`_self`]);r!=null&&m(n,[`image`],lo(r));let i=h(e,[`raiFilteredReason`]);i!=null&&m(n,[`raiFilteredReason`],i);let a=h(e,[`_self`]);return a!=null&&m(n,[`safetyAttributes`],Ao(a)),n}function Qa(e,t){let n={},r=h(e,[`_self`]);r!=null&&m(n,[`image`],uo(r));let i=h(e,[`raiFilteredReason`]);i!=null&&m(n,[`raiFilteredReason`],i);let a=h(e,[`_self`]);a!=null&&m(n,[`safetyAttributes`],jo(a));let o=h(e,[`prompt`]);return o!=null&&m(n,[`enhancedPrompt`],o),n}function $a(e,t){let n={},r=h(e,[`_self`]);r!=null&&m(n,[`mask`],uo(r));let i=h(e,[`labels`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`labels`],e)}return n}function eo(e,t){let n={},r=h(e,[`video`]);return r!=null&&m(n,[`video`],Zo(r)),n}function to(e,t){let n={},r=h(e,[`_self`]);return r!=null&&m(n,[`video`],Qo(r)),n}function no(e,t){let n={},r=h(e,[`modelSelectionConfig`]);r!=null&&m(n,[`modelConfig`],r);let i=h(e,[`responseJsonSchema`]);i!=null&&m(n,[`responseJsonSchema`],i);let a=h(e,[`audioTimestamp`]);a!=null&&m(n,[`audioTimestamp`],a);let o=h(e,[`candidateCount`]);o!=null&&m(n,[`candidateCount`],o);let s=h(e,[`enableAffectiveDialog`]);s!=null&&m(n,[`enableAffectiveDialog`],s);let c=h(e,[`frequencyPenalty`]);c!=null&&m(n,[`frequencyPenalty`],c);let l=h(e,[`logprobs`]);l!=null&&m(n,[`logprobs`],l);let u=h(e,[`maxOutputTokens`]);u!=null&&m(n,[`maxOutputTokens`],u);let d=h(e,[`mediaResolution`]);d!=null&&m(n,[`mediaResolution`],d);let f=h(e,[`presencePenalty`]);f!=null&&m(n,[`presencePenalty`],f);let p=h(e,[`responseLogprobs`]);p!=null&&m(n,[`responseLogprobs`],p);let g=h(e,[`responseMimeType`]);g!=null&&m(n,[`responseMimeType`],g);let _=h(e,[`responseModalities`]);_!=null&&m(n,[`responseModalities`],_);let v=h(e,[`responseSchema`]);v!=null&&m(n,[`responseSchema`],v);let y=h(e,[`routingConfig`]);y!=null&&m(n,[`routingConfig`],y);let b=h(e,[`seed`]);b!=null&&m(n,[`seed`],b);let x=h(e,[`speechConfig`]);x!=null&&m(n,[`speechConfig`],x);let S=h(e,[`stopSequences`]);S!=null&&m(n,[`stopSequences`],S);let C=h(e,[`temperature`]);C!=null&&m(n,[`temperature`],C);let w=h(e,[`thinkingConfig`]);w!=null&&m(n,[`thinkingConfig`],w);let T=h(e,[`topK`]);T!=null&&m(n,[`topK`],T);let E=h(e,[`topP`]);if(E!=null&&m(n,[`topP`],E),h(e,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);return n}function ro(e,t,n){let r={},i=h(t,[`model`]);return i!=null&&m(r,[`_url`,`name`],F(e,i)),r}function io(e,t,n){let r={},i=h(t,[`model`]);return i!=null&&m(r,[`_url`,`name`],F(e,i)),r}function ao(e,t){let n={},r=h(e,[`authConfig`]);r!=null&&m(n,[`authConfig`],Ji(r));let i=h(e,[`enableWidget`]);return i!=null&&m(n,[`enableWidget`],i),n}function oo(e,t){let n={},r=h(e,[`searchTypes`]);if(r!=null&&m(n,[`searchTypes`],r),h(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(h(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let i=h(e,[`timeRangeFilter`]);return i!=null&&m(n,[`timeRangeFilter`],i),n}function so(e,t){let n={},r=h(e,[`aspectRatio`]);r!=null&&m(n,[`aspectRatio`],r);let i=h(e,[`imageSize`]);if(i!=null&&m(n,[`imageSize`],i),h(e,[`personGeneration`])!==void 0)throw Error(`personGeneration parameter is not supported in Gemini API.`);if(h(e,[`prominentPeople`])!==void 0)throw Error(`prominentPeople parameter is not supported in Gemini API.`);if(h(e,[`outputMimeType`])!==void 0)throw Error(`outputMimeType parameter is not supported in Gemini API.`);if(h(e,[`outputCompressionQuality`])!==void 0)throw Error(`outputCompressionQuality parameter is not supported in Gemini API.`);if(h(e,[`imageOutputOptions`])!==void 0)throw Error(`imageOutputOptions parameter is not supported in Gemini API.`);return n}function co(e,t){let n={},r=h(e,[`aspectRatio`]);r!=null&&m(n,[`aspectRatio`],r);let i=h(e,[`imageSize`]);i!=null&&m(n,[`imageSize`],i);let a=h(e,[`personGeneration`]);a!=null&&m(n,[`personGeneration`],a);let o=h(e,[`prominentPeople`]);o!=null&&m(n,[`prominentPeople`],o);let s=h(e,[`outputMimeType`]);s!=null&&m(n,[`imageOutputOptions`,`mimeType`],s);let c=h(e,[`outputCompressionQuality`]);c!=null&&m(n,[`imageOutputOptions`,`compressionQuality`],c);let l=h(e,[`imageOutputOptions`]);return l!=null&&m(n,[`imageOutputOptions`],l),n}function lo(e,t){let n={},r=h(e,[`bytesBase64Encoded`]);r!=null&&m(n,[`imageBytes`],z(r));let i=h(e,[`mimeType`]);return i!=null&&m(n,[`mimeType`],i),n}function uo(e,t){let n={},r=h(e,[`gcsUri`]);r!=null&&m(n,[`gcsUri`],r);let i=h(e,[`bytesBase64Encoded`]);i!=null&&m(n,[`imageBytes`],z(i));let a=h(e,[`mimeType`]);return a!=null&&m(n,[`mimeType`],a),n}function fo(e,t){let n={};if(h(e,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);let r=h(e,[`imageBytes`]);r!=null&&m(n,[`bytesBase64Encoded`],z(r));let i=h(e,[`mimeType`]);return i!=null&&m(n,[`mimeType`],i),n}function K(e,t){let n={},r=h(e,[`gcsUri`]);r!=null&&m(n,[`gcsUri`],r);let i=h(e,[`imageBytes`]);i!=null&&m(n,[`bytesBase64Encoded`],z(i));let a=h(e,[`mimeType`]);return a!=null&&m(n,[`mimeType`],a),n}function po(e,t,n,r){let i={},a=h(t,[`pageSize`]);n!==void 0&&a!=null&&m(n,[`_query`,`pageSize`],a);let o=h(t,[`pageToken`]);n!==void 0&&o!=null&&m(n,[`_query`,`pageToken`],o);let s=h(t,[`filter`]);n!==void 0&&s!=null&&m(n,[`_query`,`filter`],s);let c=h(t,[`queryBase`]);return n!==void 0&&c!=null&&m(n,[`_url`,`models_url`],un(e,c)),i}function mo(e,t,n,r){let i={},a=h(t,[`pageSize`]);n!==void 0&&a!=null&&m(n,[`_query`,`pageSize`],a);let o=h(t,[`pageToken`]);n!==void 0&&o!=null&&m(n,[`_query`,`pageToken`],o);let s=h(t,[`filter`]);n!==void 0&&s!=null&&m(n,[`_query`,`filter`],s);let c=h(t,[`queryBase`]);return n!==void 0&&c!=null&&m(n,[`_url`,`models_url`],un(e,c)),i}function ho(e,t,n){let r={},i=h(t,[`config`]);return i!=null&&po(e,i,r),r}function go(e,t,n){let r={},i=h(t,[`config`]);return i!=null&&mo(e,i,r),r}function _o(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`nextPageToken`]);i!=null&&m(n,[`nextPageToken`],i);let a=h(e,[`_self`]);if(a!=null){let e=dn(a);Array.isArray(e)&&(e=e.map(e=>bo(e))),m(n,[`models`],e)}return n}function vo(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`nextPageToken`]);i!=null&&m(n,[`nextPageToken`],i);let a=h(e,[`_self`]);if(a!=null){let e=dn(a);Array.isArray(e)&&(e=e.map(e=>xo(e))),m(n,[`models`],e)}return n}function yo(e,t){let n={},r=h(e,[`maskMode`]);r!=null&&m(n,[`maskMode`],r);let i=h(e,[`segmentationClasses`]);i!=null&&m(n,[`maskClasses`],i);let a=h(e,[`maskDilation`]);return a!=null&&m(n,[`dilation`],a),n}function bo(e,t){let n={},r=h(e,[`name`]);r!=null&&m(n,[`name`],r);let i=h(e,[`displayName`]);i!=null&&m(n,[`displayName`],i);let a=h(e,[`description`]);a!=null&&m(n,[`description`],a);let o=h(e,[`version`]);o!=null&&m(n,[`version`],o);let s=h(e,[`_self`]);s!=null&&m(n,[`tunedModelInfo`],Ho(s));let c=h(e,[`inputTokenLimit`]);c!=null&&m(n,[`inputTokenLimit`],c);let l=h(e,[`outputTokenLimit`]);l!=null&&m(n,[`outputTokenLimit`],l);let u=h(e,[`supportedGenerationMethods`]);u!=null&&m(n,[`supportedActions`],u);let d=h(e,[`temperature`]);d!=null&&m(n,[`temperature`],d);let f=h(e,[`maxTemperature`]);f!=null&&m(n,[`maxTemperature`],f);let p=h(e,[`topP`]);p!=null&&m(n,[`topP`],p);let g=h(e,[`topK`]);g!=null&&m(n,[`topK`],g);let _=h(e,[`thinking`]);return _!=null&&m(n,[`thinking`],_),n}function xo(e,t){let n={},r=h(e,[`name`]);r!=null&&m(n,[`name`],r);let i=h(e,[`displayName`]);i!=null&&m(n,[`displayName`],i);let a=h(e,[`description`]);a!=null&&m(n,[`description`],a);let o=h(e,[`versionId`]);o!=null&&m(n,[`version`],o);let s=h(e,[`deployedModels`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>wa(e))),m(n,[`endpoints`],e)}let c=h(e,[`labels`]);c!=null&&m(n,[`labels`],c);let l=h(e,[`_self`]);l!=null&&m(n,[`tunedModelInfo`],Uo(l));let u=h(e,[`defaultCheckpointId`]);u!=null&&m(n,[`defaultCheckpointId`],u);let d=h(e,[`checkpoints`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`checkpoints`],e)}return n}function So(e,t){let n={},r=h(e,[`mediaResolution`]);r!=null&&m(n,[`mediaResolution`],r);let i=h(e,[`codeExecutionResult`]);i!=null&&m(n,[`codeExecutionResult`],i);let a=h(e,[`executableCode`]);a!=null&&m(n,[`executableCode`],a);let o=h(e,[`fileData`]);o!=null&&m(n,[`fileData`],Ta(o));let s=h(e,[`functionCall`]);s!=null&&m(n,[`functionCall`],Ea(s));let c=h(e,[`functionResponse`]);c!=null&&m(n,[`functionResponse`],c);let l=h(e,[`inlineData`]);l!=null&&m(n,[`inlineData`],Yi(l));let u=h(e,[`text`]);u!=null&&m(n,[`text`],u);let d=h(e,[`thought`]);d!=null&&m(n,[`thought`],d);let f=h(e,[`thoughtSignature`]);f!=null&&m(n,[`thoughtSignature`],f);let p=h(e,[`videoMetadata`]);p!=null&&m(n,[`videoMetadata`],p);let g=h(e,[`toolCall`]);g!=null&&m(n,[`toolCall`],g);let _=h(e,[`toolResponse`]);_!=null&&m(n,[`toolResponse`],_);let v=h(e,[`partMetadata`]);return v!=null&&m(n,[`partMetadata`],v),n}function Co(e,t){let n={},r=h(e,[`mediaResolution`]);r!=null&&m(n,[`mediaResolution`],r);let i=h(e,[`codeExecutionResult`]);i!=null&&m(n,[`codeExecutionResult`],i);let a=h(e,[`executableCode`]);a!=null&&m(n,[`executableCode`],a);let o=h(e,[`fileData`]);o!=null&&m(n,[`fileData`],o);let s=h(e,[`functionCall`]);s!=null&&m(n,[`functionCall`],s);let c=h(e,[`functionResponse`]);c!=null&&m(n,[`functionResponse`],c);let l=h(e,[`inlineData`]);l!=null&&m(n,[`inlineData`],l);let u=h(e,[`text`]);u!=null&&m(n,[`text`],u);let d=h(e,[`thought`]);d!=null&&m(n,[`thought`],d);let f=h(e,[`thoughtSignature`]);f!=null&&m(n,[`thoughtSignature`],f);let p=h(e,[`videoMetadata`]);if(p!=null&&m(n,[`videoMetadata`],p),h(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(h(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(h(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return n}function wo(e,t){let n={},r=h(e,[`productImage`]);return r!=null&&m(n,[`image`],K(r)),n}function To(e,t,n){let r={},i=h(e,[`numberOfImages`]);t!==void 0&&i!=null&&m(t,[`parameters`,`sampleCount`],i);let a=h(e,[`baseSteps`]);t!==void 0&&a!=null&&m(t,[`parameters`,`baseSteps`],a);let o=h(e,[`outputGcsUri`]);t!==void 0&&o!=null&&m(t,[`parameters`,`storageUri`],o);let s=h(e,[`seed`]);t!==void 0&&s!=null&&m(t,[`parameters`,`seed`],s);let c=h(e,[`safetyFilterLevel`]);t!==void 0&&c!=null&&m(t,[`parameters`,`safetySetting`],c);let l=h(e,[`personGeneration`]);t!==void 0&&l!=null&&m(t,[`parameters`,`personGeneration`],l);let u=h(e,[`addWatermark`]);t!==void 0&&u!=null&&m(t,[`parameters`,`addWatermark`],u);let d=h(e,[`outputMimeType`]);t!==void 0&&d!=null&&m(t,[`parameters`,`outputOptions`,`mimeType`],d);let f=h(e,[`outputCompressionQuality`]);t!==void 0&&f!=null&&m(t,[`parameters`,`outputOptions`,`compressionQuality`],f);let p=h(e,[`enhancePrompt`]);t!==void 0&&p!=null&&m(t,[`parameters`,`enhancePrompt`],p);let g=h(e,[`labels`]);return t!==void 0&&g!=null&&m(t,[`labels`],g),r}function Eo(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`source`]);a!=null&&Oo(a,r);let o=h(t,[`config`]);return o!=null&&To(o,r),r}function Do(e,t){let n={},r=h(e,[`predictions`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Qa(e))),m(n,[`generatedImages`],e)}return n}function Oo(e,t,n){let r={},i=h(e,[`prompt`]);t!==void 0&&i!=null&&m(t,[`instances[0]`,`prompt`],i);let a=h(e,[`personImage`]);t!==void 0&&a!=null&&m(t,[`instances[0]`,`personImage`,`image`],K(a));let o=h(e,[`productImages`]);if(t!==void 0&&o!=null){let e=o;Array.isArray(e)&&(e=e.map(e=>wo(e))),m(t,[`instances[0]`,`productImages`],e)}return r}function ko(e,t){let n={},r=h(e,[`referenceImage`]);r!=null&&m(n,[`referenceImage`],K(r));let i=h(e,[`referenceId`]);i!=null&&m(n,[`referenceId`],i);let a=h(e,[`referenceType`]);a!=null&&m(n,[`referenceType`],a);let o=h(e,[`maskImageConfig`]);o!=null&&m(n,[`maskImageConfig`],yo(o));let s=h(e,[`controlImageConfig`]);s!=null&&m(n,[`controlImageConfig`],ia(s));let c=h(e,[`styleImageConfig`]);c!=null&&m(n,[`styleImageConfig`],c);let l=h(e,[`subjectImageConfig`]);return l!=null&&m(n,[`subjectImageConfig`],l),n}function Ao(e,t){let n={},r=h(e,[`safetyAttributes`,`categories`]);r!=null&&m(n,[`categories`],r);let i=h(e,[`safetyAttributes`,`scores`]);i!=null&&m(n,[`scores`],i);let a=h(e,[`contentType`]);return a!=null&&m(n,[`contentType`],a),n}function jo(e,t){let n={},r=h(e,[`safetyAttributes`,`categories`]);r!=null&&m(n,[`categories`],r);let i=h(e,[`safetyAttributes`,`scores`]);i!=null&&m(n,[`scores`],i);let a=h(e,[`contentType`]);return a!=null&&m(n,[`contentType`],a),n}function Mo(e,t){let n={},r=h(e,[`category`]);if(r!=null&&m(n,[`category`],r),h(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let i=h(e,[`threshold`]);return i!=null&&m(n,[`threshold`],i),n}function No(e,t){let n={},r=h(e,[`image`]);return r!=null&&m(n,[`image`],K(r)),n}function Po(e,t,n){let r={},i=h(e,[`mode`]);t!==void 0&&i!=null&&m(t,[`parameters`,`mode`],i);let a=h(e,[`maxPredictions`]);t!==void 0&&a!=null&&m(t,[`parameters`,`maxPredictions`],a);let o=h(e,[`confidenceThreshold`]);t!==void 0&&o!=null&&m(t,[`parameters`,`confidenceThreshold`],o);let s=h(e,[`maskDilation`]);t!==void 0&&s!=null&&m(t,[`parameters`,`maskDilation`],s);let c=h(e,[`binaryColorThreshold`]);t!==void 0&&c!=null&&m(t,[`parameters`,`binaryColorThreshold`],c);let l=h(e,[`labels`]);return t!==void 0&&l!=null&&m(t,[`labels`],l),r}function Fo(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`source`]);a!=null&&Lo(a,r);let o=h(t,[`config`]);return o!=null&&Po(o,r),r}function Io(e,t){let n={},r=h(e,[`predictions`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>$a(e))),m(n,[`generatedMasks`],e)}return n}function Lo(e,t,n){let r={},i=h(e,[`prompt`]);t!==void 0&&i!=null&&m(t,[`instances[0]`,`prompt`],i);let a=h(e,[`image`]);t!==void 0&&a!=null&&m(t,[`instances[0]`,`image`],K(a));let o=h(e,[`scribbleImage`]);return t!==void 0&&o!=null&&m(t,[`instances[0]`,`scribble`],No(o)),r}function Ro(e,t){let n={},r=h(e,[`retrievalConfig`]);r!=null&&m(n,[`retrievalConfig`],r);let i=h(e,[`functionCallingConfig`]);i!=null&&m(n,[`functionCallingConfig`],Da(i));let a=h(e,[`includeServerSideToolInvocations`]);return a!=null&&m(n,[`includeServerSideToolInvocations`],a),n}function zo(e,t){let n={},r=h(e,[`retrievalConfig`]);r!=null&&m(n,[`retrievalConfig`],r);let i=h(e,[`functionCallingConfig`]);if(i!=null&&m(n,[`functionCallingConfig`],i),h(e,[`includeServerSideToolInvocations`])!==void 0)throw Error(`includeServerSideToolInvocations parameter is not supported in Vertex AI.`);return n}function Bo(e,t){let n={};if(h(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let r=h(e,[`computerUse`]);r!=null&&m(n,[`computerUse`],r);let i=h(e,[`fileSearch`]);i!=null&&m(n,[`fileSearch`],i);let a=h(e,[`googleSearch`]);a!=null&&m(n,[`googleSearch`],oo(a));let o=h(e,[`googleMaps`]);o!=null&&m(n,[`googleMaps`],ao(o));let s=h(e,[`codeExecution`]);if(s!=null&&m(n,[`codeExecution`],s),h(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let c=h(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`functionDeclarations`],e)}let l=h(e,[`googleSearchRetrieval`]);if(l!=null&&m(n,[`googleSearchRetrieval`],l),h(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let u=h(e,[`urlContext`]);u!=null&&m(n,[`urlContext`],u);let d=h(e,[`mcpServers`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`mcpServers`],e)}return n}function Vo(e,t){let n={},r=h(e,[`retrieval`]);r!=null&&m(n,[`retrieval`],r);let i=h(e,[`computerUse`]);if(i!=null&&m(n,[`computerUse`],i),h(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let a=h(e,[`googleSearch`]);a!=null&&m(n,[`googleSearch`],a);let o=h(e,[`googleMaps`]);o!=null&&m(n,[`googleMaps`],o);let s=h(e,[`codeExecution`]);s!=null&&m(n,[`codeExecution`],s);let c=h(e,[`enterpriseWebSearch`]);c!=null&&m(n,[`enterpriseWebSearch`],c);let l=h(e,[`functionDeclarations`]);if(l!=null){let e=l;Array.isArray(e)&&(e=e.map(e=>Oa(e))),m(n,[`functionDeclarations`],e)}let u=h(e,[`googleSearchRetrieval`]);u!=null&&m(n,[`googleSearchRetrieval`],u);let d=h(e,[`parallelAiSearch`]);d!=null&&m(n,[`parallelAiSearch`],d);let f=h(e,[`urlContext`]);if(f!=null&&m(n,[`urlContext`],f),h(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return n}function Ho(e,t){let n={},r=h(e,[`baseModel`]);r!=null&&m(n,[`baseModel`],r);let i=h(e,[`createTime`]);i!=null&&m(n,[`createTime`],i);let a=h(e,[`updateTime`]);return a!=null&&m(n,[`updateTime`],a),n}function Uo(e,t){let n={},r=h(e,[`labels`,`google-vertex-llm-tuning-base-model-id`]);r!=null&&m(n,[`baseModel`],r);let i=h(e,[`createTime`]);i!=null&&m(n,[`createTime`],i);let a=h(e,[`updateTime`]);return a!=null&&m(n,[`updateTime`],a),n}function Wo(e,t,n){let r={},i=h(e,[`displayName`]);t!==void 0&&i!=null&&m(t,[`displayName`],i);let a=h(e,[`description`]);t!==void 0&&a!=null&&m(t,[`description`],a);let o=h(e,[`defaultCheckpointId`]);return t!==void 0&&o!=null&&m(t,[`defaultCheckpointId`],o),r}function Go(e,t,n){let r={},i=h(e,[`displayName`]);t!==void 0&&i!=null&&m(t,[`displayName`],i);let a=h(e,[`description`]);t!==void 0&&a!=null&&m(t,[`description`],a);let o=h(e,[`defaultCheckpointId`]);return t!==void 0&&o!=null&&m(t,[`defaultCheckpointId`],o),r}function Ko(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`name`],F(e,i));let a=h(t,[`config`]);return a!=null&&Wo(a,r),r}function qo(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`config`]);return a!=null&&Go(a,r),r}function Jo(e,t,n){let r={},i=h(e,[`outputGcsUri`]);t!==void 0&&i!=null&&m(t,[`parameters`,`storageUri`],i);let a=h(e,[`safetyFilterLevel`]);t!==void 0&&a!=null&&m(t,[`parameters`,`safetySetting`],a);let o=h(e,[`personGeneration`]);t!==void 0&&o!=null&&m(t,[`parameters`,`personGeneration`],o);let s=h(e,[`includeRaiReason`]);t!==void 0&&s!=null&&m(t,[`parameters`,`includeRaiReason`],s);let c=h(e,[`outputMimeType`]);t!==void 0&&c!=null&&m(t,[`parameters`,`outputOptions`,`mimeType`],c);let l=h(e,[`outputCompressionQuality`]);t!==void 0&&l!=null&&m(t,[`parameters`,`outputOptions`,`compressionQuality`],l);let u=h(e,[`enhanceInputImage`]);t!==void 0&&u!=null&&m(t,[`parameters`,`upscaleConfig`,`enhanceInputImage`],u);let d=h(e,[`imagePreservationFactor`]);t!==void 0&&d!=null&&m(t,[`parameters`,`upscaleConfig`,`imagePreservationFactor`],d);let f=h(e,[`labels`]);t!==void 0&&f!=null&&m(t,[`labels`],f);let p=h(e,[`numberOfImages`]);t!==void 0&&p!=null&&m(t,[`parameters`,`sampleCount`],p);let g=h(e,[`mode`]);return t!==void 0&&g!=null&&m(t,[`parameters`,`mode`],g),r}function Yo(e,t,n){let r={},i=h(t,[`model`]);i!=null&&m(r,[`_url`,`model`],F(e,i));let a=h(t,[`image`]);a!=null&&m(r,[`instances[0]`,`image`],K(a));let o=h(t,[`upscaleFactor`]);o!=null&&m(r,[`parameters`,`upscaleConfig`,`upscaleFactor`],o);let s=h(t,[`config`]);return s!=null&&Jo(s,r),r}function Xo(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Qa(e))),m(n,[`generatedImages`],e)}return n}function Zo(e,t){let n={},r=h(e,[`uri`]);r!=null&&m(n,[`uri`],r);let i=h(e,[`encodedVideo`]);i!=null&&m(n,[`videoBytes`],z(i));let a=h(e,[`encoding`]);return a!=null&&m(n,[`mimeType`],a),n}function Qo(e,t){let n={},r=h(e,[`gcsUri`]);r!=null&&m(n,[`uri`],r);let i=h(e,[`bytesBase64Encoded`]);i!=null&&m(n,[`videoBytes`],z(i));let a=h(e,[`mimeType`]);return a!=null&&m(n,[`mimeType`],a),n}function $o(e,t){let n={},r=h(e,[`image`]);r!=null&&m(n,[`_self`],K(r));let i=h(e,[`maskMode`]);return i!=null&&m(n,[`maskMode`],i),n}function es(e,t){let n={},r=h(e,[`image`]);r!=null&&m(n,[`image`],fo(r));let i=h(e,[`referenceType`]);return i!=null&&m(n,[`referenceType`],i),n}function ts(e,t){let n={},r=h(e,[`image`]);r!=null&&m(n,[`image`],K(r));let i=h(e,[`referenceType`]);return i!=null&&m(n,[`referenceType`],i),n}function ns(e,t){let n={},r=h(e,[`uri`]);r!=null&&m(n,[`uri`],r);let i=h(e,[`videoBytes`]);i!=null&&m(n,[`encodedVideo`],z(i));let a=h(e,[`mimeType`]);return a!=null&&m(n,[`encoding`],a),n}function rs(e,t){let n={},r=h(e,[`uri`]);r!=null&&m(n,[`gcsUri`],r);let i=h(e,[`videoBytes`]);i!=null&&m(n,[`bytesBase64Encoded`],z(i));let a=h(e,[`mimeType`]);return a!=null&&m(n,[`mimeType`],a),n}function is(e,t){let n={},r=h(e,[`displayName`]);return t!==void 0&&r!=null&&m(t,[`displayName`],r),n}function as(e){let t={},n=h(e,[`config`]);return n!=null&&is(n,t),t}function os(e,t){let n={},r=h(e,[`force`]);return t!==void 0&&r!=null&&m(t,[`_query`,`force`],r),n}function ss(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`_url`,`name`],n);let r=h(e,[`config`]);return r!=null&&os(r,t),t}function cs(e){let t={},n=h(e,[`name`]);return n!=null&&m(t,[`_url`,`name`],n),t}function ls(e,t){let n={},r=h(e,[`customMetadata`]);if(t!==void 0&&r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`customMetadata`],e)}let i=h(e,[`chunkingConfig`]);return t!==void 0&&i!=null&&m(t,[`chunkingConfig`],i),n}function us(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`name`],n);let r=h(e,[`metadata`]);r!=null&&m(t,[`metadata`],r);let i=h(e,[`done`]);i!=null&&m(t,[`done`],i);let a=h(e,[`error`]);a!=null&&m(t,[`error`],a);let o=h(e,[`response`]);return o!=null&&m(t,[`response`],fs(o)),t}function ds(e){let t={},n=h(e,[`fileSearchStoreName`]);n!=null&&m(t,[`_url`,`file_search_store_name`],n);let r=h(e,[`fileName`]);r!=null&&m(t,[`fileName`],r);let i=h(e,[`config`]);return i!=null&&ls(i,t),t}function fs(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`parent`]);r!=null&&m(t,[`parent`],r);let i=h(e,[`documentName`]);return i!=null&&m(t,[`documentName`],i),t}function ps(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);return t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),n}function ms(e){let t={},n=h(e,[`config`]);return n!=null&&ps(n,t),t}function hs(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`fileSearchStores`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`fileSearchStores`],e)}return t}function gs(e,t){let n={},r=h(e,[`mimeType`]);t!==void 0&&r!=null&&m(t,[`mimeType`],r);let i=h(e,[`displayName`]);t!==void 0&&i!=null&&m(t,[`displayName`],i);let a=h(e,[`customMetadata`]);if(t!==void 0&&a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`customMetadata`],e)}let o=h(e,[`chunkingConfig`]);return t!==void 0&&o!=null&&m(t,[`chunkingConfig`],o),n}function _s(e){let t={},n=h(e,[`fileSearchStoreName`]);n!=null&&m(t,[`_url`,`file_search_store_name`],n);let r=h(e,[`config`]);return r!=null&&gs(r,t),t}function vs(e){let t={},n=h(e,[`sdkHttpResponse`]);return n!=null&&m(t,[`sdkHttpResponse`],n),t}var ys=`Content-Type`,bs=`X-Server-Timeout`,xs=`User-Agent`,Ss=`x-goog-api-client`,Cs=`google-genai-sdk/1.50.1`,ws=`v1beta1`,Ts=`v1beta`,Es=new Set([`us`,`eu`]),Ds=5,Os=[408,429,500,502,503,504],ks=class{constructor(e){this.clientOptions=Object.assign({},e),this.customBaseUrl=e.httpOptions?.baseUrl,this.clientOptions.vertexai&&(this.clientOptions.project&&this.clientOptions.location?this.clientOptions.apiKey=void 0:this.clientOptions.apiKey&&(this.clientOptions.project=void 0,this.clientOptions.location=void 0));let t={};if(this.clientOptions.vertexai){if(!this.clientOptions.location&&!this.clientOptions.apiKey&&!this.customBaseUrl&&(this.clientOptions.location=`global`),!(this.clientOptions.project&&this.clientOptions.location||this.clientOptions.apiKey)&&!this.customBaseUrl)throw Error(`Authentication is not set up. Please provide either a project and location, or an API key, or a custom base URL.`);let n=e.project&&e.location||!!e.apiKey;this.customBaseUrl&&!n?(t.baseUrl=this.customBaseUrl,this.clientOptions.project=void 0,this.clientOptions.location=void 0):this.clientOptions.apiKey||this.clientOptions.location===`global`?t.baseUrl=`https://aiplatform.googleapis.com/`:this.clientOptions.project&&this.clientOptions.location&&Es.has(this.clientOptions.location)?t.baseUrl=`https://aiplatform.${this.clientOptions.location}.rep.googleapis.com/`:this.clientOptions.project&&this.clientOptions.location&&(t.baseUrl=`https://${this.clientOptions.location}-aiplatform.googleapis.com/`),t.apiVersion=this.clientOptions.apiVersion??ws}else this.clientOptions.apiKey||console.warn(`API key should be set when using the Gemini API.`),t.apiVersion=this.clientOptions.apiVersion??Ts,t.baseUrl=`https://generativelanguage.googleapis.com/`;t.headers=this.getDefaultHeaders(),this.clientOptions.httpOptions=t,e.httpOptions&&(this.clientOptions.httpOptions=this.patchHttpOptions(t,e.httpOptions))}isVertexAI(){return this.clientOptions.vertexai??!1}getProject(){return this.clientOptions.project}getLocation(){return this.clientOptions.location}getCustomBaseUrl(){return this.customBaseUrl}async getAuthHeaders(){let e=new Headers;return await this.clientOptions.auth.addAuthHeaders(e),e}getApiVersion(){if(this.clientOptions.httpOptions&&this.clientOptions.httpOptions.apiVersion!==void 0)return this.clientOptions.httpOptions.apiVersion;throw Error(`API version is not set.`)}getBaseUrl(){if(this.clientOptions.httpOptions&&this.clientOptions.httpOptions.baseUrl!==void 0)return this.clientOptions.httpOptions.baseUrl;throw Error(`Base URL is not set.`)}getRequestUrl(){return this.getRequestUrlInternal(this.clientOptions.httpOptions)}getHeaders(){if(this.clientOptions.httpOptions&&this.clientOptions.httpOptions.headers!==void 0)return this.clientOptions.httpOptions.headers;throw Error(`Headers are not set.`)}getRequestUrlInternal(e){if(!e||e.baseUrl===void 0||e.apiVersion===void 0)throw Error(`HTTP options are not correctly set.`);let t=[e.baseUrl.endsWith(`/`)?e.baseUrl.slice(0,-1):e.baseUrl];return e.apiVersion&&e.apiVersion!==``&&t.push(e.apiVersion),t.join(`/`)}getBaseResourcePath(){return`projects/${this.clientOptions.project}/locations/${this.clientOptions.location}`}getApiKey(){return this.clientOptions.apiKey}getWebsocketBaseUrl(){let e=this.getBaseUrl(),t=new URL(e);return t.protocol=t.protocol==`http:`?`ws`:`wss`,t.toString()}setBaseUrl(e){if(this.clientOptions.httpOptions)this.clientOptions.httpOptions.baseUrl=e;else throw Error(`HTTP options are not correctly set.`)}constructUrl(e,t,n){let r=[this.getRequestUrlInternal(t)];return n&&r.push(this.getBaseResourcePath()),e!==``&&r.push(e),new URL(`${r.join(`/`)}`)}shouldPrependVertexProjectPath(e,t){return!(t.baseUrl&&t.baseUrlResourceScope===Ie.COLLECTION||this.clientOptions.apiKey||!this.clientOptions.vertexai||e.path.startsWith(`projects/`)||e.httpMethod===`GET`&&e.path.startsWith(`publishers/google/models`))}async request(e){let t=this.clientOptions.httpOptions;e.httpOptions&&(t=this.patchHttpOptions(this.clientOptions.httpOptions,e.httpOptions));let n=this.shouldPrependVertexProjectPath(e,t),r=this.constructUrl(e.path,t,n);if(e.queryParams)for(let[t,n]of Object.entries(e.queryParams))r.searchParams.append(t,String(n));let i={};if(e.httpMethod===`GET`){if(e.body&&e.body!==`{}`)throw Error(`Request body should be empty for GET request, but got non empty request body`)}else i.body=e.body;return i=await this.includeExtraHttpOptionsToRequestInit(i,t,r.toString(),e.abortSignal),this.unaryApiCall(r,i,e.httpMethod)}patchHttpOptions(e,t){let n=JSON.parse(JSON.stringify(e));for(let[e,r]of Object.entries(t))typeof r==`object`?n[e]=Object.assign(Object.assign({},n[e]),r):r!==void 0&&(n[e]=r);return n}async requestStream(e){let t=this.clientOptions.httpOptions;e.httpOptions&&(t=this.patchHttpOptions(this.clientOptions.httpOptions,e.httpOptions));let n=this.shouldPrependVertexProjectPath(e,t),r=this.constructUrl(e.path,t,n);(!r.searchParams.has(`alt`)||r.searchParams.get(`alt`)!==`sse`)&&r.searchParams.set(`alt`,`sse`);let i={};return i.body=e.body,i=await this.includeExtraHttpOptionsToRequestInit(i,t,r.toString(),e.abortSignal),this.streamApiCall(r,i,e.httpMethod)}async includeExtraHttpOptionsToRequestInit(e,t,n,r){if(t&&t.timeout||r){let n=new AbortController,i=n.signal;if(t.timeout&&t?.timeout>0){let e=setTimeout(()=>n.abort(),t.timeout);e&&typeof e.unref==`function`&&e.unref()}r&&r.addEventListener(`abort`,()=>{n.abort()}),e.signal=i}return t&&t.extraBody!==null&&js(e,t.extraBody),e.headers=await this.getHeadersInternal(t,n),e}async unaryApiCall(e,t,n){return this.apiCall(e.toString(),Object.assign(Object.assign({},t),{method:n})).then(async e=>(await As(e),new ut(e))).catch(e=>{throw e instanceof Error?e:Error(JSON.stringify(e))})}async streamApiCall(e,t,n){return this.apiCall(e.toString(),Object.assign(Object.assign({},t),{method:n})).then(async e=>(await As(e),this.processStreamResponse(e))).catch(e=>{throw e instanceof Error?e:Error(JSON.stringify(e))})}processStreamResponse(e){return W(this,arguments,function*(){let t=(e?.body)?.getReader(),n=new TextDecoder(`utf-8`);if(!t)throw Error(`Response body is empty`);try{let r=``,i=[`
2
-
3
- `,`\r\r`,`\r
4
- \r
5
- `];for(;;){let{done:a,value:o}=yield U(t.read());if(a){if(r.trim().length>0)throw Error(`Incomplete JSON segment at the end`);break}let s=n.decode(o,{stream:!0});try{let e=JSON.parse(s);if(`error`in e){let t=JSON.parse(JSON.stringify(e.error)),n=t.status,r=t.code,i=`got status: ${n}. ${JSON.stringify(e)}`;if(r>=400&&r<600)throw new ci({message:i,status:r})}}catch(e){if(e.name===`ApiError`)throw e}r+=s;let c=-1,l=0;for(;;){c=-1,l=0;for(let e of i){let t=r.indexOf(e);t!==-1&&(c===-1||t<c)&&(c=t,l=e.length)}if(c===-1)break;let t=r.substring(0,c);r=r.substring(c+l);let n=t.trim();if(n.startsWith(`data:`)){let t=n.substring(5).trim();try{yield yield U(new ut(new Response(t,{headers:e?.headers,status:e?.status,statusText:e?.statusText})))}catch(e){throw Error(`exception parsing stream chunk ${t}. ${e}`)}}}}}finally{t.releaseLock()}})}async apiCall(e,t){if(!this.clientOptions.httpOptions||!this.clientOptions.httpOptions.retryOptions)return fetch(e,t);let n=this.clientOptions.httpOptions.retryOptions;return(0,s.default)(async()=>{let n=await fetch(e,t);if(n.ok)return n;throw Os.includes(n.status)?Error(`Retryable HTTP Error: ${n.statusText}`):new s.AbortError(`Non-retryable exception ${n.statusText} sending request`)},{retries:(n.attempts??Ds)-1})}getDefaultHeaders(){let e={},t=Cs+` `+this.clientOptions.userAgentExtra;return e[xs]=t,e[Ss]=t,e[ys]=`application/json`,e}async getHeadersInternal(e,t){let n=new Headers;if(e&&e.headers){for(let[t,r]of Object.entries(e.headers))n.append(t,r);e.timeout&&e.timeout>0&&n.append(bs,String(Math.ceil(e.timeout/1e3)))}return await this.clientOptions.auth.addAuthHeaders(n,t),n}getFileName(e){let t=``;return typeof e==`string`&&(t=e.replace(/[/\\]+$/,``),t=t.split(/[/\\]/).pop()??``),t}async uploadFile(e,t){let n={};t!=null&&(n.mimeType=t.mimeType,n.name=t.name,n.displayName=t.displayName),n.name&&!n.name.startsWith(`files/`)&&(n.name=`files/${n.name}`);let r=this.clientOptions.uploader,i=await r.stat(e);n.sizeBytes=String(i.size);let a=t?.mimeType??i.type;if(a===void 0||a===``)throw Error(`Can not determine mimeType. Please provide mimeType in the config.`);n.mimeType=a;let o={file:n},s=this.getFileName(e),c=p(`upload/v1beta/files`,o._url),l=await this.fetchUploadUrl(c,n.sizeBytes,n.mimeType,s,o,t?.httpOptions);return r.upload(e,l,this)}async uploadFileToFileSearchStore(e,t,n){let r=this.clientOptions.uploader,i=await r.stat(t),a=String(i.size),o=n?.mimeType??i.type;if(o===void 0||o===``)throw Error(`Can not determine mimeType. Please provide mimeType in the config.`);let s=`upload/v1beta/${e}:uploadToFileSearchStore`,c=this.getFileName(t),l={};n!=null&&gs(n,l);let u=await this.fetchUploadUrl(s,a,o,c,l,n?.httpOptions);return r.uploadToFileSearchStore(t,u,this)}async downloadFile(e){await this.clientOptions.downloader.download(e,this)}async fetchUploadUrl(e,t,n,r,i,a){let o={};o=a||{apiVersion:``,headers:Object.assign({"Content-Type":`application/json`,"X-Goog-Upload-Protocol":`resumable`,"X-Goog-Upload-Command":`start`,"X-Goog-Upload-Header-Content-Length":`${t}`,"X-Goog-Upload-Header-Content-Type":`${n}`},r?{"X-Goog-Upload-File-Name":r}:{})};let s=await this.request({path:e,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:o});if(!s||!s?.headers)throw Error(`Server did not return an HttpResponse or the returned HttpResponse did not have headers.`);let c=s?.headers?.[`x-goog-upload-url`];if(c===void 0)throw Error(`Failed to get upload url. Server did not return the x-google-upload-url in the headers`);return c}};async function As(e){if(e===void 0)throw Error(`response is undefined`);if(!e.ok){let t=e.status,n;n=e.headers.get(`content-type`)?.includes(`application/json`)?await e.json():{error:{message:await e.text(),code:e.status,status:e.statusText}};let r=JSON.stringify(n);throw t>=400&&t<600?new ci({message:r,status:t}):Error(r)}}function js(e,t){if(!t||Object.keys(t).length===0)return;if(e.body instanceof Blob){console.warn(`includeExtraBodyToRequestInit: extraBody provided but current request body is a Blob. extraBody will be ignored as merging is not supported for Blob bodies.`);return}let n={};if(typeof e.body==`string`&&e.body.length>0)try{let t=JSON.parse(e.body);if(typeof t==`object`&&t&&!Array.isArray(t))n=t;else{console.warn(`includeExtraBodyToRequestInit: Original request body is valid JSON but not a non-array object. Skip applying extraBody to the request body.`);return}}catch{console.warn(`includeExtraBodyToRequestInit: Original request body is not valid JSON. Skip applying extraBody to the request body.`);return}function r(e,t){let n=Object.assign({},e);for(let e in t)if(Object.prototype.hasOwnProperty.call(t,e)){let i=t[e],a=n[e];i&&typeof i==`object`&&!Array.isArray(i)&&a&&typeof a==`object`&&!Array.isArray(a)?n[e]=r(a,i):(a&&i&&typeof a!=typeof i&&console.warn(`includeExtraBodyToRequestInit:deepMerge: Type mismatch for key "${e}". Original type: ${typeof a}, New type: ${typeof i}. Overwriting.`),n[e]=i)}return n}let i=r(n,t);e.body=JSON.stringify(i)}var Ms=`mcp_used/unknown`,Ns=!1;function Ps(e){for(let t of e)if(Is(t)||typeof t==`object`&&`inputSchema`in t)return!0;return Ns}function Fs(e){e[Ss]=((e[Ss]??``)+` ${Ms}`).trimStart()}function Is(e){return typeof e==`object`&&!!e&&e instanceof Rs}function Ls(e){return W(this,arguments,function*(e,t=100){let n,r=0;for(;r<t;){let t=yield U(e.listTools({cursor:n}));for(let e of t.tools)yield yield U(e),r++;if(!t.nextCursor)break;n=t.nextCursor}})}var Rs=class e{constructor(e=[],t){this.mcpTools=[],this.functionNameToMcpClient={},this.mcpClients=e,this.config=t}static create(t,n){return new e(t,n)}async initialize(){var e,t,n,r;if(this.mcpTools.length>0)return;let i={},a=[];for(let l of this.mcpClients)try{for(var o=!0,s=(t=void 0,G(Ls(l))),c;c=await s.next(),e=c.done,!e;o=!0){r=c.value,o=!1;let e=r;a.push(e);let t=e.name;if(i[t])throw Error(`Duplicate function name ${t} found in MCP tools. Please ensure function names are unique.`);i[t]=l}}catch(e){t={error:e}}finally{try{!o&&!e&&(n=s.return)&&await n.call(s)}finally{if(t)throw t.error}}this.mcpTools=a,this.functionNameToMcpClient=i}async tool(){return await this.initialize(),mn(this.mcpTools,this.config)}async callTool(e){await this.initialize();let t=[];for(let n of e)if(n.name in this.functionNameToMcpClient){let e=this.functionNameToMcpClient[n.name],r;this.config.timeout&&(r={timeout:this.config.timeout});let i=await e.callTool({name:n.name,arguments:n.args},void 0,r);t.push({functionResponse:{name:n.name,response:i.isError?{error:i}:i}})}return t}};async function zs(e,t,n){let r=new Lt,i;i=n.data instanceof Blob?JSON.parse(await n.data.text()):JSON.parse(n.data),Object.assign(r,i),t(r)}var Bs=class{constructor(e,t,n){this.apiClient=e,this.auth=t,this.webSocketFactory=n}async connect(e){if(this.apiClient.isVertexAI())throw Error(`Live music is not supported for Vertex AI.`);console.warn(`Live music generation is experimental and may change in future versions.`);let t=this.apiClient.getWebsocketBaseUrl(),n=this.apiClient.getApiVersion(),r=Us(this.apiClient.getDefaultHeaders()),i=`${t}/ws/google.ai.generativelanguage.${n}.GenerativeService.BidiGenerateMusic?key=${this.apiClient.getApiKey()}`,a=()=>{},o=new Promise(e=>{a=e}),s=e.callbacks,c=function(){a({})},l=this.apiClient,u={onopen:c,onmessage:e=>{zs(l,s.onmessage,e)},onerror:s?.onerror??function(e){},onclose:s?.onclose??function(e){}},d=this.webSocketFactory.create(i,Hs(r),u);d.connect(),await o;let f={setup:{model:F(this.apiClient,e.model)}};return d.send(JSON.stringify(f)),new Vs(d,this.apiClient)}},Vs=class{constructor(e,t){this.conn=e,this.apiClient=t}async setWeightedPrompts(e){if(!e.weightedPrompts||Object.keys(e.weightedPrompts).length===0)throw Error(`Weighted prompts must be set and contain at least one entry.`);let t=Ii(e);this.conn.send(JSON.stringify({clientContent:t}))}async setMusicGenerationConfig(e){e.musicGenerationConfig||={};let t=Fi(e);this.conn.send(JSON.stringify(t))}sendPlaybackControl(e){let t={playbackControl:e};this.conn.send(JSON.stringify(t))}play(){this.sendPlaybackControl(lt.PLAY)}pause(){this.sendPlaybackControl(lt.PAUSE)}stop(){this.sendPlaybackControl(lt.STOP)}resetContext(){this.sendPlaybackControl(lt.RESET_CONTEXT)}close(){this.conn.close()}};function Hs(e){let t={};return e.forEach((e,n)=>{t[n]=e}),t}function Us(e){let t=new Headers;for(let[n,r]of Object.entries(e))t.append(n,r);return t}var Ws="FunctionResponse request must have an `id` field from the response of a ToolCall.FunctionalCalls in Google AI.";async function Gs(e,t,n){let r=new It,i;i=n.data instanceof Blob?await n.data.text():n.data instanceof ArrayBuffer?new TextDecoder().decode(n.data):n.data;let a=JSON.parse(i);if(e.isVertexAI()){let e=zi(a);Object.assign(r,e)}else Object.assign(r,a);t(r)}var Ks=class{constructor(e,t,n){this.apiClient=e,this.auth=t,this.webSocketFactory=n,this.music=new Bs(this.apiClient,this.auth,this.webSocketFactory)}async connect(e){if(e.config&&e.config.httpOptions)throw Error(`The Live module does not support httpOptions at request-level in LiveConnectConfig yet. Please use the client-level httpOptions configuration instead.`);let t=this.apiClient.getWebsocketBaseUrl(),n=this.apiClient.getApiVersion(),r,i=this.apiClient.getHeaders();e.config&&e.config.tools&&Ps(e.config.tools)&&Fs(i);let a=Xs(i);if(this.apiClient.isVertexAI()){let e=this.apiClient.getProject(),i=this.apiClient.getLocation(),o=this.apiClient.getApiKey(),s=!!e&&!!i||!!o;this.apiClient.getCustomBaseUrl()&&!s?r=t:(r=`${t}/ws/google.cloud.aiplatform.${n}.LlmBidiService/BidiGenerateContent`,await this.auth.addAuthHeaders(a,r))}else{let e=this.apiClient.getApiKey(),i=`BidiGenerateContent`,a=`key`;e?.startsWith(`auth_tokens/`)&&(console.warn(`Warning: Ephemeral token support is experimental and may change in future versions.`),n!==`v1alpha`&&console.warn(`Warning: The SDK's ephemeral token support is in v1alpha only. Please use const ai = new GoogleGenAI({apiKey: token.name, httpOptions: { apiVersion: 'v1alpha' }}); before session connection.`),i=`BidiGenerateContentConstrained`,a=`access_token`),r=`${t}/ws/google.ai.generativelanguage.${n}.GenerativeService.${i}?${a}=${e}`}let o=()=>{},s=new Promise(e=>{o=e}),c=e.callbacks,l=function(){var e;(e=c?.onopen)==null||e.call(c),o({})},u=this.apiClient,d={onopen:l,onmessage:e=>{Gs(u,c.onmessage,e)},onerror:c?.onerror??function(e){},onclose:c?.onclose??function(e){}},f=this.webSocketFactory.create(r,Ys(a),d);f.connect(),await s;let p=F(this.apiClient,e.model);if(this.apiClient.isVertexAI()&&p.startsWith(`publishers/`)){let e=this.apiClient.getProject(),t=this.apiClient.getLocation();e&&t&&(p=`projects/${e}/locations/${t}/`+p)}let m={};this.apiClient.isVertexAI()&&e.config?.responseModalities===void 0&&(e.config===void 0?e.config={responseModalities:[Ce.AUDIO]}:e.config.responseModalities=[Ce.AUDIO]),e.config?.generationConfig&&console.warn("Setting `LiveConnectConfig.generation_config` is deprecated, please set the fields on `LiveConnectConfig` directly. This will become an error in a future version (not before Q3 2025).");let h=e.config?.tools??[],g=[];for(let e of h)if(this.isCallableTool(e)){let t=e;g.push(await t.tool())}else g.push(e);g.length>0&&(e.config.tools=g);let _={model:p,config:e.config,callbacks:e.callbacks};return m=this.apiClient.isVertexAI()?Pi(this.apiClient,_):Ni(this.apiClient,_),delete m.config,f.send(JSON.stringify(m)),new Js(f,this.apiClient)}isCallableTool(e){return`callTool`in e&&typeof e.callTool==`function`}},qs={turnComplete:!0},Js=class{constructor(e,t){this.conn=e,this.apiClient=t}tLiveClientContent(e,t){if(t.turns!==null&&t.turns!==void 0){let n=[];try{n=L(t.turns),e.isVertexAI()||(n=n.map(e=>na(e)))}catch{throw Error(`Failed to parse client content "turns", type: '${typeof t.turns}'`)}return{clientContent:{turns:n,turnComplete:t.turnComplete}}}return{clientContent:{turnComplete:t.turnComplete}}}tLiveClienttToolResponse(e,t){let n=[];if(t.functionResponses==null||(n=Array.isArray(t.functionResponses)?t.functionResponses:[t.functionResponses],n.length===0))throw Error(`functionResponses is required.`);for(let t of n){if(typeof t!=`object`||!t||!(`name`in t)||!(`response`in t))throw Error(`Could not parse function response, type '${typeof t}'.`);if(!e.isVertexAI()&&!(`id`in t))throw Error(Ws)}return{toolResponse:{functionResponses:n}}}sendClientContent(e){e=Object.assign(Object.assign({},qs),e);let t=this.tLiveClientContent(this.apiClient,e);this.conn.send(JSON.stringify(t))}sendRealtimeInput(e){let t={};t=this.apiClient.isVertexAI()?{realtimeInput:Ri(e)}:{realtimeInput:Li(e)},this.conn.send(JSON.stringify(t))}sendToolResponse(e){if(e.functionResponses==null)throw Error(`Tool response parameters are required.`);let t=this.tLiveClienttToolResponse(this.apiClient,e);this.conn.send(JSON.stringify(t))}close(){this.conn.close()}};function Ys(e){let t={};return e.forEach((e,n)=>{t[n]=e}),t}function Xs(e){let t=new Headers;for(let[n,r]of Object.entries(e))t.append(n,r);return t}var Zs=10;function Qs(e){if(e?.automaticFunctionCalling?.disable)return!0;let t=!1;for(let n of e?.tools??[])if(q(n)){t=!0;break}if(!t)return!0;let n=e?.automaticFunctionCalling?.maximumRemoteCalls;return n&&(n<0||!Number.isInteger(n))||n==0?(console.warn(`Invalid maximumRemoteCalls value provided for automatic function calling. Disabled automatic function calling. Please provide a valid integer value greater than 0. maximumRemoteCalls provided:`,n),!0):!1}function q(e){return`callTool`in e&&typeof e.callTool==`function`}function $s(e){return(e.config?.tools)?.some(e=>q(e))??!1}function ec(e){let t=[];return e?.config?.tools&&e.config.tools.forEach((e,n)=>{if(q(e))return;let r=e;r.functionDeclarations&&r.functionDeclarations.length>0&&t.push(n)}),t}function tc(e){return!e?.automaticFunctionCalling?.ignoreCallHistory}var nc=class extends f{constructor(e){super(),this.apiClient=e,this.embedContent=async e=>{if(!this.apiClient.isVertexAI())return e.model.includes(`gemini-embedding-2`)&&(e.contents=L(e.contents)),await this.embedContentInternal(e);if(e.model.includes(`gemini`)&&e.model!==`gemini-embedding-001`||e.model.includes(`maas`)){let t=L(e.contents);if(t.length>1)throw Error(`The embedContent API for this model only supports one content at a time.`);let n=Object.assign(Object.assign({},e),{content:t[0],embeddingApiType:ze.EMBED_CONTENT});return await this.embedContentInternal(n)}else{let t=Object.assign(Object.assign({},e),{embeddingApiType:ze.PREDICT});return await this.embedContentInternal(t)}},this.generateContent=async e=>{let t=await this.processParamsMaybeAddMcpUsage(e);if(this.maybeMoveToResponseJsonSchem(e),!$s(e)||Qs(e.config))return await this.generateContentInternal(t);let n=ec(e);if(n.length>0){let e=n.map(e=>`tools[${e}]`).join(`, `);throw Error(`Automatic function calling with CallableTools (or MCP objects) and basic FunctionDeclarations is not yet supported. Incompatible tools found at ${e}.`)}let r,i,a=L(t.contents),o=t.config?.automaticFunctionCalling?.maximumRemoteCalls??Zs,s=0;for(;s<o&&(r=await this.generateContentInternal(t),!(!r.functionCalls||r.functionCalls.length===0));){let n=r.candidates[0].content,o=[];for(let t of e.config?.tools??[])if(q(t)){let e=await t.callTool(r.functionCalls);o.push(...e)}s++,i={role:`user`,parts:o},t.contents=L(t.contents),t.contents.push(n),t.contents.push(i),tc(t.config)&&(a.push(n),a.push(i))}return tc(t.config)&&(r.automaticFunctionCallingHistory=a),r},this.generateContentStream=async e=>{if(this.maybeMoveToResponseJsonSchem(e),Qs(e.config)){let t=await this.processParamsMaybeAddMcpUsage(e);return await this.generateContentStreamInternal(t)}let t=ec(e);if(t.length>0){let e=t.map(e=>`tools[${e}]`).join(`, `);throw Error(`Incompatible tools found at ${e}. Automatic function calling with CallableTools (or MCP objects) and basic FunctionDeclarations" is not yet supported.`)}let n=e?.config?.toolConfig?.functionCallingConfig?.streamFunctionCallArguments,r=e?.config?.automaticFunctionCalling?.disable;if(n&&!r)throw Error(`Running in streaming mode with 'streamFunctionCallArguments' enabled, this feature is not compatible with automatic function calling (AFC). Please set 'config.automaticFunctionCalling.disable' to true to disable AFC or leave 'config.toolConfig.functionCallingConfig.streamFunctionCallArguments' to be undefined or set to false to disable streaming function call arguments feature.`);return await this.processAfcStream(e)},this.generateImages=async e=>await this.generateImagesInternal(e).then(e=>{let t,n=[];if(e?.generatedImages)for(let r of e.generatedImages)r&&r?.safetyAttributes&&r?.safetyAttributes?.contentType===`Positive Prompt`?t=r?.safetyAttributes:n.push(r);let r;return r=t?{generatedImages:n,positivePromptSafetyAttributes:t,sdkHttpResponse:e.sdkHttpResponse}:{generatedImages:n,sdkHttpResponse:e.sdkHttpResponse},r}),this.list=async e=>{let t={config:Object.assign(Object.assign({},{queryBase:!0}),e?.config)};if(this.apiClient.isVertexAI()&&!t.config.queryBase){if(t.config?.filter)throw Error(`Filtering tuned models list for Vertex AI is not currently supported`);t.config.filter=`labels.tune-type:*`}return new V(B.PAGED_ITEM_MODELS,e=>this.listInternal(e),await this.listInternal(t),t)},this.editImage=async e=>{let t={model:e.model,prompt:e.prompt,referenceImages:[],config:e.config};return e.referenceImages&&e.referenceImages&&(t.referenceImages=e.referenceImages.map(e=>e.toReferenceImageAPI())),await this.editImageInternal(t)},this.upscaleImage=async e=>{let t={numberOfImages:1,mode:`upscale`};e.config&&(t=Object.assign(Object.assign({},t),e.config));let n={model:e.model,image:e.image,upscaleFactor:e.upscaleFactor,config:t};return await this.upscaleImageInternal(n)},this.generateVideos=async e=>{if((e.prompt||e.image||e.video)&&e.source)throw Error(`Source and prompt/image/video are mutually exclusive. Please only use source.`);return this.apiClient.isVertexAI()||(e.video?.uri&&e.video?.videoBytes?e.video={uri:e.video.uri,mimeType:e.video.mimeType}:e.source?.video?.uri&&e.source?.video?.videoBytes&&(e.source.video={uri:e.source.video.uri,mimeType:e.source.video.mimeType})),await this.generateVideosInternal(e)}}maybeMoveToResponseJsonSchem(e){e.config&&e.config.responseSchema&&(e.config.responseJsonSchema||Object.keys(e.config.responseSchema).includes(`$schema`)&&(e.config.responseJsonSchema=e.config.responseSchema,delete e.config.responseSchema))}async processParamsMaybeAddMcpUsage(e){let t=e.config?.tools;if(!t)return e;let n=await Promise.all(t.map(async e=>q(e)?await e.tool():e)),r={model:e.model,contents:e.contents,config:Object.assign(Object.assign({},e.config),{tools:n})};if(r.config.tools=n,e.config&&e.config.tools&&Ps(e.config.tools)){let t=e.config.httpOptions?.headers??{},n=Object.assign({},t);Object.keys(n).length===0&&(n=this.apiClient.getDefaultHeaders()),Fs(n),r.config.httpOptions=Object.assign(Object.assign({},e.config.httpOptions),{headers:n})}return r}async initAfcToolsMap(e){let t=new Map;for(let n of e.config?.tools??[])if(q(n)){let e=n,r=await e.tool();for(let n of r.functionDeclarations??[]){if(!n.name)throw Error(`Function declaration name is required.`);if(t.has(n.name))throw Error(`Duplicate tool declaration name: ${n.name}`);t.set(n.name,e)}}return t}async processAfcStream(e){let t=e.config?.automaticFunctionCalling?.maximumRemoteCalls??Zs,n=!1,r=0,i=await this.initAfcToolsMap(e);return(function(e,i,a){return W(this,arguments,function*(){for(var o,s,c,l;r<t;){n&&=(r++,!1);let p=yield U(e.processParamsMaybeAddMcpUsage(a)),m=yield U(e.generateContentStreamInternal(p)),h=[],g=[];try{for(var u=!0,d=(s=void 0,G(m)),f;f=yield U(d.next()),o=f.done,!o;u=!0){l=f.value,u=!1;let e=l;if(yield yield U(e),e.candidates&&e.candidates[0]?.content){g.push(e.candidates[0].content);for(let n of e.candidates[0].content.parts??[])if(r<t&&n.functionCall){if(!n.functionCall.name)throw Error(`Function call name was not returned by the model.`);if(i.has(n.functionCall.name)){let e=yield U(i.get(n.functionCall.name).callTool([n.functionCall]));h.push(...e)}else throw Error(`Automatic function calling was requested, but not all the tools the model used implement the CallableTool interface. Available tools: ${i.keys()}, mising tool: ${n.functionCall.name}`)}}}}catch(e){s={error:e}}finally{try{!u&&!o&&(c=d.return)&&(yield U(c.call(d)))}finally{if(s)throw s.error}}if(h.length>0){n=!0;let e=new dt;e.candidates=[{content:{role:`user`,parts:h}}],yield yield U(e);let t=[];t.push(...g),t.push({role:`user`,parts:h}),a.contents=L(a.contents).concat(t)}else break}})})(this,i,e)}async generateContentInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Ma(this.apiClient,e);return n=p(`{model}:generateContent`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Pa(e),n=new dt;return Object.assign(n,t),n})}else{let i=ja(this.apiClient,e);return n=p(`{model}:generateContent`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Na(e),n=new dt;return Object.assign(n,t),n})}}async generateContentStreamInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Ma(this.apiClient,e);return n=p(`{model}:streamGenerateContent?alt=sse`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.requestStream({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}),t.then(function(t){return W(this,arguments,function*(){var n,r,i,a;try{for(var o=!0,s=G(t),c;c=yield U(s.next()),n=c.done,!n;o=!0){a=c.value,o=!1;let t=a,n=Pa(yield U(t.json()),e);n.sdkHttpResponse={headers:t.headers};let r=new dt;Object.assign(r,n),yield yield U(r)}}catch(e){r={error:e}}finally{try{!o&&!n&&(i=s.return)&&(yield U(i.call(s)))}finally{if(r)throw r.error}}})})}else{let i=ja(this.apiClient,e);return n=p(`{model}:streamGenerateContent?alt=sse`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.requestStream({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}),t.then(function(t){return W(this,arguments,function*(){var n,r,i,a;try{for(var o=!0,s=G(t),c;c=yield U(s.next()),n=c.done,!n;o=!0){a=c.value,o=!1;let t=a,n=Na(yield U(t.json()),e);n.sdkHttpResponse={headers:t.headers};let r=new dt;Object.assign(r,n),yield yield U(r)}}catch(e){r={error:e}}finally{try{!o&&!n&&(i=s.return)&&(yield U(i.call(s)))}finally{if(r)throw r.error}}})})}}async embedContentInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=xa(this.apiClient,e,e);return n=p(bn(e.model)?`{model}:embedContent`:`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(t=>{let n=Ca(t,e),r=new ft;return Object.assign(r,n),r})}else{let i=ba(this.apiClient,e);return n=p(`{model}:batchEmbedContents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Sa(e),n=new ft;return Object.assign(n,t),n})}}async generateImagesInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Ra(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Ba(e),n=new pt;return Object.assign(n,t),n})}else{let i=La(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=za(e),n=new pt;return Object.assign(n,t),n})}}async editImageInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=ga(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=_a(e),n=new mt;return Object.assign(n,t),n})}else throw Error(`This method is only supported by the Vertex AI.`)}async upscaleImageInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Yo(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=Xo(e),n=new ht;return Object.assign(n,t),n})}else throw Error(`This method is only supported by the Vertex AI.`)}async recontextImage(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Eo(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=Do(e),n=new gt;return Object.assign(n,t),n})}else throw Error(`This method is only supported by the Vertex AI.`)}async segmentImage(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Fo(this.apiClient,e);return n=p(`{model}:predict`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=Io(e),n=new _t;return Object.assign(n,t),n})}else throw Error(`This method is only supported by the Vertex AI.`)}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=io(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>xo(e))}else{let i=ro(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>bo(e))}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=go(this.apiClient,e);return n=p(`{models_url}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=vo(e),n=new vt;return Object.assign(n,t),n})}else{let i=ho(this.apiClient,e);return n=p(`{models_url}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=_o(e),n=new vt;return Object.assign(n,t),n})}}async update(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=qo(this.apiClient,e);return n=p(`{model}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`PATCH`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>xo(e))}else{let i=Ko(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`PATCH`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>bo(e))}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=fa(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=ma(e),n=new yt;return Object.assign(n,t),n})}else{let i=da(this.apiClient,e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=pa(e),n=new yt;return Object.assign(n,t),n})}}async countTokens(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=ca(this.apiClient,e);return n=p(`{model}:countTokens`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=ua(e),n=new bt;return Object.assign(n,t),n})}else{let i=sa(this.apiClient,e);return n=p(`{model}:countTokens`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=la(e),n=new bt;return Object.assign(n,t),n})}}async computeTokens(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Qi(this.apiClient,e);return n=p(`{model}:computeTokens`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=$i(e),n=new xt;return Object.assign(n,t),n})}else throw Error(`This method is only supported by the Vertex AI.`)}async generateVideosInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Ka(this.apiClient,e);return n=p(`{model}:predictLongRunning`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=Wa(e),n=new St;return Object.assign(n,t),n})}else{let i=Ga(this.apiClient,e);return n=p(`{model}:predictLongRunning`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=Ua(e),n=new St;return Object.assign(n,t),n})}}},rc=class extends f{constructor(e){super(),this.apiClient=e}async getVideosOperation(e){let t=e.operation,n=e.config;if(t.name===void 0||t.name===``)throw Error(`Operation name is required.`);if(this.apiClient.isVertexAI()){let e=t.name.split(`/operations/`)[0],r;n&&`httpOptions`in n&&(r=n.httpOptions);let i=await this.fetchPredictVideosOperationInternal({operationName:t.name,resourceName:e,config:{httpOptions:r}});return t._fromAPIResponse({apiResponse:i,_isVertexAI:!0})}else{let e=await this.getVideosOperationInternal({operationName:t.name,config:n});return t._fromAPIResponse({apiResponse:e,_isVertexAI:!1})}}async get(e){let t=e.operation,n=e.config;if(t.name===void 0||t.name===``)throw Error(`Operation name is required.`);if(this.apiClient.isVertexAI()){let e=t.name.split(`/operations/`)[0],r;n&&`httpOptions`in n&&(r=n.httpOptions);let i=await this.fetchPredictVideosOperationInternal({operationName:t.name,resourceName:e,config:{httpOptions:r}});return t._fromAPIResponse({apiResponse:i,_isVertexAI:!0})}else{let e=await this.getVideosOperationInternal({operationName:t.name,config:n});return t._fromAPIResponse({apiResponse:e,_isVertexAI:!1})}}async getVideosOperationInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=D(e);return n=p(`{operationName}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t}else{let i=E(e);return n=p(`{operationName}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t}}async fetchPredictVideosOperationInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=y(e);return n=p(`{resourceName}:fetchPredictOperation`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t}else throw Error(`This method is only supported by the Vertex AI.`)}};function ic(e){let t={};if(h(e,[`languageCodes`])!==void 0)throw Error(`languageCodes parameter is not supported in Gemini API.`);return t}function ac(e){let t={},n=h(e,[`apiKey`]);if(n!=null&&m(t,[`apiKey`],n),h(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(h(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(h(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(h(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(h(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(h(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function oc(e){let t={},n=h(e,[`data`]);if(n!=null&&m(t,[`data`],n),h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function sc(e){let t={},n=h(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>gc(e))),m(t,[`parts`],e)}let r=h(e,[`role`]);return r!=null&&m(t,[`role`],r),t}function cc(e,t,n){let r={},i=h(t,[`expireTime`]);n!==void 0&&i!=null&&m(n,[`expireTime`],i);let a=h(t,[`newSessionExpireTime`]);n!==void 0&&a!=null&&m(n,[`newSessionExpireTime`],a);let o=h(t,[`uses`]);n!==void 0&&o!=null&&m(n,[`uses`],o);let s=h(t,[`liveConnectConstraints`]);n!==void 0&&s!=null&&m(n,[`bidiGenerateContentSetup`],hc(e,s));let c=h(t,[`lockAdditionalFields`]);return n!==void 0&&c!=null&&m(n,[`fieldMask`],c),r}function lc(e,t){let n={},r=h(t,[`config`]);return r!=null&&m(n,[`config`],cc(e,r,n)),n}function uc(e){let t={};if(h(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=h(e,[`fileUri`]);n!=null&&m(t,[`fileUri`],n);let r=h(e,[`mimeType`]);return r!=null&&m(t,[`mimeType`],r),t}function dc(e){let t={},n=h(e,[`id`]);n!=null&&m(t,[`id`],n);let r=h(e,[`args`]);r!=null&&m(t,[`args`],r);let i=h(e,[`name`]);if(i!=null&&m(t,[`name`],i),h(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(h(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function fc(e){let t={},n=h(e,[`authConfig`]);n!=null&&m(t,[`authConfig`],ac(n));let r=h(e,[`enableWidget`]);return r!=null&&m(t,[`enableWidget`],r),t}function pc(e){let t={},n=h(e,[`searchTypes`]);if(n!=null&&m(t,[`searchTypes`],n),h(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(h(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=h(e,[`timeRangeFilter`]);return r!=null&&m(t,[`timeRangeFilter`],r),t}function mc(e,t){let n={},r=h(e,[`generationConfig`]);t!==void 0&&r!=null&&m(t,[`setup`,`generationConfig`],r);let i=h(e,[`responseModalities`]);t!==void 0&&i!=null&&m(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=h(e,[`temperature`]);t!==void 0&&a!=null&&m(t,[`setup`,`generationConfig`,`temperature`],a);let o=h(e,[`topP`]);t!==void 0&&o!=null&&m(t,[`setup`,`generationConfig`,`topP`],o);let s=h(e,[`topK`]);t!==void 0&&s!=null&&m(t,[`setup`,`generationConfig`,`topK`],s);let c=h(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&m(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=h(e,[`mediaResolution`]);t!==void 0&&l!=null&&m(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=h(e,[`seed`]);t!==void 0&&u!=null&&m(t,[`setup`,`generationConfig`,`seed`],u);let d=h(e,[`speechConfig`]);t!==void 0&&d!=null&&m(t,[`setup`,`generationConfig`,`speechConfig`],en(d));let f=h(e,[`thinkingConfig`]);t!==void 0&&f!=null&&m(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=h(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&m(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let g=h(e,[`systemInstruction`]);t!==void 0&&g!=null&&m(t,[`setup`,`systemInstruction`],sc(I(g)));let _=h(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>yc(tn(e)))),m(t,[`setup`,`tools`],e)}let v=h(e,[`sessionResumption`]);t!==void 0&&v!=null&&m(t,[`setup`,`sessionResumption`],vc(v));let y=h(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&m(t,[`setup`,`inputAudioTranscription`],ic(y));let b=h(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&m(t,[`setup`,`outputAudioTranscription`],ic(b));let x=h(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&m(t,[`setup`,`realtimeInputConfig`],x);let S=h(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&m(t,[`setup`,`contextWindowCompression`],S);let C=h(e,[`proactivity`]);if(t!==void 0&&C!=null&&m(t,[`setup`,`proactivity`],C),h(e,[`explicitVadSignal`])!==void 0)throw Error(`explicitVadSignal parameter is not supported in Gemini API.`);let w=h(e,[`avatarConfig`]);t!==void 0&&w!=null&&m(t,[`setup`,`avatarConfig`],w);let T=h(e,[`safetySettings`]);if(t!==void 0&&T!=null){let e=T;Array.isArray(e)&&(e=e.map(e=>_c(e))),m(t,[`setup`,`safetySettings`],e)}return n}function hc(e,t){let n={},r=h(t,[`model`]);r!=null&&m(n,[`setup`,`model`],F(e,r));let i=h(t,[`config`]);return i!=null&&m(n,[`config`],mc(i,n)),n}function gc(e){let t={},n=h(e,[`mediaResolution`]);n!=null&&m(t,[`mediaResolution`],n);let r=h(e,[`codeExecutionResult`]);r!=null&&m(t,[`codeExecutionResult`],r);let i=h(e,[`executableCode`]);i!=null&&m(t,[`executableCode`],i);let a=h(e,[`fileData`]);a!=null&&m(t,[`fileData`],uc(a));let o=h(e,[`functionCall`]);o!=null&&m(t,[`functionCall`],dc(o));let s=h(e,[`functionResponse`]);s!=null&&m(t,[`functionResponse`],s);let c=h(e,[`inlineData`]);c!=null&&m(t,[`inlineData`],oc(c));let l=h(e,[`text`]);l!=null&&m(t,[`text`],l);let u=h(e,[`thought`]);u!=null&&m(t,[`thought`],u);let d=h(e,[`thoughtSignature`]);d!=null&&m(t,[`thoughtSignature`],d);let f=h(e,[`videoMetadata`]);f!=null&&m(t,[`videoMetadata`],f);let p=h(e,[`toolCall`]);p!=null&&m(t,[`toolCall`],p);let g=h(e,[`toolResponse`]);g!=null&&m(t,[`toolResponse`],g);let _=h(e,[`partMetadata`]);return _!=null&&m(t,[`partMetadata`],_),t}function _c(e){let t={},n=h(e,[`category`]);if(n!=null&&m(t,[`category`],n),h(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let r=h(e,[`threshold`]);return r!=null&&m(t,[`threshold`],r),t}function vc(e){let t={},n=h(e,[`handle`]);if(n!=null&&m(t,[`handle`],n),h(e,[`transparent`])!==void 0)throw Error(`transparent parameter is not supported in Gemini API.`);return t}function yc(e){let t={};if(h(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=h(e,[`computerUse`]);n!=null&&m(t,[`computerUse`],n);let r=h(e,[`fileSearch`]);r!=null&&m(t,[`fileSearch`],r);let i=h(e,[`googleSearch`]);i!=null&&m(t,[`googleSearch`],pc(i));let a=h(e,[`googleMaps`]);a!=null&&m(t,[`googleMaps`],fc(a));let o=h(e,[`codeExecution`]);if(o!=null&&m(t,[`codeExecution`],o),h(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=h(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`functionDeclarations`],e)}let c=h(e,[`googleSearchRetrieval`]);if(c!=null&&m(t,[`googleSearchRetrieval`],c),h(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=h(e,[`urlContext`]);l!=null&&m(t,[`urlContext`],l);let u=h(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`mcpServers`],e)}return t}function bc(e){let t=[];for(let n in e)if(Object.prototype.hasOwnProperty.call(e,n)){let r=e[n];if(typeof r==`object`&&r&&Object.keys(r).length>0){let e=Object.keys(r).map(e=>`${n}.${e}`);t.push(...e)}else t.push(n)}return t.join(`,`)}function xc(e,t){let n=null,r=e.bidiGenerateContentSetup;if(typeof r==`object`&&r&&`setup`in r){let t=r.setup;typeof t==`object`&&t?(e.bidiGenerateContentSetup=t,n=t):delete e.bidiGenerateContentSetup}else r!==void 0&&delete e.bidiGenerateContentSetup;let i=e.fieldMask;if(n){let r=bc(n);if(Array.isArray(t?.lockAdditionalFields)&&t?.lockAdditionalFields.length===0)r?e.fieldMask=r:delete e.fieldMask;else if(t?.lockAdditionalFields&&t.lockAdditionalFields.length>0&&i!==null&&Array.isArray(i)&&i.length>0){let t=[`temperature`,`topK`,`topP`,`maxOutputTokens`,`responseModalities`,`seed`,`speechConfig`],n=[];i.length>0&&(n=i.map(e=>t.includes(e)?`generationConfig.${e}`:e));let a=[];r&&a.push(r),n.length>0&&a.push(...n),a.length>0?e.fieldMask=a.join(`,`):delete e.fieldMask}else delete e.fieldMask}else i!==null&&Array.isArray(i)&&i.length>0?e.fieldMask=i.join(`,`):delete e.fieldMask;return e}var Sc=class extends f{constructor(e){super(),this.apiClient=e}async create(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`The client.tokens.create method is only supported by the Gemini Developer API.`);{let i=lc(this.apiClient,e);n=p(`auth_tokens`,i._url),r=i._query,delete i.config,delete i._url,delete i._query;let a=xc(i,e.config);return t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(a),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}};function Cc(e,t){let n={},r=h(e,[`force`]);return t!==void 0&&r!=null&&m(t,[`_query`,`force`],r),n}function wc(e){let t={},n=h(e,[`name`]);n!=null&&m(t,[`_url`,`name`],n);let r=h(e,[`config`]);return r!=null&&Cc(r,t),t}function Tc(e){let t={},n=h(e,[`name`]);return n!=null&&m(t,[`_url`,`name`],n),t}function Ec(e,t){let n={},r=h(e,[`pageSize`]);t!==void 0&&r!=null&&m(t,[`_query`,`pageSize`],r);let i=h(e,[`pageToken`]);return t!==void 0&&i!=null&&m(t,[`_query`,`pageToken`],i),n}function Dc(e){let t={},n=h(e,[`parent`]);n!=null&&m(t,[`_url`,`parent`],n);let r=h(e,[`config`]);return r!=null&&Ec(r,t),t}function Oc(e){let t={},n=h(e,[`sdkHttpResponse`]);n!=null&&m(t,[`sdkHttpResponse`],n);let r=h(e,[`nextPageToken`]);r!=null&&m(t,[`nextPageToken`],r);let i=h(e,[`documents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),m(t,[`documents`],e)}return t}var kc=class extends f{constructor(e){super(),this.apiClient=e,this.list=async e=>new V(B.PAGED_ITEM_DOCUMENTS,t=>this.listInternal({parent:e.parent,config:t.config}),await this.listInternal(e),e)}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=Tc(e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async delete(e){let t=``,n={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let r=wc(e);t=p(`{name}`,r._url),n=r._query,delete r._url,delete r._query,await this.apiClient.request({path:t,queryParams:n,body:JSON.stringify(r),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal})}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=Dc(e);return n=p(`{parent}/documents`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=Oc(e),n=new Dt;return Object.assign(n,t),n})}}},Ac=class extends f{constructor(e,t=new kc(e)){super(),this.apiClient=e,this.documents=t,this.list=async(e={})=>new V(B.PAGED_ITEM_FILE_SEARCH_STORES,e=>this.listInternal(e),await this.listInternal(e),e)}async uploadToFileSearchStore(e){if(this.apiClient.isVertexAI())throw Error(`Vertex AI does not support uploading files to a file search store.`);return this.apiClient.uploadFileToFileSearchStore(e.fileSearchStoreName,e.file,e.config)}async create(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=as(e);return n=p(`fileSearchStores`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=cs(e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>e)}}async delete(e){let t=``,n={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let r=ss(e);t=p(`{name}`,r._url),n=r._query,delete r._url,delete r._query,await this.apiClient.request({path:t,queryParams:n,body:JSON.stringify(r),httpMethod:`DELETE`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal})}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=ms(e);return n=p(`fileSearchStores`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=hs(e),n=new Ot;return Object.assign(n,t),n})}}async uploadToFileSearchStoreInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=_s(e);return n=p(`upload/v1beta/{file_search_store_name}:uploadToFileSearchStore`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=vs(e),n=new kt;return Object.assign(n,t),n})}}async importFile(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=ds(e);return n=p(`{file_search_store_name}:importFile`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json()),t.then(e=>{let t=us(e),n=new At;return Object.assign(n,t),n})}}},jc=function(){let{crypto:e}=globalThis;if(e?.randomUUID)return jc=e.randomUUID.bind(e),e.randomUUID();let t=new Uint8Array(1),n=e?()=>e.getRandomValues(t)[0]:()=>Math.random()*255&255;return`10000000-1000-4000-8000-100000000000`.replace(/[018]/g,e=>(e^n()&15>>e/4).toString(16))},Mc=()=>jc();function Nc(e){return typeof e==`object`&&!!e&&(`name`in e&&e.name===`AbortError`||`message`in e&&String(e.message).includes(`FetchRequestCanceledException`))}var Pc=e=>{if(e instanceof Error)return e;if(typeof e==`object`&&e){try{if(Object.prototype.toString.call(e)===`[object Error]`){let t=Error(e.message,e.cause?{cause:e.cause}:{});return e.stack&&(t.stack=e.stack),e.cause&&!t.cause&&(t.cause=e.cause),e.name&&(t.name=e.name),t}}catch{}try{return Error(JSON.stringify(e))}catch{}}return Error(e)},J=class extends Error{},Y=class e extends J{constructor(t,n,r,i){super(`${e.makeMessage(t,n,r)}`),this.status=t,this.headers=i,this.error=n}static makeMessage(e,t,n){let r=t?.message?typeof t.message==`string`?t.message:JSON.stringify(t.message):t?JSON.stringify(t):n;return e&&r?`${e} ${r}`:e?`${e} status code (no body)`:r||`(no status code or body)`}static generate(t,n,r,i){if(!t||!i)return new Ic({message:r,cause:Pc(n)});let a=n;return t===400?new Rc(t,a,r,i):t===401?new zc(t,a,r,i):t===403?new Bc(t,a,r,i):t===404?new Vc(t,a,r,i):t===409?new Hc(t,a,r,i):t===422?new Uc(t,a,r,i):t===429?new Wc(t,a,r,i):t>=500?new Gc(t,a,r,i):new e(t,a,r,i)}},Fc=class extends Y{constructor({message:e}={}){super(void 0,void 0,e||`Request was aborted.`,void 0)}},Ic=class extends Y{constructor({message:e,cause:t}){super(void 0,void 0,e||`Connection error.`,void 0),t&&(this.cause=t)}},Lc=class extends Ic{constructor({message:e}={}){super({message:e??`Request timed out.`})}},Rc=class extends Y{},zc=class extends Y{},Bc=class extends Y{},Vc=class extends Y{},Hc=class extends Y{},Uc=class extends Y{},Wc=class extends Y{},Gc=class extends Y{},Kc=/^[a-z][a-z0-9+.-]*:/i,qc=e=>Kc.test(e),Jc=e=>(Jc=Array.isArray,Jc(e)),Yc=Jc;function Xc(e){if(!e)return!0;for(let t in e)return!1;return!0}function Zc(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var Qc=(e,t)=>{if(typeof t!=`number`||!Number.isInteger(t))throw new J(`${e} must be an integer`);if(t<0)throw new J(`${e} must be a positive integer`);return t},$c=e=>{try{return JSON.parse(e)}catch{return}},el=e=>new Promise(t=>setTimeout(t,e));function tl(){if(typeof fetch<`u`)return fetch;throw Error("`fetch` is not defined as a global; Either pass `fetch` to the client, `new GeminiNextGenAPIClient({ fetch })` or polyfill the global, `globalThis.fetch = fetch`")}function nl(...e){let t=globalThis.ReadableStream;if(t===void 0)throw Error("`ReadableStream` is not defined as a global; You will need to polyfill it, `globalThis.ReadableStream = ReadableStream`");return new t(...e)}function rl(e){let t=Symbol.asyncIterator in e?e[Symbol.asyncIterator]():e[Symbol.iterator]();return nl({start(){},async pull(e){let{done:n,value:r}=await t.next();n?e.close():e.enqueue(r)},async cancel(){await t.return?.call(t)}})}function il(e){if(e[Symbol.asyncIterator])return e;let t=e.getReader();return{async next(){try{let e=await t.read();return e?.done&&t.releaseLock(),e}catch(e){throw t.releaseLock(),e}},async return(){let e=t.cancel();return t.releaseLock(),await e,{done:!0,value:void 0}},[Symbol.asyncIterator](){return this}}}async function al(e){var t;if(typeof e!=`object`||!e)return;if(e[Symbol.asyncIterator]){await(t=e[Symbol.asyncIterator]()).return?.call(t);return}let n=e.getReader(),r=n.cancel();n.releaseLock(),await r}var ol=({headers:e,body:t})=>({bodyHeaders:{"content-type":`application/json`},body:JSON.stringify(t)});function sl(e){return Object.entries(e).filter(([e,t])=>t!==void 0).map(([e,t])=>{if(typeof t==`string`||typeof t==`number`||typeof t==`boolean`)return`${encodeURIComponent(e)}=${encodeURIComponent(t)}`;if(t===null)return`${encodeURIComponent(e)}=`;throw new J(`Cannot stringify type ${typeof t}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`)}).join(`&`)}var cl=`0.0.1`,ll=()=>{if(typeof File>`u`){let{process:e}=globalThis,t=typeof e?.versions?.node==`string`&&parseInt(e.versions.node.split(`.`))<20;throw Error("`File` is not defined as a global, which is required for file uploads."+(t?" Update to Node 20 LTS or newer, or set `globalThis.File` to `import('node:buffer').File`.":``))}};function ul(e,t,n){return ll(),new File(e,t??`unknown_file`,n)}function dl(e){return(typeof e==`object`&&!!e&&(`name`in e&&e.name&&String(e.name)||`url`in e&&e.url&&String(e.url)||`filename`in e&&e.filename&&String(e.filename)||`path`in e&&e.path&&String(e.path))||``).split(/[\\/]/).pop()||void 0}var fl=e=>typeof e==`object`&&!!e&&typeof e[Symbol.asyncIterator]==`function`,pl=e=>typeof e==`object`&&!!e&&typeof e.size==`number`&&typeof e.type==`string`&&typeof e.text==`function`&&typeof e.slice==`function`&&typeof e.arrayBuffer==`function`,ml=e=>typeof e==`object`&&!!e&&typeof e.name==`string`&&typeof e.lastModified==`number`&&pl(e),hl=e=>typeof e==`object`&&!!e&&typeof e.url==`string`&&typeof e.blob==`function`;async function gl(e,t,n){if(ll(),e=await e,ml(e))return e instanceof File?e:ul([await e.arrayBuffer()],e.name);if(hl(e)){let r=await e.blob();return t||=new URL(e.url).pathname.split(/[\\/]/).pop(),ul(await _l(r),t,n)}let r=await _l(e);if(t||=dl(e),!n?.type){let e=r.find(e=>typeof e==`object`&&`type`in e&&e.type);typeof e==`string`&&(n=Object.assign(Object.assign({},n),{type:e}))}return ul(r,t,n)}async function _l(e){var t,n,r,i;let a=[];if(typeof e==`string`||ArrayBuffer.isView(e)||e instanceof ArrayBuffer)a.push(e);else if(pl(e))a.push(e instanceof Blob?e:await e.arrayBuffer());else if(fl(e))try{for(var o=!0,s=G(e),c;c=await s.next(),t=c.done,!t;o=!0){i=c.value,o=!1;let e=i;a.push(...await _l(e))}}catch(e){n={error:e}}finally{try{!o&&!t&&(r=s.return)&&await r.call(s)}finally{if(n)throw n.error}}else{let t=e?.constructor?.name;throw Error(`Unexpected data type: ${typeof e}${t?`; constructor: ${t}`:``}${vl(e)}`)}return a}function vl(e){return typeof e!=`object`||!e?``:`; props: [${Object.getOwnPropertyNames(e).map(e=>`"${e}"`).join(`, `)}]`}var yl=class{constructor(e){this._client=e}};yl._key=[];function bl(e){return e.replace(/[^A-Za-z0-9\-._~!$&'()*+,;=:@]+/g,encodeURIComponent)}var xl=Object.freeze(Object.create(null)),X=((e=bl)=>(function(t,...n){if(t.length===1)return t[0];let r=!1,i=[],a=t.reduce((t,a,o)=>{/[?#]/.test(a)&&(r=!0);let s=n[o],c=(r?encodeURIComponent:e)(``+s);return o!==n.length&&(s==null||typeof s==`object`&&s.toString===Object.getPrototypeOf(Object.getPrototypeOf(s.hasOwnProperty??xl)??xl)?.toString)&&(c=s+``,i.push({start:t.length+a.length,length:c.length,error:`Value of type ${Object.prototype.toString.call(s).slice(8,-1)} is not a valid path parameter`})),t+a+(o===n.length?``:c)},``),o=a.split(/[?#]/,1)[0],s=/(^|\/)(?:\.|%2e){1,2}(?=\/|$)/gi,c;for(;(c=s.exec(o))!==null;){let e=c[0].startsWith(`/`),t=+!!e,n=e?c[0].slice(1):c[0];i.push({start:c.index+t,length:n.length,error:`Value "${n}" can\'t be safely passed as a path parameter`})}if(i.sort((e,t)=>e.start-t.start),i.length>0){let e=0,t=i.reduce((t,n)=>{let r=` `.repeat(n.start-e),i=`^`.repeat(n.length);return e=n.start+n.length,t+r+i},``);throw new J(`Path parameters result in path with invalid segments:\n${i.map(e=>e.error).join(`
6
- `)}\n${a}\n${t}`)}return a}))(bl),Sl=class extends yl{create(e,t){let{api_version:n=this._client.apiVersion}=e,r=H(e,[`api_version`]);if(`model`in r&&`agent_config`in r)throw new J("Invalid request: specified `model` and `agent_config`. If specifying `model`, use `generation_config`.");if(`agent`in r&&`generation_config`in r)throw new J("Invalid request: specified `agent` and `generation_config`. If specifying `agent`, use `agent_config`.");return this._client.post(X`/${n}/interactions`,Object.assign(Object.assign({body:r},t),{stream:e.stream??!1}))}delete(e,t={},n){let{api_version:r=this._client.apiVersion}=t??{};return this._client.delete(X`/${r}/interactions/${e}`,n)}cancel(e,t={},n){let{api_version:r=this._client.apiVersion}=t??{};return this._client.post(X`/${r}/interactions/${e}/cancel`,n)}get(e,t={},n){let r=t??{},{api_version:i=this._client.apiVersion}=r,a=H(r,[`api_version`]);return this._client.get(X`/${i}/interactions/${e}`,Object.assign(Object.assign({query:a},n),{stream:t?.stream??!1}))}};Sl._key=Object.freeze([`interactions`]);var Cl=class extends Sl{},wl=class extends yl{create(e,t){let{api_version:n=this._client.apiVersion,webhook_id:r}=e,i=H(e,[`api_version`,`webhook_id`]);return this._client.post(X`/${n}/webhooks`,Object.assign({query:{webhook_id:r},body:i},t))}update(e,t,n){let{api_version:r=this._client.apiVersion,update_mask:i}=t,a=H(t,[`api_version`,`update_mask`]);return this._client.patch(X`/${r}/webhooks/${e}`,Object.assign({query:{update_mask:i},body:a},n))}list(e={},t){let n=e??{},{api_version:r=this._client.apiVersion}=n,i=H(n,[`api_version`]);return this._client.get(X`/${r}/webhooks`,Object.assign({query:i},t))}delete(e,t={},n){let{api_version:r=this._client.apiVersion}=t??{};return this._client.delete(X`/${r}/webhooks/${e}`,n)}get(e,t={},n){let{api_version:r=this._client.apiVersion}=t??{};return this._client.get(X`/${r}/webhooks/${e}`,n)}ping(e,t=void 0,n){let{api_version:r=this._client.apiVersion,body:i}=t??{};return this._client.post(X`/${r}/webhooks/${e}:ping`,Object.assign({body:i},n))}rotateSigningSecret(e,t={},n){let r=t??{},{api_version:i=this._client.apiVersion}=r,a=H(r,[`api_version`]);return this._client.post(X`/${i}/webhooks/${e}:rotateSigningSecret`,Object.assign({body:a},n))}};wl._key=Object.freeze([`webhooks`]);var Tl=class extends wl{};function El(e){let t=0;for(let n of e)t+=n.length;let n=new Uint8Array(t),r=0;for(let t of e)n.set(t,r),r+=t.length;return n}var Dl;function Ol(e){let t;return(Dl??=(t=new globalThis.TextEncoder,t.encode.bind(t)))(e)}var kl;function Al(e){let t;return(kl??=(t=new globalThis.TextDecoder,t.decode.bind(t)))(e)}var jl=class{constructor(){this.buffer=new Uint8Array,this.carriageReturnIndex=null,this.searchIndex=0}decode(e){if(e==null)return[];let t=e instanceof ArrayBuffer?new Uint8Array(e):typeof e==`string`?Ol(e):e;this.buffer=El([this.buffer,t]);let n=[],r;for(;(r=Ml(this.buffer,this.carriageReturnIndex??this.searchIndex))!=null;){if(r.carriage&&this.carriageReturnIndex==null){this.carriageReturnIndex=r.index;continue}if(this.carriageReturnIndex!=null&&(r.index!==this.carriageReturnIndex+1||r.carriage)){n.push(Al(this.buffer.subarray(0,this.carriageReturnIndex-1))),this.buffer=this.buffer.subarray(this.carriageReturnIndex),this.carriageReturnIndex=null,this.searchIndex=0;continue}let e=this.carriageReturnIndex===null?r.preceding:r.preceding-1,t=Al(this.buffer.subarray(0,e));n.push(t),this.buffer=this.buffer.subarray(r.index),this.carriageReturnIndex=null,this.searchIndex=0}return this.searchIndex=Math.max(0,this.buffer.length-1),n}flush(){return this.buffer.length?this.decode(`
7
- `):[]}};jl.NEWLINE_CHARS=new Set([`
8
- `,`\r`]),jl.NEWLINE_REGEXP=/\r\n|[\n\r]/g;function Ml(e,t){let n=t??0,r=e.indexOf(10,n),i=e.indexOf(13,n);if(r===-1&&i===-1)return null;let a;return a=r!==-1&&i!==-1?Math.min(r,i):r===-1?i:r,e[a]===10?{preceding:a,index:a+1,carriage:!1}:{preceding:a,index:a+1,carriage:!0}}var Nl={off:0,error:200,warn:300,info:400,debug:500},Pl=(e,t,n)=>{if(e){if(Zc(Nl,e))return e;Z(n).warn(`${t} was set to ${JSON.stringify(e)}, expected one of ${JSON.stringify(Object.keys(Nl))}`)}};function Fl(){}function Il(e,t,n){return!t||Nl[e]>Nl[n]?Fl:t[e].bind(t)}var Ll={error:Fl,warn:Fl,info:Fl,debug:Fl},Rl=new WeakMap;function Z(e){let t=e.logger,n=e.logLevel??`off`;if(!t)return Ll;let r=Rl.get(t);if(r&&r[0]===n)return r[1];let i={error:Il(`error`,t,n),warn:Il(`warn`,t,n),info:Il(`info`,t,n),debug:Il(`debug`,t,n)};return Rl.set(t,[n,i]),i}var Q=e=>(e.options&&(e.options=Object.assign({},e.options),delete e.options.headers),e.headers&&=Object.fromEntries((e.headers instanceof Headers?[...e.headers]:Object.entries(e.headers)).map(([e,t])=>[e,e.toLowerCase()===`x-goog-api-key`||e.toLowerCase()===`authorization`||e.toLowerCase()===`cookie`||e.toLowerCase()===`set-cookie`?`***`:t])),`retryOfRequestLogID`in e&&(e.retryOfRequestLogID&&(e.retryOf=e.retryOfRequestLogID),delete e.retryOfRequestLogID),e),zl=class e{constructor(e,t,n){this.iterator=e,this.controller=t,this.client=n}static fromSSEResponse(t,n,r){let i=!1,a=r?Z(r):console;function o(){return W(this,arguments,function*(){var e,r,o,s;if(i)throw new J("Cannot iterate over a consumed stream, use `.tee()` to split the stream.");i=!0;let c=!1;try{try{for(var l=!0,u=G(Bl(t,n)),d;d=yield U(u.next()),e=d.done,!e;l=!0){s=d.value,l=!1;let e=s;if(!c)if(e.data.startsWith(`[DONE]`)){c=!0;continue}else try{yield yield U(JSON.parse(e.data))}catch(t){throw a.error(`Could not parse message into JSON:`,e.data),a.error(`From chunk:`,e.raw),t}}}catch(e){r={error:e}}finally{try{!l&&!e&&(o=u.return)&&(yield U(o.call(u)))}finally{if(r)throw r.error}}c=!0}catch(e){if(Nc(e))return yield U(void 0);throw e}finally{c||n.abort()}})}return new e(o,n,r)}static fromReadableStream(t,n,r){let i=!1;function a(){return W(this,arguments,function*(){var e,n,r,i;let a=new jl,o=il(t);try{for(var s=!0,c=G(o),l;l=yield U(c.next()),e=l.done,!e;s=!0){i=l.value,s=!1;let e=i;for(let t of a.decode(e))yield yield U(t)}}catch(e){n={error:e}}finally{try{!s&&!e&&(r=c.return)&&(yield U(r.call(c)))}finally{if(n)throw n.error}}for(let e of a.flush())yield yield U(e)})}function o(){return W(this,arguments,function*(){var e,t,r,o;if(i)throw new J("Cannot iterate over a consumed stream, use `.tee()` to split the stream.");i=!0;let s=!1;try{try{for(var c=!0,l=G(a()),u;u=yield U(l.next()),e=u.done,!e;c=!0){o=u.value,c=!1;let e=o;s||e&&(yield yield U(JSON.parse(e)))}}catch(e){t={error:e}}finally{try{!c&&!e&&(r=l.return)&&(yield U(r.call(l)))}finally{if(t)throw t.error}}s=!0}catch(e){if(Nc(e))return yield U(void 0);throw e}finally{s||n.abort()}})}return new e(o,n,r)}[Symbol.asyncIterator](){return this.iterator()}tee(){let t=[],n=[],r=this.iterator(),i=e=>({next:()=>{if(e.length===0){let e=r.next();t.push(e),n.push(e)}return e.shift()}});return[new e(()=>i(t),this.controller,this.client),new e(()=>i(n),this.controller,this.client)]}toReadableStream(){let e=this,t;return nl({async start(){t=e[Symbol.asyncIterator]()},async pull(e){try{let{value:n,done:r}=await t.next();if(r)return e.close();let i=Ol(JSON.stringify(n)+`
9
- `);e.enqueue(i)}catch(t){e.error(t)}},async cancel(){await t.return?.call(t)}})}};function Bl(e,t){return W(this,arguments,function*(){var n,r,i,a;if(!e.body)throw t.abort(),globalThis.navigator!==void 0&&globalThis.navigator.product===`ReactNative`?new J(`The default react-native fetch implementation does not support streaming. Please use expo/fetch: https://docs.expo.dev/versions/latest/sdk/expo/#expofetch-api`):new J(`Attempted to iterate over a response with no body`);let o=new Hl,s=new jl,c=il(e.body);try{for(var l=!0,u=G(Vl(c)),d;d=yield U(u.next()),n=d.done,!n;l=!0){a=d.value,l=!1;let e=a;for(let t of s.decode(e)){let e=o.decode(t);e&&(yield yield U(e))}}}catch(e){r={error:e}}finally{try{!l&&!n&&(i=u.return)&&(yield U(i.call(u)))}finally{if(r)throw r.error}}for(let e of s.flush()){let t=o.decode(e);t&&(yield yield U(t))}})}function Vl(e){return W(this,arguments,function*(){var t,n,r,i;try{for(var a=!0,o=G(e),s;s=yield U(o.next()),t=s.done,!t;a=!0){i=s.value,a=!1;let e=i;e!=null&&(yield yield U(e instanceof ArrayBuffer?new Uint8Array(e):typeof e==`string`?Ol(e):e))}}catch(e){n={error:e}}finally{try{!a&&!t&&(r=o.return)&&(yield U(r.call(o)))}finally{if(n)throw n.error}}})}var Hl=class{constructor(){this.event=null,this.data=[],this.chunks=[]}decode(e){if(e.endsWith(`\r`)&&(e=e.substring(0,e.length-1)),!e){if(!this.event&&!this.data.length)return null;let e={event:this.event,data:this.data.join(`
10
- `),raw:this.chunks};return this.event=null,this.data=[],this.chunks=[],e}if(this.chunks.push(e),e.startsWith(`:`))return null;let[t,n,r]=Ul(e,`:`);return r.startsWith(` `)&&(r=r.substring(1)),t===`event`?this.event=r:t===`data`&&this.data.push(r),null}};function Ul(e,t){let n=e.indexOf(t);return n===-1?[e,``,``]:[e.substring(0,n),t,e.substring(n+t.length)]}async function Wl(e,t){let{response:n,requestLogID:r,retryOfRequestLogID:i,startTime:a}=t,o=await(async()=>{if(t.options.stream)return Z(e).debug(`response`,n.status,n.url,n.headers,n.body),t.options.__streamClass?t.options.__streamClass.fromSSEResponse(n,t.controller,e):zl.fromSSEResponse(n,t.controller,e);if(n.status===204)return null;if(t.options.__binaryResponse)return n;let r=(n.headers.get(`content-type`)?.split(`;`)[0])?.trim();return r?.includes(`application/json`)||r?.endsWith(`+json`)?n.headers.get(`content-length`)===`0`?void 0:await n.json():await n.text()})();return Z(e).debug(`[${r}] response parsed`,Q({retryOfRequestLogID:i,url:n.url,status:n.status,body:o,durationMs:Date.now()-a})),o}var Gl=class e extends Promise{constructor(e,t,n=Wl){super(e=>{e(null)}),this.responsePromise=t,this.parseResponse=n,this.client=e}_thenUnwrap(t){return new e(this.client,this.responsePromise,async(e,n)=>t(await this.parseResponse(e,n),n))}asResponse(){return this.responsePromise.then(e=>e.response)}async withResponse(){let[e,t]=await Promise.all([this.parse(),this.asResponse()]);return{data:e,response:t}}parse(){return this.parsedPromise||=this.responsePromise.then(e=>this.parseResponse(this.client,e)),this.parsedPromise}then(e,t){return this.parse().then(e,t)}catch(e){return this.parse().catch(e)}finally(e){return this.parse().finally(e)}},Kl=Symbol(`brand.privateNullableHeaders`);function*ql(e){if(!e)return;if(Kl in e){let{values:t,nulls:n}=e;yield*t.entries();for(let e of n)yield[e,null];return}let t=!1,n;e instanceof Headers?n=e.entries():Yc(e)?n=e:(t=!0,n=Object.entries(e??{}));for(let e of n){let n=e[0];if(typeof n!=`string`)throw TypeError(`expected header name to be a string`);let r=Yc(e[1])?e[1]:[e[1]],i=!1;for(let e of r)e!==void 0&&(t&&!i&&(i=!0,yield[n,null]),yield[n,e])}}var Jl=e=>{let t=new Headers,n=new Set;for(let r of e){let e=new Set;for(let[i,a]of ql(r)){let r=i.toLowerCase();e.has(r)||(t.delete(i),e.add(r)),a===null?(t.delete(i),n.add(r)):(t.append(i,a),n.delete(r))}}return{[Kl]:!0,values:t,nulls:n}},Yl=e=>{var t;if(globalThis.process!==void 0)return({}?.[e])?.trim()||void 0;if(globalThis.Deno!==void 0)return(((t=globalThis.Deno.env)?.get)?.call(t,e))?.trim()||void 0},Xl,Zl=class e{constructor(t){var{baseURL:n=Yl(`GEMINI_NEXT_GEN_API_BASE_URL`),apiKey:r=Yl(`GEMINI_API_KEY`)??null,apiVersion:i=`v1beta`}=t,a=H(t,[`baseURL`,`apiKey`,`apiVersion`]);let o=Object.assign(Object.assign({apiKey:r,apiVersion:i},a),{baseURL:n||`https://generativelanguage.googleapis.com`});this.baseURL=o.baseURL,this.timeout=o.timeout??e.DEFAULT_TIMEOUT,this.logger=o.logger??console;let s=`warn`;this.logLevel=s,this.logLevel=Pl(o.logLevel,`ClientOptions.logLevel`,this)??Pl(Yl(`GEMINI_NEXT_GEN_API_LOG`),`process.env['GEMINI_NEXT_GEN_API_LOG']`,this)??s,this.fetchOptions=o.fetchOptions,this.maxRetries=o.maxRetries??2,this.fetch=o.fetch??tl(),this.encoder=ol,this._options=o,this.apiKey=r,this.apiVersion=i,this.clientAdapter=o.clientAdapter}withOptions(e){return new this.constructor(Object.assign(Object.assign(Object.assign({},this._options),{baseURL:this.baseURL,maxRetries:this.maxRetries,timeout:this.timeout,logger:this.logger,logLevel:this.logLevel,fetch:this.fetch,fetchOptions:this.fetchOptions,apiKey:this.apiKey,apiVersion:this.apiVersion}),e))}baseURLOverridden(){return this.baseURL!==`https://generativelanguage.googleapis.com`}defaultQuery(){return this._options.defaultQuery}validateHeaders({values:e,nulls:t}){if(!(e.has(`authorization`)||e.has(`x-goog-api-key`))&&!(this.apiKey&&e.get(`x-goog-api-key`))&&!t.has(`x-goog-api-key`))throw Error(`Could not resolve authentication method. Expected the apiKey to be set. Or for the "x-goog-api-key" headers to be explicitly omitted`)}async authHeaders(e){let t=Jl([e.headers]);if(!(t.values.has(`authorization`)||t.values.has(`x-goog-api-key`))){if(this.apiKey)return Jl([{"x-goog-api-key":this.apiKey}]);if(this.clientAdapter&&this.clientAdapter.isVertexAI())return Jl([await this.clientAdapter.getAuthHeaders()])}}stringifyQuery(e){return sl(e)}getUserAgent(){return`${this.constructor.name}/JS ${cl}`}defaultIdempotencyKey(){return`stainless-node-retry-${Mc()}`}makeStatusError(e,t,n,r){return Y.generate(e,t,n,r)}buildURL(e,t,n){let r=!this.baseURLOverridden()&&n||this.baseURL,i=qc(e)?new URL(e):new URL(r+(r.endsWith(`/`)&&e.startsWith(`/`)?e.slice(1):e)),a=this.defaultQuery(),o=Object.fromEntries(i.searchParams);return(!Xc(a)||!Xc(o))&&(t=Object.assign(Object.assign(Object.assign({},o),a),t)),typeof t==`object`&&t&&!Array.isArray(t)&&(i.search=this.stringifyQuery(t)),i.toString()}async prepareOptions(e){if(this.clientAdapter&&this.clientAdapter.isVertexAI()&&!e.path.startsWith(`/${this.apiVersion}/projects/`)){let t=e.path.slice(this.apiVersion.length+1);e.path=`/${this.apiVersion}/projects/${this.clientAdapter.getProject()}/locations/${this.clientAdapter.getLocation()}${t}`}}async prepareRequest(e,{url:t,options:n}){}get(e,t){return this.methodRequest(`get`,e,t)}post(e,t){return this.methodRequest(`post`,e,t)}patch(e,t){return this.methodRequest(`patch`,e,t)}put(e,t){return this.methodRequest(`put`,e,t)}delete(e,t){return this.methodRequest(`delete`,e,t)}methodRequest(e,t,n){return this.request(Promise.resolve(n).then(n=>Object.assign({method:e,path:t},n)))}request(e,t=null){return new Gl(this,this.makeRequest(e,t,void 0))}async makeRequest(e,t,n){let r=await e,i=r.maxRetries??this.maxRetries;t??=i,await this.prepareOptions(r);let{req:a,url:o,timeout:s}=await this.buildRequest(r,{retryCount:i-t});await this.prepareRequest(a,{url:o,options:r});let c=`log_`+(Math.random()*(1<<24)|0).toString(16).padStart(6,`0`),l=n===void 0?``:`, retryOf: ${n}`,u=Date.now();if(Z(this).debug(`[${c}] sending request`,Q({retryOfRequestLogID:n,method:r.method,url:o,options:r,headers:a.headers})),r.signal?.aborted)throw new Fc;let d=new AbortController,f=await this.fetchWithTimeout(o,a,s,d).catch(Pc),p=Date.now();if(f instanceof globalThis.Error){let e=`retrying, ${t} attempts remaining`;if(r.signal?.aborted)throw new Fc;let i=Nc(f)||/timed? ?out/i.test(String(f)+(`cause`in f?String(f.cause):``));if(t)return Z(this).info(`[${c}] connection ${i?`timed out`:`failed`} - ${e}`),Z(this).debug(`[${c}] connection ${i?`timed out`:`failed`} (${e})`,Q({retryOfRequestLogID:n,url:o,durationMs:p-u,message:f.message})),this.retryRequest(r,t,n??c);throw Z(this).info(`[${c}] connection ${i?`timed out`:`failed`} - error; no more retries left`),Z(this).debug(`[${c}] connection ${i?`timed out`:`failed`} (error; no more retries left)`,Q({retryOfRequestLogID:n,url:o,durationMs:p-u,message:f.message})),i?new Lc:new Ic({cause:f})}let m=`[${c}${l}] ${a.method} ${o} ${f.ok?`succeeded`:`failed`} with status ${f.status} in ${p-u}ms`;if(!f.ok){let e=await this.shouldRetry(f);if(t&&e){let e=`retrying, ${t} attempts remaining`;return await al(f.body),Z(this).info(`${m} - ${e}`),Z(this).debug(`[${c}] response error (${e})`,Q({retryOfRequestLogID:n,url:f.url,status:f.status,headers:f.headers,durationMs:p-u})),this.retryRequest(r,t,n??c,f.headers)}let i=e?`error; no more retries left`:`error; not retryable`;Z(this).info(`${m} - ${i}`);let a=await f.text().catch(e=>Pc(e).message),o=$c(a),s=o?void 0:a;throw Z(this).debug(`[${c}] response error (${i})`,Q({retryOfRequestLogID:n,url:f.url,status:f.status,headers:f.headers,message:s,durationMs:Date.now()-u})),this.makeStatusError(f.status,o,s,f.headers)}return Z(this).info(m),Z(this).debug(`[${c}] response start`,Q({retryOfRequestLogID:n,url:f.url,status:f.status,headers:f.headers,durationMs:p-u})),{response:f,options:r,controller:d,requestLogID:c,retryOfRequestLogID:n,startTime:u}}async fetchWithTimeout(e,t,n,r){let i=t||{},{signal:a,method:o}=i,s=H(i,[`signal`,`method`]),c=this._makeAbort(r);a&&a.addEventListener(`abort`,c,{once:!0});let l=setTimeout(c,n),u=globalThis.ReadableStream&&s.body instanceof globalThis.ReadableStream||typeof s.body==`object`&&s.body!==null&&Symbol.asyncIterator in s.body,d=Object.assign(Object.assign(Object.assign({signal:r.signal},u?{duplex:`half`}:{}),{method:`GET`}),s);o&&(d.method=o.toUpperCase());try{return await this.fetch.call(void 0,e,d)}finally{clearTimeout(l)}}async shouldRetry(e){let t=e.headers.get(`x-should-retry`);return t===`true`?!0:t===`false`?!1:e.status===408||e.status===409||e.status===429||e.status>=500}async retryRequest(e,t,n,r){let i,a=r?.get(`retry-after-ms`);if(a){let e=parseFloat(a);Number.isNaN(e)||(i=e)}let o=r?.get(`retry-after`);if(o&&!i){let e=parseFloat(o);i=Number.isNaN(e)?Date.parse(o)-Date.now():e*1e3}if(i===void 0){let n=e.maxRetries??this.maxRetries;i=this.calculateDefaultRetryTimeoutMillis(t,n)}return await el(i),this.makeRequest(e,t-1,n)}calculateDefaultRetryTimeoutMillis(e,t){let n=t-e;return Math.min(.5*2**n,8)*(1-Math.random()*.25)*1e3}async buildRequest(e,{retryCount:t=0}={}){let n=Object.assign({},e),{method:r,path:i,query:a,defaultBaseURL:o}=n,s=this.buildURL(i,a,o);`timeout`in n&&Qc(`timeout`,n.timeout),n.timeout=n.timeout??this.timeout;let{bodyHeaders:c,body:l}=this.buildBody({options:n}),u=await this.buildHeaders({options:e,method:r,bodyHeaders:c,retryCount:t});return{req:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({method:r,headers:u},n.signal&&{signal:n.signal}),globalThis.ReadableStream&&l instanceof globalThis.ReadableStream&&{duplex:`half`}),l&&{body:l}),this.fetchOptions??{}),n.fetchOptions??{}),url:s,timeout:n.timeout}}async buildHeaders({options:e,method:t,bodyHeaders:n,retryCount:r}){let i={};this.idempotencyHeader&&t!==`get`&&(e.idempotencyKey||=this.defaultIdempotencyKey(),i[this.idempotencyHeader]=e.idempotencyKey);let a=await this.authHeaders(e),o=Jl([i,{Accept:`application/json`,"User-Agent":this.getUserAgent()},this._options.defaultHeaders,n,e.headers,a]);return this.validateHeaders(o),o.values}_makeAbort(e){return()=>e.abort()}buildBody({options:{body:e,headers:t}}){if(!e)return{bodyHeaders:void 0,body:void 0};let n=Jl([t]);return ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof DataView||typeof e==`string`&&n.values.has(`content-type`)||globalThis.Blob&&e instanceof globalThis.Blob||e instanceof FormData||e instanceof URLSearchParams||globalThis.ReadableStream&&e instanceof globalThis.ReadableStream?{bodyHeaders:void 0,body:e}:typeof e==`object`&&(Symbol.asyncIterator in e||Symbol.iterator in e&&`next`in e&&typeof e.next==`function`)?{bodyHeaders:void 0,body:rl(e)}:typeof e==`object`&&n.values.get(`content-type`)===`application/x-www-form-urlencoded`?{bodyHeaders:{"content-type":`application/x-www-form-urlencoded`},body:this.stringifyQuery(e)}:this.encoder({body:e,headers:n})}};Zl.DEFAULT_TIMEOUT=6e4;var $=class extends Zl{constructor(){super(...arguments),this.interactions=new Cl(this),this.webhooks=new Tl(this)}};Xl=$,$.GeminiNextGenAPIClient=Xl,$.GeminiNextGenAPIClientError=J,$.APIError=Y,$.APIConnectionError=Ic,$.APIConnectionTimeoutError=Lc,$.APIUserAbortError=Fc,$.NotFoundError=Vc,$.ConflictError=Hc,$.RateLimitError=Wc,$.BadRequestError=Rc,$.AuthenticationError=zc,$.InternalServerError=Gc,$.PermissionDeniedError=Bc,$.UnprocessableEntityError=Uc,$.toFile=gl,$.Interactions=Cl,$.Webhooks=Tl;function Ql(e,t){let n={},r=h(e,[`name`]);return r!=null&&m(n,[`_url`,`name`],r),n}function $l(e,t){let n={},r=h(e,[`name`]);return r!=null&&m(n,[`_url`,`name`],r),n}function eu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);return r!=null&&m(n,[`sdkHttpResponse`],r),n}function tu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);return r!=null&&m(n,[`sdkHttpResponse`],r),n}function nu(e,t,n){let r={};if(h(e,[`validationDataset`])!==void 0)throw Error(`validationDataset parameter is not supported in Gemini API.`);let i=h(e,[`tunedModelDisplayName`]);if(t!==void 0&&i!=null&&m(t,[`displayName`],i),h(e,[`description`])!==void 0)throw Error(`description parameter is not supported in Gemini API.`);let a=h(e,[`epochCount`]);t!==void 0&&a!=null&&m(t,[`tuningTask`,`hyperparameters`,`epochCount`],a);let o=h(e,[`learningRateMultiplier`]);if(o!=null&&m(r,[`tuningTask`,`hyperparameters`,`learningRateMultiplier`],o),h(e,[`exportLastCheckpointOnly`])!==void 0)throw Error(`exportLastCheckpointOnly parameter is not supported in Gemini API.`);if(h(e,[`preTunedModelCheckpointId`])!==void 0)throw Error(`preTunedModelCheckpointId parameter is not supported in Gemini API.`);if(h(e,[`adapterSize`])!==void 0)throw Error(`adapterSize parameter is not supported in Gemini API.`);if(h(e,[`tuningMode`])!==void 0)throw Error(`tuningMode parameter is not supported in Gemini API.`);if(h(e,[`customBaseModel`])!==void 0)throw Error(`customBaseModel parameter is not supported in Gemini API.`);let s=h(e,[`batchSize`]);t!==void 0&&s!=null&&m(t,[`tuningTask`,`hyperparameters`,`batchSize`],s);let c=h(e,[`learningRate`]);if(t!==void 0&&c!=null&&m(t,[`tuningTask`,`hyperparameters`,`learningRate`],c),h(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);if(h(e,[`beta`])!==void 0)throw Error(`beta parameter is not supported in Gemini API.`);if(h(e,[`baseTeacherModel`])!==void 0)throw Error(`baseTeacherModel parameter is not supported in Gemini API.`);if(h(e,[`tunedTeacherModelSource`])!==void 0)throw Error(`tunedTeacherModelSource parameter is not supported in Gemini API.`);if(h(e,[`sftLossWeightMultiplier`])!==void 0)throw Error(`sftLossWeightMultiplier parameter is not supported in Gemini API.`);if(h(e,[`outputUri`])!==void 0)throw Error(`outputUri parameter is not supported in Gemini API.`);if(h(e,[`encryptionSpec`])!==void 0)throw Error(`encryptionSpec parameter is not supported in Gemini API.`);return r}function ru(e,t,n){let r={},i=h(n,[`config`,`method`]);if(i===void 0&&(i=`SUPERVISED_FINE_TUNING`),i===`SUPERVISED_FINE_TUNING`){let n=h(e,[`validationDataset`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`],bu(n))}else if(i===`PREFERENCE_TUNING`){let n=h(e,[`validationDataset`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`],bu(n))}else if(i===`DISTILLATION`){let n=h(e,[`validationDataset`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`],bu(n))}let a=h(e,[`tunedModelDisplayName`]);t!==void 0&&a!=null&&m(t,[`tunedModelDisplayName`],a);let o=h(e,[`description`]);t!==void 0&&o!=null&&m(t,[`description`],o);let s=h(n,[`config`,`method`]);if(s===void 0&&(s=`SUPERVISED_FINE_TUNING`),s===`SUPERVISED_FINE_TUNING`){let n=h(e,[`epochCount`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`hyperParameters`,`epochCount`],n)}else if(s===`PREFERENCE_TUNING`){let n=h(e,[`epochCount`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`hyperParameters`,`epochCount`],n)}else if(s===`DISTILLATION`){let n=h(e,[`epochCount`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`hyperParameters`,`epochCount`],n)}let c=h(n,[`config`,`method`]);if(c===void 0&&(c=`SUPERVISED_FINE_TUNING`),c===`SUPERVISED_FINE_TUNING`){let n=h(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`hyperParameters`,`learningRateMultiplier`],n)}else if(c===`PREFERENCE_TUNING`){let n=h(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`hyperParameters`,`learningRateMultiplier`],n)}else if(c===`DISTILLATION`){let n=h(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`hyperParameters`,`learningRateMultiplier`],n)}let l=h(n,[`config`,`method`]);if(l===void 0&&(l=`SUPERVISED_FINE_TUNING`),l===`SUPERVISED_FINE_TUNING`){let n=h(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`exportLastCheckpointOnly`],n)}else if(l===`PREFERENCE_TUNING`){let n=h(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`exportLastCheckpointOnly`],n)}else if(l===`DISTILLATION`){let n=h(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`exportLastCheckpointOnly`],n)}let u=h(n,[`config`,`method`]);if(u===void 0&&(u=`SUPERVISED_FINE_TUNING`),u===`SUPERVISED_FINE_TUNING`){let n=h(e,[`adapterSize`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`hyperParameters`,`adapterSize`],n)}else if(u===`PREFERENCE_TUNING`){let n=h(e,[`adapterSize`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`hyperParameters`,`adapterSize`],n)}else if(u===`DISTILLATION`){let n=h(e,[`adapterSize`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`hyperParameters`,`adapterSize`],n)}let d=h(n,[`config`,`method`]);if(d===void 0&&(d=`SUPERVISED_FINE_TUNING`),d===`SUPERVISED_FINE_TUNING`){let n=h(e,[`tuningMode`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`tuningMode`],n)}else if(d===`DISTILLATION`){let n=h(e,[`tuningMode`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`tuningMode`],n)}let f=h(e,[`customBaseModel`]);t!==void 0&&f!=null&&m(t,[`customBaseModel`],f);let p=h(n,[`config`,`method`]);if(p===void 0&&(p=`SUPERVISED_FINE_TUNING`),p===`SUPERVISED_FINE_TUNING`){let n=h(e,[`batchSize`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`hyperParameters`,`batchSize`],n)}else if(p===`DISTILLATION`){let n=h(e,[`batchSize`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`hyperParameters`,`batchSize`],n)}let g=h(n,[`config`,`method`]);if(g===void 0&&(g=`SUPERVISED_FINE_TUNING`),g===`SUPERVISED_FINE_TUNING`){let n=h(e,[`learningRate`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`hyperParameters`,`learningRate`],n)}else if(g===`DISTILLATION`){let n=h(e,[`learningRate`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`hyperParameters`,`learningRate`],n)}let _=h(e,[`labels`]);t!==void 0&&_!=null&&m(t,[`labels`],_);let v=h(e,[`beta`]);t!==void 0&&v!=null&&m(t,[`preferenceOptimizationSpec`,`hyperParameters`,`beta`],v);let y=h(e,[`baseTeacherModel`]);t!==void 0&&y!=null&&m(t,[`distillationSpec`,`baseTeacherModel`],y);let b=h(e,[`tunedTeacherModelSource`]);t!==void 0&&b!=null&&m(t,[`distillationSpec`,`tunedTeacherModelSource`],b);let x=h(e,[`sftLossWeightMultiplier`]);t!==void 0&&x!=null&&m(t,[`distillationSpec`,`hyperParameters`,`sftLossWeightMultiplier`],x);let S=h(e,[`outputUri`]);t!==void 0&&S!=null&&m(t,[`outputUri`],S);let C=h(e,[`encryptionSpec`]);return t!==void 0&&C!=null&&m(t,[`encryptionSpec`],C),r}function iu(e,t){let n={},r=h(e,[`baseModel`]);r!=null&&m(n,[`baseModel`],r);let i=h(e,[`preTunedModel`]);i!=null&&m(n,[`preTunedModel`],i);let a=h(e,[`trainingDataset`]);a!=null&&hu(a);let o=h(e,[`config`]);return o!=null&&nu(o,n),n}function au(e,t){let n={},r=h(e,[`baseModel`]);r!=null&&m(n,[`baseModel`],r);let i=h(e,[`preTunedModel`]);i!=null&&m(n,[`preTunedModel`],i);let a=h(e,[`trainingDataset`]);a!=null&&gu(a,n,t);let o=h(e,[`config`]);return o!=null&&ru(o,n,t),n}function ou(e,t){let n={},r=h(e,[`name`]);return r!=null&&m(n,[`_url`,`name`],r),n}function su(e,t){let n={},r=h(e,[`name`]);return r!=null&&m(n,[`_url`,`name`],r),n}function cu(e,t,n){let r={},i=h(e,[`pageSize`]);t!==void 0&&i!=null&&m(t,[`_query`,`pageSize`],i);let a=h(e,[`pageToken`]);t!==void 0&&a!=null&&m(t,[`_query`,`pageToken`],a);let o=h(e,[`filter`]);return t!==void 0&&o!=null&&m(t,[`_query`,`filter`],o),r}function lu(e,t,n){let r={},i=h(e,[`pageSize`]);t!==void 0&&i!=null&&m(t,[`_query`,`pageSize`],i);let a=h(e,[`pageToken`]);t!==void 0&&a!=null&&m(t,[`_query`,`pageToken`],a);let o=h(e,[`filter`]);return t!==void 0&&o!=null&&m(t,[`_query`,`filter`],o),r}function uu(e,t){let n={},r=h(e,[`config`]);return r!=null&&cu(r,n),n}function du(e,t){let n={},r=h(e,[`config`]);return r!=null&&lu(r,n),n}function fu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`nextPageToken`]);i!=null&&m(n,[`nextPageToken`],i);let a=h(e,[`tunedModels`]);if(a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>_u(e))),m(n,[`tuningJobs`],e)}return n}function pu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`nextPageToken`]);i!=null&&m(n,[`nextPageToken`],i);let a=h(e,[`tuningJobs`]);if(a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>vu(e))),m(n,[`tuningJobs`],e)}return n}function mu(e,t){let n={},r=h(e,[`name`]);r!=null&&m(n,[`model`],r);let i=h(e,[`name`]);return i!=null&&m(n,[`endpoint`],i),n}function hu(e,t){let n={};if(h(e,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);if(h(e,[`vertexDatasetResource`])!==void 0)throw Error(`vertexDatasetResource parameter is not supported in Gemini API.`);let r=h(e,[`examples`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`examples`,`examples`],e)}return n}function gu(e,t,n){let r={},i=h(n,[`config`,`method`]);if(i===void 0&&(i=`SUPERVISED_FINE_TUNING`),i===`SUPERVISED_FINE_TUNING`){let n=h(e,[`gcsUri`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`trainingDatasetUri`],n)}else if(i===`PREFERENCE_TUNING`){let n=h(e,[`gcsUri`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`trainingDatasetUri`],n)}else if(i===`DISTILLATION`){let n=h(e,[`gcsUri`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`promptDatasetUri`],n)}let a=h(n,[`config`,`method`]);if(a===void 0&&(a=`SUPERVISED_FINE_TUNING`),a===`SUPERVISED_FINE_TUNING`){let n=h(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&m(t,[`supervisedTuningSpec`,`trainingDatasetUri`],n)}else if(a===`PREFERENCE_TUNING`){let n=h(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&m(t,[`preferenceOptimizationSpec`,`trainingDatasetUri`],n)}else if(a===`DISTILLATION`){let n=h(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&m(t,[`distillationSpec`,`promptDatasetUri`],n)}if(h(e,[`examples`])!==void 0)throw Error(`examples parameter is not supported in Vertex AI.`);return r}function _u(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`name`]);i!=null&&m(n,[`name`],i);let a=h(e,[`state`]);a!=null&&m(n,[`state`],an(a));let o=h(e,[`createTime`]);o!=null&&m(n,[`createTime`],o);let s=h(e,[`tuningTask`,`startTime`]);s!=null&&m(n,[`startTime`],s);let c=h(e,[`tuningTask`,`completeTime`]);c!=null&&m(n,[`endTime`],c);let l=h(e,[`updateTime`]);l!=null&&m(n,[`updateTime`],l);let u=h(e,[`description`]);u!=null&&m(n,[`description`],u);let d=h(e,[`baseModel`]);d!=null&&m(n,[`baseModel`],d);let f=h(e,[`_self`]);return f!=null&&m(n,[`tunedModel`],mu(f)),n}function vu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`name`]);i!=null&&m(n,[`name`],i);let a=h(e,[`state`]);a!=null&&m(n,[`state`],an(a));let o=h(e,[`createTime`]);o!=null&&m(n,[`createTime`],o);let s=h(e,[`startTime`]);s!=null&&m(n,[`startTime`],s);let c=h(e,[`endTime`]);c!=null&&m(n,[`endTime`],c);let l=h(e,[`updateTime`]);l!=null&&m(n,[`updateTime`],l);let u=h(e,[`error`]);u!=null&&m(n,[`error`],u);let d=h(e,[`description`]);d!=null&&m(n,[`description`],d);let f=h(e,[`baseModel`]);f!=null&&m(n,[`baseModel`],f);let p=h(e,[`tunedModel`]);p!=null&&m(n,[`tunedModel`],p);let g=h(e,[`preTunedModel`]);g!=null&&m(n,[`preTunedModel`],g);let _=h(e,[`supervisedTuningSpec`]);_!=null&&m(n,[`supervisedTuningSpec`],_);let v=h(e,[`preferenceOptimizationSpec`]);v!=null&&m(n,[`preferenceOptimizationSpec`],v);let y=h(e,[`distillationSpec`]);y!=null&&m(n,[`distillationSpec`],y);let b=h(e,[`tuningDataStats`]);b!=null&&m(n,[`tuningDataStats`],b);let x=h(e,[`encryptionSpec`]);x!=null&&m(n,[`encryptionSpec`],x);let S=h(e,[`partnerModelTuningSpec`]);S!=null&&m(n,[`partnerModelTuningSpec`],S);let C=h(e,[`customBaseModel`]);C!=null&&m(n,[`customBaseModel`],C);let w=h(e,[`evaluateDatasetRuns`]);if(w!=null){let e=w;Array.isArray(e)&&(e=e.map(e=>e)),m(n,[`evaluateDatasetRuns`],e)}let T=h(e,[`experiment`]);T!=null&&m(n,[`experiment`],T);let E=h(e,[`fullFineTuningSpec`]);E!=null&&m(n,[`fullFineTuningSpec`],E);let D=h(e,[`labels`]);D!=null&&m(n,[`labels`],D);let O=h(e,[`outputUri`]);O!=null&&m(n,[`outputUri`],O);let k=h(e,[`pipelineJob`]);k!=null&&m(n,[`pipelineJob`],k);let A=h(e,[`serviceAccount`]);A!=null&&m(n,[`serviceAccount`],A);let j=h(e,[`tunedModelDisplayName`]);j!=null&&m(n,[`tunedModelDisplayName`],j);let M=h(e,[`tuningJobState`]);M!=null&&m(n,[`tuningJobState`],M);let ee=h(e,[`veoTuningSpec`]);ee!=null&&m(n,[`veoTuningSpec`],ee);let te=h(e,[`distillationSamplingSpec`]);te!=null&&m(n,[`distillationSamplingSpec`],te);let ne=h(e,[`tuningJobMetadata`]);return ne!=null&&m(n,[`tuningJobMetadata`],ne),n}function yu(e,t){let n={},r=h(e,[`sdkHttpResponse`]);r!=null&&m(n,[`sdkHttpResponse`],r);let i=h(e,[`name`]);i!=null&&m(n,[`name`],i);let a=h(e,[`metadata`]);a!=null&&m(n,[`metadata`],a);let o=h(e,[`done`]);o!=null&&m(n,[`done`],o);let s=h(e,[`error`]);return s!=null&&m(n,[`error`],s),n}function bu(e,t){let n={},r=h(e,[`gcsUri`]);r!=null&&m(n,[`validationDatasetUri`],r);let i=h(e,[`vertexDatasetResource`]);return i!=null&&m(n,[`validationDatasetUri`],i),n}var xu=class extends f{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new V(B.PAGED_ITEM_TUNING_JOBS,e=>this.listInternal(e),await this.listInternal(e),e),this.get=async e=>await this.getInternal(e),this.tune=async e=>{if(this.apiClient.isVertexAI())if(e.baseModel.startsWith(`projects/`)){let t={tunedModelName:e.baseModel};e.config?.preTunedModelCheckpointId&&(t.checkpointId=e.config.preTunedModelCheckpointId);let n=Object.assign(Object.assign({},e),{preTunedModel:t});return n.baseModel=void 0,await this.tuneInternal(n)}else{let t=Object.assign({},e);return await this.tuneInternal(t)}else{let t=Object.assign({},e),n=await this.tuneMldevInternal(t),r=``;return n.metadata!==void 0&&n.metadata.tunedModel!==void 0?r=n.metadata.tunedModel:n.name!==void 0&&n.name.includes(`/operations/`)&&(r=n.name.split(`/operations/`)[0]),{name:r,state:Oe.JOB_STATE_QUEUED}}}}async getInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=su(e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>vu(e))}else{let i=ou(e);return n=p(`{name}`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>_u(e))}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=du(e);return n=p(`tuningJobs`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=pu(e),n=new Ct;return Object.assign(n,t),n})}else{let i=uu(e);return n=p(`tunedModels`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`GET`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=fu(e),n=new Ct;return Object.assign(n,t),n})}}async cancel(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=$l(e);return n=p(`{name}:cancel`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=tu(e),n=new wt;return Object.assign(n,t),n})}else{let i=Ql(e);return n=p(`{name}:cancel`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>{let t=eu(e),n=new wt;return Object.assign(n,t),n})}}async tuneInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=au(e,e);return n=p(`tuningJobs`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>vu(e))}else throw Error(`This method is only supported by the Vertex AI.`)}async tuneMldevInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI())throw Error(`This method is only supported by the Gemini Developer API.`);{let i=iu(e);return n=p(`tunedModels`,i._url),r=i._query,delete i._url,delete i._query,t=this.apiClient.request({path:n,queryParams:r,body:JSON.stringify(i),httpMethod:`POST`,httpOptions:e.config?.httpOptions,abortSignal:e.config?.abortSignal}).then(e=>e.json().then(t=>{let n=t;return n.sdkHttpResponse={headers:e.headers},n})),t.then(e=>yu(e))}}},Su=class{async download(e,t){throw Error(`Download to file is not supported in the browser, please use a browser compliant download like an <a> tag.`)}},Cu=1024*1024*8,wu=3,Tu=1e3,Eu=2,Du=`x-goog-upload-status`;async function Ou(e,t,n,r){let i=await Au(e,t,n,r),a=await i?.json();if(i?.headers?.[Du]!==`final`)throw Error(`Failed to upload file: Upload status is not finalized.`);return a.file}async function ku(e,t,n,r){let i=await Au(e,t,n,r),a=await i?.json();if(i?.headers?.[Du]!==`final`)throw Error(`Failed to upload file: Upload status is not finalized.`);let o=A(a),s=new Rt;return Object.assign(s,o),s}async function Au(e,t,n,r){let i=t,a=r?.baseUrl||n.clientOptions.httpOptions?.baseUrl;if(a){let e=new URL(a),n=new URL(t);n.protocol=e.protocol,n.host=e.host,n.port=e.port,i=n.toString()}let o=0,s=0,c=new ut(new Response),l=`upload`;for(o=e.size;s<o;){let t=Math.min(Cu,o-s),a=e.slice(s,s+t);s+t>=o&&(l+=`, finalize`);let u=0,d=Tu;for(;u<wu;){let e=Object.assign(Object.assign({},r?.headers||{}),{"X-Goog-Upload-Command":l,"X-Goog-Upload-Offset":String(s),"Content-Length":String(t)});if(c=await n.request({path:``,body:a,httpMethod:`POST`,httpOptions:Object.assign(Object.assign({},r),{apiVersion:``,baseUrl:i,headers:e})}),c?.headers?.[Du])break;u++,await Mu(d),d*=Eu}if(s+=t,c?.headers?.[Du]!==`active`)break;if(o<=s)throw Error(`All content has been uploaded, but the upload status is not finalized.`)}return c}async function ju(e){return{size:e.size,type:e.type}}function Mu(e){return new Promise(t=>setTimeout(t,e))}var Nu=class{async upload(e,t,n,r){if(typeof e==`string`)throw Error(`File path is not supported in browser uploader.`);return await Ou(e,t,n,r)}async uploadToFileSearchStore(e,t,n,r){if(typeof e==`string`)throw Error(`File path is not supported in browser uploader.`);return await ku(e,t,n,r)}async stat(e){if(typeof e==`string`)throw Error(`File path is not supported in browser uploader.`);return await ju(e)}},Pu=class{create(e,t,n){return new Fu(e,t,n)}},Fu=class{constructor(e,t,n){this.url=e,this.headers=t,this.callbacks=n}connect(){this.ws=new WebSocket(this.url),this.ws.onopen=this.callbacks.onopen,this.ws.onerror=this.callbacks.onerror,this.ws.onclose=this.callbacks.onclose,this.ws.onmessage=this.callbacks.onmessage}send(e){if(this.ws===void 0)throw Error(`WebSocket is not connected`);this.ws.send(e)}close(){if(this.ws===void 0)throw Error(`WebSocket is not connected`);this.ws.close()}},Iu=`x-goog-api-key`,Lu=class{constructor(e){this.apiKey=e}async addAuthHeaders(e,t){if(e.get(Iu)===null){if(this.apiKey.startsWith(`auth_tokens/`))throw Error(`Ephemeral tokens are only supported by the live API.`);if(!this.apiKey)throw Error(`API key is missing. Please provide a valid API key.`);e.append(Iu,this.apiKey)}}},Ru=`gl-node/`,zu=class{getNextGenClient(){let e=this.httpOptions;if(this._nextGenClient===void 0){let e=this.httpOptions;this._nextGenClient=new $({baseURL:this.apiClient.getBaseUrl(),apiKey:this.apiKey,apiVersion:this.apiClient.getApiVersion(),clientAdapter:this.apiClient,defaultHeaders:this.apiClient.getDefaultHeaders(),timeout:e?.timeout,maxRetries:e?.retryOptions?.attempts})}return e?.extraBody&&console.warn(`GoogleGenAI.interactions: Client level httpOptions.extraBody is not supported by the interactions client and will be ignored.`),this._nextGenClient}get interactions(){return this._interactions===void 0?(console.warn(`GoogleGenAI.interactions: Interactions usage is experimental and may change in future versions.`),this._interactions=this.getNextGenClient().interactions,this._interactions):this._interactions}get webhooks(){return this._webhooks===void 0&&(this._webhooks=this.getNextGenClient().webhooks),this._webhooks}constructor(e){if(e.apiKey==null)throw Error(`An API Key must be set when running in a browser`);if(e.project||e.location)throw Error(`Vertex AI project based authentication is not supported on browser runtimes. Please do not provide a project or location.`);this.vertexai=e.vertexai??!1,this.apiKey=e.apiKey;let t=d(e.httpOptions,e.vertexai,void 0,void 0);t&&(e.httpOptions?e.httpOptions.baseUrl=t:e.httpOptions={baseUrl:t}),this.apiVersion=e.apiVersion,this.httpOptions=e.httpOptions;let n=new Lu(this.apiKey);this.apiClient=new ks({auth:n,apiVersion:this.apiVersion,apiKey:this.apiKey,vertexai:this.vertexai,httpOptions:this.httpOptions,userAgentExtra:Ru+`web`,uploader:new Nu,downloader:new Su}),this.models=new nc(this.apiClient),this.live=new Ks(this.apiClient,n,new Pu),this.batches=new _r(this.apiClient),this.chats=new oi(this.models,this.apiClient),this.caches=new ei(this.apiClient),this.files=new yi(this.apiClient),this.operations=new rc(this.apiClient),this.authTokens=new Sc(this.apiClient),this.tunings=new xu(this.apiClient),this.fileSearchStores=new Ac(this.apiClient)}};function Bu(e){return e.thought===!0}function Vu(e,t){return typeof t==`string`&&t.length>0?t:e}var Hu=/^[A-Za-z0-9+/]+={0,2}$/;function Uu(e){return!e||e.length%4!=0?!1:Hu.test(e)}function Wu(e,t){return e&&Uu(t)?t:void 0}function Gu(e){return e.startsWith(`claude-`)||e.startsWith(`gpt-oss-`)}function Ku(e){let t=e.toLowerCase().match(/^gemini(?:-live)?-(\d+)/);if(t)return Number.parseInt(t[1],10)}function qu(e){let t=Ku(e);return t===void 0?!0:t>=3}function Ju(e,t){let i=[],a=r(t.messages,e,t=>Gu(e.id)?t.replace(/[^a-zA-Z0-9_-]/g,`_`).slice(0,64):t);for(let t of a)if(t.role===`user`)if(typeof t.content==`string`)i.push({role:`user`,parts:[{text:n(t.content)}]});else{let e=t.content.map(e=>e.type===`text`?{text:n(e.text)}:{inlineData:{mimeType:e.mimeType,data:e.data}});if(e.length===0)continue;i.push({role:`user`,parts:e})}else if(t.role===`assistant`){let r=[],a=t.provider===e.provider&&t.model===e.id;for(let i of t.content)if(i.type===`text`){if(!i.text||i.text.trim()===``)continue;let e=Wu(a,i.textSignature);r.push({text:n(i.text),...e&&{thoughtSignature:e}})}else if(i.type===`thinking`){if(!i.thinking||i.thinking.trim()===``)continue;if(a){let e=Wu(a,i.thinkingSignature);r.push({thought:!0,text:n(i.thinking),...e&&{thoughtSignature:e}})}else r.push({text:n(i.thinking)})}else if(i.type===`toolCall`){let t=Wu(a,i.thoughtSignature),n={functionCall:{name:i.name,args:i.arguments??{},...Gu(e.id)?{id:i.id}:{}},...t&&{thoughtSignature:t}};r.push(n)}if(r.length===0)continue;i.push({role:`model`,parts:r})}else if(t.role===`toolResult`){let r=t.content.filter(e=>e.type===`text`).map(e=>e.text).join(`
11
- `),a=e.input.includes(`image`)?t.content.filter(e=>e.type===`image`):[],o=r.length>0,s=a.length>0,c=qu(e.id),l=o?n(r):s?`(see attached image)`:``,u=a.map(e=>({inlineData:{mimeType:e.mimeType,data:e.data}})),d=Gu(e.id),f={functionResponse:{name:t.toolName,response:t.isError?{error:l}:{output:l},...s&&c&&{parts:u},...d?{id:t.toolCallId}:{}}},p=i[i.length-1];p?.role===`user`&&p.parts?.some(e=>e.functionResponse)?p.parts.push(f):i.push({role:`user`,parts:[f]}),s&&!c&&i.push({role:`user`,parts:[{text:`Tool result image:`},...u]})}return i}var Yu=new Set([`$schema`,`$id`,`$anchor`,`$dynamicAnchor`,`$vocabulary`,`$comment`,`$defs`,`definitions`]);function Xu(e){if(typeof e!=`object`||!e||Array.isArray(e))return e;let t={};for(let[n,r]of Object.entries(e))Yu.has(n)||(t[n]=Xu(r));return t}function Zu(e,t=!1){if(e.length!==0)return[{functionDeclarations:e.map(e=>({name:e.name,description:e.description,...t?{parameters:Xu(e.parameters)}:{parametersJsonSchema:e.parameters}}))}]}function Qu(e){switch(e){case`auto`:return de.AUTO;case`none`:return de.NONE;case`any`:return de.ANY;default:return de.AUTO}}function $u(e){switch(e){case P.STOP:return`stop`;case P.MAX_TOKENS:return`length`;case P.BLOCKLIST:case P.PROHIBITED_CONTENT:case P.SPII:case P.SAFETY:case P.IMAGE_SAFETY:case P.IMAGE_PROHIBITED_CONTENT:case P.IMAGE_RECITATION:case P.IMAGE_OTHER:case P.RECITATION:case P.FINISH_REASON_UNSPECIFIED:case P.OTHER:case P.LANGUAGE:case P.MALFORMED_FUNCTION_CALL:case P.UNEXPECTED_TOOL_CALL:case P.NO_IMAGE:return`error`;default:throw Error(`Unhandled stop reason: ${e}`)}}export{Qu as a,Ie as c,$u as i,fe as l,Zu as n,Vu as o,Bu as r,zu as s,Ju as t};