keating 0.3.6

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 (249) hide show
  1. package/README.md +334 -0
  2. package/SYSTEM.md +33 -0
  3. package/bin/keating.js +31 -0
  4. package/dist/src/cli/main.js +357 -0
  5. package/dist/src/cli/setup.js +197 -0
  6. package/dist/src/cli/web.js +84 -0
  7. package/dist/src/core/animation.js +304 -0
  8. package/dist/src/core/ax-optimizer.js +81 -0
  9. package/dist/src/core/ax-prompt-learner.js +59 -0
  10. package/dist/src/core/ax-trial.js +181 -0
  11. package/dist/src/core/benchmark.js +253 -0
  12. package/dist/src/core/commands.js +57 -0
  13. package/dist/src/core/config.js +120 -0
  14. package/dist/src/core/engagement.js +235 -0
  15. package/dist/src/core/env.js +9 -0
  16. package/dist/src/core/evolution.js +242 -0
  17. package/dist/src/core/flashcards.js +133 -0
  18. package/dist/src/core/learner-state.js +108 -0
  19. package/dist/src/core/lesson-plan.js +155 -0
  20. package/dist/src/core/map-elites.js +228 -0
  21. package/dist/src/core/map.js +89 -0
  22. package/dist/src/core/mastery.js +207 -0
  23. package/dist/src/core/paths.js +100 -0
  24. package/dist/src/core/pi-agent.js +82 -0
  25. package/dist/src/core/policy.js +79 -0
  26. package/dist/src/core/project.js +337 -0
  27. package/dist/src/core/projects.js +281 -0
  28. package/dist/src/core/prompt-evolution.js +344 -0
  29. package/dist/src/core/quiz.js +194 -0
  30. package/dist/src/core/random.js +19 -0
  31. package/dist/src/core/self-improve.js +425 -0
  32. package/dist/src/core/speech.js +54 -0
  33. package/dist/src/core/terminal.js +117 -0
  34. package/dist/src/core/theme.js +101 -0
  35. package/dist/src/core/topics.js +620 -0
  36. package/dist/src/core/types.js +1 -0
  37. package/dist/src/core/util.js +30 -0
  38. package/dist/src/core/verification.js +162 -0
  39. package/dist/src/pi/hyperteacher-extension.js +573 -0
  40. package/dist/src/runtime/pi.js +343 -0
  41. package/package.json +78 -0
  42. package/pi/prompts/bridge.md +14 -0
  43. package/pi/prompts/diagnose.md +15 -0
  44. package/pi/prompts/improve.md +39 -0
  45. package/pi/prompts/learn.md +21 -0
  46. package/pi/prompts/quiz.md +14 -0
  47. package/pi/skills/adaptive-teaching/SKILL.md +33 -0
  48. package/scripts/install/install.sh +308 -0
  49. package/web/dist/.well-known/llms.txt +44 -0
  50. package/web/dist/apple-touch-icon.svg +10 -0
  51. package/web/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  52. package/web/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  53. package/web/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  54. package/web/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  55. package/web/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  56. package/web/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  57. package/web/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  58. package/web/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  59. package/web/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  60. package/web/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  61. package/web/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  62. package/web/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  63. package/web/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  64. package/web/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  65. package/web/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  66. package/web/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  67. package/web/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  68. package/web/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  69. package/web/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  70. package/web/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  71. package/web/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  72. package/web/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  73. package/web/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  74. package/web/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  75. package/web/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  76. package/web/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  77. package/web/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  78. package/web/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  79. package/web/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  80. package/web/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  81. package/web/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  82. package/web/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  83. package/web/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  84. package/web/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  85. package/web/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  86. package/web/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  87. package/web/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  88. package/web/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  89. package/web/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  90. package/web/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  91. package/web/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  92. package/web/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  93. package/web/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  94. package/web/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  95. package/web/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  96. package/web/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  97. package/web/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  98. package/web/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  99. package/web/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  100. package/web/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  101. package/web/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  102. package/web/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  103. package/web/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  104. package/web/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  105. package/web/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  106. package/web/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  107. package/web/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  108. package/web/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  109. package/web/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  110. package/web/dist/assets/_baseFor-B_cjfMB6.js +1 -0
  111. package/web/dist/assets/anthropic-BT6Vfzb1.js +36 -0
  112. package/web/dist/assets/arc-x2nTilpc.js +1 -0
  113. package/web/dist/assets/architecture-YZFGNWBL-B1hlUWjX.js +1 -0
  114. package/web/dist/assets/architectureDiagram-Q4EWVU46-CMApWFyw.js +36 -0
  115. package/web/dist/assets/array-B9UHiPd-.js +1 -0
  116. package/web/dist/assets/azure-openai-responses-CommX3YJ.js +1 -0
  117. package/web/dist/assets/blockDiagram-DXYQGD6D-DOQbsNRY.js +132 -0
  118. package/web/dist/assets/c4Diagram-AHTNJAMY-VFfRZWWA.js +10 -0
  119. package/web/dist/assets/channel-KY2Tg8Ba.js +1 -0
  120. package/web/dist/assets/chunk-2KRD3SAO-B-AqvS0u.js +1 -0
  121. package/web/dist/assets/chunk-336JU56O-DlYgPyl6.js +2 -0
  122. package/web/dist/assets/chunk-426QAEUC-CsVoBkfR.js +1 -0
  123. package/web/dist/assets/chunk-4BX2VUAB-0Z13aFAn.js +1 -0
  124. package/web/dist/assets/chunk-4TB4RGXK-DqC0Zwm7.js +206 -0
  125. package/web/dist/assets/chunk-55IACEB6-CWE_u-IY.js +1 -0
  126. package/web/dist/assets/chunk-5FUZZQ4R-CApli0xX.js +62 -0
  127. package/web/dist/assets/chunk-5PVQY5BW-Cbzhfhln.js +2 -0
  128. package/web/dist/assets/chunk-67CJDMHE-Cx7uJS4d.js +1 -0
  129. package/web/dist/assets/chunk-7N4EOEYR-CYPNsFus.js +1 -0
  130. package/web/dist/assets/chunk-AA7GKIK3-rU0uhR_u.js +1 -0
  131. package/web/dist/assets/chunk-BSJP7CBP-5VmcfR4-.js +1 -0
  132. package/web/dist/assets/chunk-Bj-mKKzh.js +1 -0
  133. package/web/dist/assets/chunk-CIAEETIT-CHJ-L8H1.js +1 -0
  134. package/web/dist/assets/chunk-EDXVE4YY-DZHAJjMI.js +1 -0
  135. package/web/dist/assets/chunk-ENJZ2VHE-DbUDFa7w.js +10 -0
  136. package/web/dist/assets/chunk-FMBD7UC4-BsYE5e_h.js +15 -0
  137. package/web/dist/assets/chunk-FOC6F5B3-Cm6aoTv7.js +1 -0
  138. package/web/dist/assets/chunk-ICPOFSXX-C5eNZ4L6.js +123 -0
  139. package/web/dist/assets/chunk-K5T4RW27-R7dAJ4rq.js +94 -0
  140. package/web/dist/assets/chunk-KGLVRYIC-MO99YZXL.js +1 -0
  141. package/web/dist/assets/chunk-LIHQZDEY-DUJ656sT.js +1 -0
  142. package/web/dist/assets/chunk-ORNJ4GCN-DXuuEC1n.js +1 -0
  143. package/web/dist/assets/chunk-OYMX7WX6-pJlEprWq.js +231 -0
  144. package/web/dist/assets/chunk-QZHKN3VN-_pQxbbiW.js +1 -0
  145. package/web/dist/assets/chunk-U2HBQHQK-Mh_l9PLe.js +70 -0
  146. package/web/dist/assets/chunk-X2U36JSP-BOeiJW0w.js +1 -0
  147. package/web/dist/assets/chunk-XPW4576I-fQ9SDvr_.js +32 -0
  148. package/web/dist/assets/chunk-YZCP3GAM-eboO4P5S.js +1 -0
  149. package/web/dist/assets/chunk-ZZ45TVLE-Cky0eqlr.js +1 -0
  150. package/web/dist/assets/classDiagram-6PBFFD2Q-DEPsZSU3.js +1 -0
  151. package/web/dist/assets/classDiagram-v2-HSJHXN6E-DhmIOEpX.js +1 -0
  152. package/web/dist/assets/clone-DeTzYqo8.js +1 -0
  153. package/web/dist/assets/cose-bilkent-S5V4N54A-N4zWUJ7C.js +1 -0
  154. package/web/dist/assets/cytoscape.esm-BBMd0vGm.js +321 -0
  155. package/web/dist/assets/dagre-IpK1aoMm.js +1 -0
  156. package/web/dist/assets/dagre-KV5264BT-DCytJuju.js +4 -0
  157. package/web/dist/assets/defaultLocale-5eAKkKJC.js +1 -0
  158. package/web/dist/assets/diagram-5BDNPKRD-Cv4miBae.js +10 -0
  159. package/web/dist/assets/diagram-G4DWMVQ6-CtICKUFi.js +24 -0
  160. package/web/dist/assets/diagram-MMDJMWI5-Cn7aGorh.js +43 -0
  161. package/web/dist/assets/diagram-TYMM5635-CCUWDPsC.js +24 -0
  162. package/web/dist/assets/dist-Dm98VvTW.js +1 -0
  163. package/web/dist/assets/env-api-keys-BNlMKqxw.js +1 -0
  164. package/web/dist/assets/erDiagram-SMLLAGMA-uT88sBlT.js +85 -0
  165. package/web/dist/assets/event-stream-D33K9rpL.js +1 -0
  166. package/web/dist/assets/flatten-C-u5nd5-.js +1 -0
  167. package/web/dist/assets/flowDiagram-DWJPFMVM-Bl3O7S1m.js +162 -0
  168. package/web/dist/assets/ganttDiagram-T4ZO3ILL-B1FhwV45.js +292 -0
  169. package/web/dist/assets/gitGraph-7Q5UKJZL-Bc_7vzer.js +1 -0
  170. package/web/dist/assets/gitGraphDiagram-UUTBAWPF-DfW6svMS.js +106 -0
  171. package/web/dist/assets/github-copilot-headers-L39QqneT.js +1 -0
  172. package/web/dist/assets/google-BdYNeCP_.js +1 -0
  173. package/web/dist/assets/google-gemini-cli-DpxAL3K4.js +2 -0
  174. package/web/dist/assets/google-shared-DyQdgtsI.js +2 -0
  175. package/web/dist/assets/google-vertex-CKRybaXj.js +1 -0
  176. package/web/dist/assets/graphlib-CMTVFyOZ.js +1 -0
  177. package/web/dist/assets/hash-kZ2KD_no.js +1 -0
  178. package/web/dist/assets/index-Bdb7P7gx.css +2 -0
  179. package/web/dist/assets/index-DNxepp8B.js +2891 -0
  180. package/web/dist/assets/info-OMHHGYJF-BGcxeaZt.js +1 -0
  181. package/web/dist/assets/infoDiagram-42DDH7IO-BbES7X_c.js +2 -0
  182. package/web/dist/assets/init-DlZdxViB.js +1 -0
  183. package/web/dist/assets/isEmpty-DssUW35f.js +1 -0
  184. package/web/dist/assets/ishikawaDiagram-UXIWVN3A-DxQ28rho.js +70 -0
  185. package/web/dist/assets/journeyDiagram-VCZTEJTY-D0X8qQ0P.js +139 -0
  186. package/web/dist/assets/json-parse-C6tSeIxX.js +2 -0
  187. package/web/dist/assets/kanban-definition-6JOO6SKY-DWYfSlpl.js +89 -0
  188. package/web/dist/assets/katex-CyM-5LlM.js +265 -0
  189. package/web/dist/assets/line-CuHce5JG.js +1 -0
  190. package/web/dist/assets/linear-Ca0Vkwuj.js +1 -0
  191. package/web/dist/assets/mermaid-parser.core-Cy4iY_Dy.js +4 -0
  192. package/web/dist/assets/mermaid.core-6PGkQdYc.js +11 -0
  193. package/web/dist/assets/mindmap-definition-QFDTVHPH-BBnKdtQh.js +96 -0
  194. package/web/dist/assets/mistral-BWaUMIgd.js +7 -0
  195. package/web/dist/assets/openai-D4NSaQIs.js +16 -0
  196. package/web/dist/assets/openai-codex-responses-CHBgKhmb.js +7 -0
  197. package/web/dist/assets/openai-completions-kcXmmaHI.js +5 -0
  198. package/web/dist/assets/openai-responses-Cqq3H3p3.js +1 -0
  199. package/web/dist/assets/openai-responses-shared-CTNuo9ci.js +10 -0
  200. package/web/dist/assets/ordinal-_K3x1fkz.js +1 -0
  201. package/web/dist/assets/ort-wasm-simd-threaded.jsep-B0T3yYHD.wasm +0 -0
  202. package/web/dist/assets/packet-4T2RLAQJ-D35ZLSBH.js +1 -0
  203. package/web/dist/assets/path-6uRLdFF7.js +1 -0
  204. package/web/dist/assets/pdf.worker.min-Cpi8b8z3.mjs +28 -0
  205. package/web/dist/assets/pie-ZZUOXDRM-DRoETpJX.js +1 -0
  206. package/web/dist/assets/pieDiagram-DEJITSTG-DfMjfTQz.js +30 -0
  207. package/web/dist/assets/preload-helper-DSXbuxSR.js +1 -0
  208. package/web/dist/assets/quadrantDiagram-34T5L4WZ-DfBSEept.js +7 -0
  209. package/web/dist/assets/radar-PYXPWWZC-DLKxRJ0V.js +1 -0
  210. package/web/dist/assets/reduce-836A2NiQ.js +1 -0
  211. package/web/dist/assets/requirementDiagram-MS252O5E-BPkxJQkz.js +84 -0
  212. package/web/dist/assets/rough.esm-Djo4Abte.js +1 -0
  213. package/web/dist/assets/sankeyDiagram-XADWPNL6-He3x9tNT.js +10 -0
  214. package/web/dist/assets/sequenceDiagram-FGHM5R23-DfCDpvrT.js +157 -0
  215. package/web/dist/assets/src-DdOdIreR.js +1 -0
  216. package/web/dist/assets/stateDiagram-FHFEXIEX-fuww6347.js +1 -0
  217. package/web/dist/assets/stateDiagram-v2-QKLJ7IA2-U6voafO3.js +1 -0
  218. package/web/dist/assets/timeline-definition-GMOUNBTQ-BWunHgBC.js +120 -0
  219. package/web/dist/assets/transform-messages-CqKEdRVp.js +1 -0
  220. package/web/dist/assets/transformers.web-DKUtmSAi.js +2818 -0
  221. package/web/dist/assets/treeView-SZITEDCU-BCx0xSAm.js +1 -0
  222. package/web/dist/assets/treemap-W4RFUUIX-2CvghWJK.js +1 -0
  223. package/web/dist/assets/vennDiagram-DHZGUBPP-CBXRutSP.js +34 -0
  224. package/web/dist/assets/wardley-RL74JXVD-BkPL_mhd.js +1 -0
  225. package/web/dist/assets/wardleyDiagram-NUSXRM2D-DTcVscPH.js +20 -0
  226. package/web/dist/assets/web-CMKYLKbT.js +10 -0
  227. package/web/dist/assets/xychartDiagram-5P7HB3ND-CZLgX9Fe.js +7 -0
  228. package/web/dist/favicon.svg +10 -0
  229. package/web/dist/index.html +104 -0
  230. package/web/dist/keating-metaharness.pdf +10557 -3
  231. package/web/dist/llms.txt +44 -0
  232. package/web/dist/logo.png +0 -0
  233. package/web/dist/manifest.webmanifest +1 -0
  234. package/web/dist/og-image.png +0 -0
  235. package/web/dist/pwa-192x192.svg +10 -0
  236. package/web/dist/pwa-512x512.svg +10 -0
  237. package/web/dist/registerSW.js +1 -0
  238. package/web/dist/robots.txt +8 -0
  239. package/web/dist/sitemap.xml +39 -0
  240. package/web/dist/sw.js +1 -0
  241. package/web/dist/tapes/doctor.mp4 +0 -0
  242. package/web/dist/tapes/feedback-flow.mp4 +0 -0
  243. package/web/dist/tapes/improve-flow.mp4 +0 -0
  244. package/web/dist/tapes/intro.mp4 +0 -0
  245. package/web/dist/tapes/learning-flow.mp4 +0 -0
  246. package/web/dist/tapes/session-flow.mp4 +0 -0
  247. package/web/dist/tapes/teacher-flow.mp4 +0 -0
  248. package/web/dist/tapes/tests.mp4 +0 -0
  249. package/web/dist/workbox-66610c77.js +1 -0
@@ -0,0 +1,10 @@
1
+ import{r as e,s as t,t as n}from"./chunk-Bj-mKKzh.js";var r=n(((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}})),i=n((e=>{var t=r();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}}})),a=n(((e,t)=>{t.exports=i()})),o=n(((e,t)=>{var n=a(),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}},o=(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,a)=>{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)){a(TypeError(`Non-error was thrown: "${e}". You should only throw errors.`));return}if(e instanceof i)c.stop(),a(e.originalError);else if(e instanceof TypeError&&!s(e.message))c.stop(),a(e);else{o(e,n,t);try{await t.onFailedAttempt(e)}catch(e){a(e);return}c.retry(e)||a(c.mainError())}}})});t.exports=c,t.exports.default=c,t.exports.AbortError=i})),s=e({ActivityHandling:()=>st,AdapterSize:()=>ke,AggregationMetric:()=>Me,ApiError:()=>ci,ApiSpec:()=>ce,AuthType:()=>oe,Batches:()=>gr,Behavior:()=>ue,BlockedReason:()=>Ce,Caches:()=>$r,CancelTuningJobResponse:()=>wt,Chat:()=>si,Chats:()=>oi,ComputeTokensResponse:()=>xt,ControlReferenceType:()=>Ge,CountTokensResponse:()=>bt,CreateFileResponse:()=>Mt,DeleteCachedContentResponse:()=>Tt,DeleteFileResponse:()=>Nt,DeleteModelResponse:()=>yt,DocumentState:()=>Fe,DynamicRetrievalConfigMode:()=>de,EditImageResponse:()=>mt,EditMode:()=>qe,EmbedContentResponse:()=>ft,EmbeddingApiType:()=>Ve,EndSensitivity:()=>ot,Environment:()=>ae,FeatureSelectionPreference:()=>Be,FileSource:()=>et,FileState:()=>$e,Files:()=>yi,FinishReason:()=>ye,FunctionCallingConfigMode:()=>fe,FunctionResponseScheduling:()=>ie,GenerateContentResponse:()=>F,GenerateImagesResponse:()=>pt,GenerateVideosOperation:()=>St,GoogleGenAI:()=>Gu,HarmBlockMethod:()=>_e,HarmBlockThreshold:()=>ve,HarmCategory:()=>ge,HarmProbability:()=>be,HarmSeverity:()=>xe,HttpElementLocation:()=>se,HttpResponse:()=>dt,ImagePromptLanguage:()=>Ue,ImportFileOperation:()=>At,JobState:()=>Ae,Language:()=>ne,ListBatchJobsResponse:()=>Ft,ListCachedContentsResponse:()=>Et,ListDocumentsResponse:()=>Dt,ListFileSearchStoresResponse:()=>Ot,ListFilesResponse:()=>jt,ListModelsResponse:()=>vt,ListTuningJobsResponse:()=>Ct,Live:()=>$s,LiveMusicPlaybackControl:()=>P,LiveMusicServerMessage:()=>Lt,LiveServerMessage:()=>It,MaskReferenceMode:()=>We,MediaModality:()=>nt,MediaResolution:()=>De,Modality:()=>Te,ModelStage:()=>Ee,Models:()=>uc,MusicGenerationMode:()=>ut,Operations:()=>dc,Outcome:()=>re,PagedItem:()=>H,Pager:()=>U,PairwiseChoice:()=>Ne,PartMediaResolutionLevel:()=>Ie,PersonGeneration:()=>me,PhishBlockThreshold:()=>le,ProminentPeople:()=>he,RecontextImageResponse:()=>gt,RegisterFilesResponse:()=>Pt,ResourceScope:()=>Re,SafetyFilterLevel:()=>He,Scale:()=>lt,SegmentImageResponse:()=>_t,SegmentMode:()=>Je,ServiceTier:()=>ze,Session:()=>tc,StartSensitivity:()=>at,SubjectReferenceType:()=>Ke,ThinkingLevel:()=>pe,Tokens:()=>kc,ToolType:()=>Le,TrafficType:()=>we,TuningJobState:()=>je,TuningMethod:()=>Qe,TuningMode:()=>Oe,TuningTask:()=>Pe,TurnCompleteReason:()=>tt,TurnCoverage:()=>ct,Type:()=>N,UploadToFileSearchStoreOperation:()=>Rt,UploadToFileSearchStoreResumableResponse:()=>kt,UpscaleImageResponse:()=>ht,UrlRetrievalStatus:()=>Se,VadSignalType:()=>rt,VideoCompressionQuality:()=>Ze,VideoGenerationMaskMode:()=>Xe,VideoGenerationReferenceType:()=>Ye,VoiceActivityType:()=>it}),c=t(o(),1),l=void 0,u=void 0;function d(){return{geminiUrl:l,vertexUrl:u}}function f(e,t,n,r){if(!e?.baseUrl){let e=d();return t?e.vertexUrl??n:e.geminiUrl??r}return e.baseUrl}var p=class{};function m(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 h(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];h(a,t.slice(r+1),n[e])}else for(let e of i)h(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];h(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 g(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=>g(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 _(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)}v(e,t,i,0,a)}}function v(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])v(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);h(t,a,i)}for(let e of a)delete t[e]}}else{let o=e;a in o&&v(o[a],t,n,r+1,i)}}function y(e){if(typeof e!=`string`)throw Error(`fromImageBytes must be a string`);return e}function b(e){let t={},n=g(e,[`operationName`]);n!=null&&h(t,[`operationName`],n);let r=g(e,[`resourceName`]);return r!=null&&h(t,[`_url`,`resourceName`],r),t}function x(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`response`,`generateVideoResponse`]);return o!=null&&h(t,[`response`],C(o)),t}function S(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`response`]);return o!=null&&h(t,[`response`],w(o)),t}function C(e){let t={},n=g(e,[`generatedSamples`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>T(e))),h(t,[`generatedVideos`],e)}let r=g(e,[`raiMediaFilteredCount`]);r!=null&&h(t,[`raiMediaFilteredCount`],r);let i=g(e,[`raiMediaFilteredReasons`]);return i!=null&&h(t,[`raiMediaFilteredReasons`],i),t}function w(e){let t={},n=g(e,[`videos`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>E(e))),h(t,[`generatedVideos`],e)}let r=g(e,[`raiMediaFilteredCount`]);r!=null&&h(t,[`raiMediaFilteredCount`],r);let i=g(e,[`raiMediaFilteredReasons`]);return i!=null&&h(t,[`raiMediaFilteredReasons`],i),t}function T(e){let t={},n=g(e,[`video`]);return n!=null&&h(t,[`video`],ee(n)),t}function E(e){let t={},n=g(e,[`_self`]);return n!=null&&h(t,[`video`],te(n)),t}function D(e){let t={},n=g(e,[`operationName`]);return n!=null&&h(t,[`_url`,`operationName`],n),t}function O(e){let t={},n=g(e,[`operationName`]);return n!=null&&h(t,[`_url`,`operationName`],n),t}function k(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`response`]);return o!=null&&h(t,[`response`],A(o)),t}function A(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`parent`]);r!=null&&h(t,[`parent`],r);let i=g(e,[`documentName`]);return i!=null&&h(t,[`documentName`],i),t}function j(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`response`]);return o!=null&&h(t,[`response`],M(o)),t}function M(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`parent`]);r!=null&&h(t,[`parent`],r);let i=g(e,[`documentName`]);return i!=null&&h(t,[`documentName`],i),t}function ee(e){let t={},n=g(e,[`uri`]);n!=null&&h(t,[`uri`],n);let r=g(e,[`encodedVideo`]);r!=null&&h(t,[`videoBytes`],y(r));let i=g(e,[`encoding`]);return i!=null&&h(t,[`mimeType`],i),t}function te(e){let t={},n=g(e,[`gcsUri`]);n!=null&&h(t,[`uri`],n);let r=g(e,[`bytesBase64Encoded`]);r!=null&&h(t,[`videoBytes`],y(r));let i=g(e,[`mimeType`]);return i!=null&&h(t,[`mimeType`],i),t}var ne;(function(e){e.LANGUAGE_UNSPECIFIED=`LANGUAGE_UNSPECIFIED`,e.PYTHON=`PYTHON`})(ne||={});var re;(function(e){e.OUTCOME_UNSPECIFIED=`OUTCOME_UNSPECIFIED`,e.OUTCOME_OK=`OUTCOME_OK`,e.OUTCOME_FAILED=`OUTCOME_FAILED`,e.OUTCOME_DEADLINE_EXCEEDED=`OUTCOME_DEADLINE_EXCEEDED`})(re||={});var ie;(function(e){e.SCHEDULING_UNSPECIFIED=`SCHEDULING_UNSPECIFIED`,e.SILENT=`SILENT`,e.WHEN_IDLE=`WHEN_IDLE`,e.INTERRUPT=`INTERRUPT`})(ie||={});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 ae;(function(e){e.ENVIRONMENT_UNSPECIFIED=`ENVIRONMENT_UNSPECIFIED`,e.ENVIRONMENT_BROWSER=`ENVIRONMENT_BROWSER`})(ae||={});var oe;(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`})(oe||={});var se;(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`})(se||={});var ce;(function(e){e.API_SPEC_UNSPECIFIED=`API_SPEC_UNSPECIFIED`,e.SIMPLE_SEARCH=`SIMPLE_SEARCH`,e.ELASTIC_SEARCH=`ELASTIC_SEARCH`})(ce||={});var le;(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`})(le||={});var ue;(function(e){e.UNSPECIFIED=`UNSPECIFIED`,e.BLOCKING=`BLOCKING`,e.NON_BLOCKING=`NON_BLOCKING`})(ue||={});var de;(function(e){e.MODE_UNSPECIFIED=`MODE_UNSPECIFIED`,e.MODE_DYNAMIC=`MODE_DYNAMIC`})(de||={});var fe;(function(e){e.MODE_UNSPECIFIED=`MODE_UNSPECIFIED`,e.AUTO=`AUTO`,e.ANY=`ANY`,e.NONE=`NONE`,e.VALIDATED=`VALIDATED`})(fe||={});var pe;(function(e){e.THINKING_LEVEL_UNSPECIFIED=`THINKING_LEVEL_UNSPECIFIED`,e.MINIMAL=`MINIMAL`,e.LOW=`LOW`,e.MEDIUM=`MEDIUM`,e.HIGH=`HIGH`})(pe||={});var me;(function(e){e.DONT_ALLOW=`DONT_ALLOW`,e.ALLOW_ADULT=`ALLOW_ADULT`,e.ALLOW_ALL=`ALLOW_ALL`})(me||={});var he;(function(e){e.PROMINENT_PEOPLE_UNSPECIFIED=`PROMINENT_PEOPLE_UNSPECIFIED`,e.ALLOW_PROMINENT_PEOPLE=`ALLOW_PROMINENT_PEOPLE`,e.BLOCK_PROMINENT_PEOPLE=`BLOCK_PROMINENT_PEOPLE`})(he||={});var ge;(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`})(ge||={});var _e;(function(e){e.HARM_BLOCK_METHOD_UNSPECIFIED=`HARM_BLOCK_METHOD_UNSPECIFIED`,e.SEVERITY=`SEVERITY`,e.PROBABILITY=`PROBABILITY`})(_e||={});var ve;(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`})(ve||={});var ye;(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`})(ye||={});var be;(function(e){e.HARM_PROBABILITY_UNSPECIFIED=`HARM_PROBABILITY_UNSPECIFIED`,e.NEGLIGIBLE=`NEGLIGIBLE`,e.LOW=`LOW`,e.MEDIUM=`MEDIUM`,e.HIGH=`HIGH`})(be||={});var xe;(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`})(xe||={});var Se;(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`})(Se||={});var Ce;(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`})(Ce||={});var we;(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`})(we||={});var Te;(function(e){e.MODALITY_UNSPECIFIED=`MODALITY_UNSPECIFIED`,e.TEXT=`TEXT`,e.IMAGE=`IMAGE`,e.AUDIO=`AUDIO`})(Te||={});var Ee;(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`})(Ee||={});var De;(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`})(De||={});var Oe;(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`})(Oe||={});var ke;(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`})(ke||={});var Ae;(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`})(Ae||={});var je;(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`})(je||={});var Me;(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`})(Me||={});var Ne;(function(e){e.PAIRWISE_CHOICE_UNSPECIFIED=`PAIRWISE_CHOICE_UNSPECIFIED`,e.BASELINE=`BASELINE`,e.CANDIDATE=`CANDIDATE`,e.TIE=`TIE`})(Ne||={});var Pe;(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`})(Pe||={});var Fe;(function(e){e.STATE_UNSPECIFIED=`STATE_UNSPECIFIED`,e.STATE_PENDING=`STATE_PENDING`,e.STATE_ACTIVE=`STATE_ACTIVE`,e.STATE_FAILED=`STATE_FAILED`})(Fe||={});var Ie;(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`})(Ie||={});var Le;(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`})(Le||={});var Re;(function(e){e.COLLECTION=`COLLECTION`})(Re||={});var ze;(function(e){e.UNSPECIFIED=`unspecified`,e.FLEX=`flex`,e.STANDARD=`standard`,e.PRIORITY=`priority`})(ze||={});var Be;(function(e){e.FEATURE_SELECTION_PREFERENCE_UNSPECIFIED=`FEATURE_SELECTION_PREFERENCE_UNSPECIFIED`,e.PRIORITIZE_QUALITY=`PRIORITIZE_QUALITY`,e.BALANCED=`BALANCED`,e.PRIORITIZE_COST=`PRIORITIZE_COST`})(Be||={});var Ve;(function(e){e.PREDICT=`PREDICT`,e.EMBED_CONTENT=`EMBED_CONTENT`})(Ve||={});var He;(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`})(He||={});var Ue;(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`})(Ue||={});var We;(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`})(We||={});var Ge;(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`})(Ge||={});var Ke;(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`})(Ke||={});var qe;(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`})(qe||={});var Je;(function(e){e.FOREGROUND=`FOREGROUND`,e.BACKGROUND=`BACKGROUND`,e.PROMPT=`PROMPT`,e.SEMANTIC=`SEMANTIC`,e.INTERACTIVE=`INTERACTIVE`})(Je||={});var Ye;(function(e){e.ASSET=`ASSET`,e.STYLE=`STYLE`})(Ye||={});var Xe;(function(e){e.INSERT=`INSERT`,e.REMOVE=`REMOVE`,e.REMOVE_STATIC=`REMOVE_STATIC`,e.OUTPAINT=`OUTPAINT`})(Xe||={});var Ze;(function(e){e.OPTIMIZED=`OPTIMIZED`,e.LOSSLESS=`LOSSLESS`})(Ze||={});var Qe;(function(e){e.SUPERVISED_FINE_TUNING=`SUPERVISED_FINE_TUNING`,e.PREFERENCE_TUNING=`PREFERENCE_TUNING`,e.DISTILLATION=`DISTILLATION`})(Qe||={});var $e;(function(e){e.STATE_UNSPECIFIED=`STATE_UNSPECIFIED`,e.PROCESSING=`PROCESSING`,e.ACTIVE=`ACTIVE`,e.FAILED=`FAILED`})($e||={});var et;(function(e){e.SOURCE_UNSPECIFIED=`SOURCE_UNSPECIFIED`,e.UPLOADED=`UPLOADED`,e.GENERATED=`GENERATED`,e.REGISTERED=`REGISTERED`})(et||={});var tt;(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`})(tt||={});var nt;(function(e){e.MODALITY_UNSPECIFIED=`MODALITY_UNSPECIFIED`,e.TEXT=`TEXT`,e.IMAGE=`IMAGE`,e.VIDEO=`VIDEO`,e.AUDIO=`AUDIO`,e.DOCUMENT=`DOCUMENT`})(nt||={});var rt;(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`})(rt||={});var it;(function(e){e.TYPE_UNSPECIFIED=`TYPE_UNSPECIFIED`,e.ACTIVITY_START=`ACTIVITY_START`,e.ACTIVITY_END=`ACTIVITY_END`})(it||={});var at;(function(e){e.START_SENSITIVITY_UNSPECIFIED=`START_SENSITIVITY_UNSPECIFIED`,e.START_SENSITIVITY_HIGH=`START_SENSITIVITY_HIGH`,e.START_SENSITIVITY_LOW=`START_SENSITIVITY_LOW`})(at||={});var ot;(function(e){e.END_SENSITIVITY_UNSPECIFIED=`END_SENSITIVITY_UNSPECIFIED`,e.END_SENSITIVITY_HIGH=`END_SENSITIVITY_HIGH`,e.END_SENSITIVITY_LOW=`END_SENSITIVITY_LOW`})(ot||={});var st;(function(e){e.ACTIVITY_HANDLING_UNSPECIFIED=`ACTIVITY_HANDLING_UNSPECIFIED`,e.START_OF_ACTIVITY_INTERRUPTS=`START_OF_ACTIVITY_INTERRUPTS`,e.NO_INTERRUPTION=`NO_INTERRUPTION`})(st||={});var ct;(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`})(ct||={});var lt;(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`})(lt||={});var ut;(function(e){e.MUSIC_GENERATION_MODE_UNSPECIFIED=`MUSIC_GENERATION_MODE_UNSPECIFIED`,e.QUALITY=`QUALITY`,e.DIVERSITY=`DIVERSITY`,e.VOCALIZATION=`VOCALIZATION`})(ut||={});var P;(function(e){e.PLAYBACK_CONTROL_UNSPECIFIED=`PLAYBACK_CONTROL_UNSPECIFIED`,e.PLAY=`PLAY`,e.PAUSE=`PAUSE`,e.STOP=`STOP`,e.RESET_CONTEXT=`RESET_CONTEXT`})(P||={});var dt=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()}},F=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?S(a):x(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=k(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=j(t);return Object.assign(r,i),r}};function I(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=I(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 L(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=L(e);return t.parts&&t.parts.length>0&&t.parts[0].text!==void 0?[t.parts[0].text]:[]});if(e.isVertexAI()){let e=L(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=>L(e)):[L(t)]}function R(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[L(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 z(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 B(e){return y(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 V(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 vn(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 yn(e){return e.includes(`gemini`)&&e!==`gemini-embedding-001`||e.includes(`maas`)}function bn(e){let t={},n=g(e,[`apiKey`]);if(n!=null&&h(t,[`apiKey`],n),g(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(g(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(g(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(g(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(g(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(g(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function xn(e){let t={},n=g(e,[`responsesFile`]);n!=null&&h(t,[`fileName`],n);let r=g(e,[`inlinedResponses`,`inlinedResponses`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>ar(e))),h(t,[`inlinedResponses`],e)}let i=g(e,[`inlinedEmbedContentResponses`,`inlinedResponses`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`inlinedEmbedContentResponses`],e)}return t}function Sn(e){let t={},n=g(e,[`predictionsFormat`]);n!=null&&h(t,[`format`],n);let r=g(e,[`gcsDestination`,`outputUriPrefix`]);r!=null&&h(t,[`gcsUri`],r);let i=g(e,[`bigqueryDestination`,`outputUri`]);return i!=null&&h(t,[`bigqueryUri`],i),t}function Cn(e){let t={},n=g(e,[`format`]);n!=null&&h(t,[`predictionsFormat`],n);let r=g(e,[`gcsUri`]);r!=null&&h(t,[`gcsDestination`,`outputUriPrefix`],r);let i=g(e,[`bigqueryUri`]);if(i!=null&&h(t,[`bigqueryDestination`,`outputUri`],i),g(e,[`fileName`])!==void 0)throw Error(`fileName parameter is not supported in Vertex AI.`);if(g(e,[`inlinedResponses`])!==void 0)throw Error(`inlinedResponses parameter is not supported in Vertex AI.`);if(g(e,[`inlinedEmbedContentResponses`])!==void 0)throw Error(`inlinedEmbedContentResponses parameter is not supported in Vertex AI.`);return t}function wn(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`,`displayName`]);r!=null&&h(t,[`displayName`],r);let i=g(e,[`metadata`,`state`]);i!=null&&h(t,[`state`],vn(i));let a=g(e,[`metadata`,`createTime`]);a!=null&&h(t,[`createTime`],a);let o=g(e,[`metadata`,`endTime`]);o!=null&&h(t,[`endTime`],o);let s=g(e,[`metadata`,`updateTime`]);s!=null&&h(t,[`updateTime`],s);let c=g(e,[`metadata`,`model`]);c!=null&&h(t,[`model`],c);let l=g(e,[`metadata`,`output`]);return l!=null&&h(t,[`dest`],xn(_n(l))),t}function Tn(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`displayName`]);r!=null&&h(t,[`displayName`],r);let i=g(e,[`state`]);i!=null&&h(t,[`state`],vn(i));let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`createTime`]);o!=null&&h(t,[`createTime`],o);let s=g(e,[`startTime`]);s!=null&&h(t,[`startTime`],s);let c=g(e,[`endTime`]);c!=null&&h(t,[`endTime`],c);let l=g(e,[`updateTime`]);l!=null&&h(t,[`updateTime`],l);let u=g(e,[`model`]);u!=null&&h(t,[`model`],u);let d=g(e,[`inputConfig`]);d!=null&&h(t,[`src`],En(d));let f=g(e,[`outputConfig`]);f!=null&&h(t,[`dest`],Sn(_n(f)));let p=g(e,[`completionStats`]);return p!=null&&h(t,[`completionStats`],p),t}function En(e){let t={},n=g(e,[`instancesFormat`]);n!=null&&h(t,[`format`],n);let r=g(e,[`gcsSource`,`uris`]);r!=null&&h(t,[`gcsUri`],r);let i=g(e,[`bigquerySource`,`inputUri`]);return i!=null&&h(t,[`bigqueryUri`],i),t}function Dn(e,t){let n={};if(g(t,[`format`])!==void 0)throw Error(`format parameter is not supported in Gemini API.`);if(g(t,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);if(g(t,[`bigqueryUri`])!==void 0)throw Error(`bigqueryUri parameter is not supported in Gemini API.`);let r=g(t,[`fileName`]);r!=null&&h(n,[`fileName`],r);let i=g(t,[`inlinedRequests`]);if(i!=null){let t=i;Array.isArray(t)&&(t=t.map(t=>ir(e,t))),h(n,[`requests`,`requests`],t)}return n}function On(e){let t={},n=g(e,[`format`]);n!=null&&h(t,[`instancesFormat`],n);let r=g(e,[`gcsUri`]);r!=null&&h(t,[`gcsSource`,`uris`],r);let i=g(e,[`bigqueryUri`]);if(i!=null&&h(t,[`bigquerySource`,`inputUri`],i),g(e,[`fileName`])!==void 0)throw Error(`fileName parameter is not supported in Vertex AI.`);if(g(e,[`inlinedRequests`])!==void 0)throw Error(`inlinedRequests parameter is not supported in Vertex AI.`);return t}function kn(e){let t={},n=g(e,[`data`]);if(n!=null&&h(t,[`data`],n),g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function An(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function jn(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function Mn(e){let t={},n=g(e,[`content`]);n!=null&&h(t,[`content`],n);let r=g(e,[`citationMetadata`]);r!=null&&h(t,[`citationMetadata`],Nn(r));let i=g(e,[`tokenCount`]);i!=null&&h(t,[`tokenCount`],i);let a=g(e,[`finishReason`]);a!=null&&h(t,[`finishReason`],a);let o=g(e,[`groundingMetadata`]);o!=null&&h(t,[`groundingMetadata`],o);let s=g(e,[`avgLogprobs`]);s!=null&&h(t,[`avgLogprobs`],s);let c=g(e,[`index`]);c!=null&&h(t,[`index`],c);let l=g(e,[`logprobsResult`]);l!=null&&h(t,[`logprobsResult`],l);let u=g(e,[`safetyRatings`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`safetyRatings`],e)}let d=g(e,[`urlContextMetadata`]);return d!=null&&h(t,[`urlContextMetadata`],d),t}function Nn(e){let t={},n=g(e,[`citationSources`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`citations`],e)}return t}function Pn(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>fr(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function Fn(e,t){let n={},r=g(e,[`displayName`]);if(t!==void 0&&r!=null&&h(t,[`batch`,`displayName`],r),g(e,[`dest`])!==void 0)throw Error(`dest parameter is not supported in Gemini API.`);return n}function In(e,t){let n={},r=g(e,[`displayName`]);t!==void 0&&r!=null&&h(t,[`displayName`],r);let i=g(e,[`dest`]);return t!==void 0&&i!=null&&h(t,[`outputConfig`],Cn(gn(i))),n}function Ln(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`_url`,`model`],I(e,r));let i=g(t,[`src`]);i!=null&&h(n,[`batch`,`inputConfig`],Dn(e,hn(e,i)));let a=g(t,[`config`]);return a!=null&&Fn(a,n),n}function Rn(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`model`],I(e,r));let i=g(t,[`src`]);i!=null&&h(n,[`inputConfig`],On(hn(e,i)));let a=g(t,[`config`]);return a!=null&&In(a,n),n}function zn(e,t){let n={},r=g(e,[`displayName`]);return t!==void 0&&r!=null&&h(t,[`batch`,`displayName`],r),n}function Bn(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`_url`,`model`],I(e,r));let i=g(t,[`src`]);i!=null&&h(n,[`batch`,`inputConfig`],qn(e,i));let a=g(t,[`config`]);return a!=null&&zn(a,n),n}function Vn(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function Hn(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function Un(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`name`]);r!=null&&h(t,[`name`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);return a!=null&&h(t,[`error`],a),t}function Wn(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`name`]);r!=null&&h(t,[`name`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);return a!=null&&h(t,[`error`],a),t}function Gn(e,t){let n={},r=g(t,[`contents`]);if(r!=null){let t=Yt(e,r);Array.isArray(t)&&(t=t.map(e=>e)),h(n,[`requests[]`,`request`,`content`],t)}let i=g(t,[`config`]);return i!=null&&(h(n,[`_self`],Kn(i,n)),_(n,{"requests[].*":`requests[].request.*`})),n}function Kn(e,t){let n={},r=g(e,[`taskType`]);t!==void 0&&r!=null&&h(t,[`requests[]`,`taskType`],r);let i=g(e,[`title`]);t!==void 0&&i!=null&&h(t,[`requests[]`,`title`],i);let a=g(e,[`outputDimensionality`]);if(t!==void 0&&a!=null&&h(t,[`requests[]`,`outputDimensionality`],a),g(e,[`mimeType`])!==void 0)throw Error(`mimeType parameter is not supported in Gemini API.`);if(g(e,[`autoTruncate`])!==void 0)throw Error(`autoTruncate parameter is not supported in Gemini API.`);return n}function qn(e,t){let n={},r=g(t,[`fileName`]);r!=null&&h(n,[`file_name`],r);let i=g(t,[`inlinedRequests`]);return i!=null&&h(n,[`requests`],Gn(e,i)),n}function Jn(e){let t={};if(g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=g(e,[`fileUri`]);n!=null&&h(t,[`fileUri`],n);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function Yn(e){let t={},n=g(e,[`id`]);n!=null&&h(t,[`id`],n);let r=g(e,[`args`]);r!=null&&h(t,[`args`],r);let i=g(e,[`name`]);if(i!=null&&h(t,[`name`],i),g(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(g(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function Xn(e){let t={},n=g(e,[`allowedFunctionNames`]);n!=null&&h(t,[`allowedFunctionNames`],n);let r=g(e,[`mode`]);if(r!=null&&h(t,[`mode`],r),g(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return t}function Zn(e,t,n){let r={},i=g(t,[`systemInstruction`]);n!==void 0&&i!=null&&h(n,[`systemInstruction`],Pn(L(i)));let a=g(t,[`temperature`]);a!=null&&h(r,[`temperature`],a);let o=g(t,[`topP`]);o!=null&&h(r,[`topP`],o);let s=g(t,[`topK`]);s!=null&&h(r,[`topK`],s);let c=g(t,[`candidateCount`]);c!=null&&h(r,[`candidateCount`],c);let l=g(t,[`maxOutputTokens`]);l!=null&&h(r,[`maxOutputTokens`],l);let u=g(t,[`stopSequences`]);u!=null&&h(r,[`stopSequences`],u);let d=g(t,[`responseLogprobs`]);d!=null&&h(r,[`responseLogprobs`],d);let f=g(t,[`logprobs`]);f!=null&&h(r,[`logprobs`],f);let p=g(t,[`presencePenalty`]);p!=null&&h(r,[`presencePenalty`],p);let m=g(t,[`frequencyPenalty`]);m!=null&&h(r,[`frequencyPenalty`],m);let _=g(t,[`seed`]);_!=null&&h(r,[`seed`],_);let v=g(t,[`responseMimeType`]);v!=null&&h(r,[`responseMimeType`],v);let y=g(t,[`responseSchema`]);y!=null&&h(r,[`responseSchema`],Qt(y));let b=g(t,[`responseJsonSchema`]);if(b!=null&&h(r,[`responseJsonSchema`],b),g(t,[`routingConfig`])!==void 0)throw Error(`routingConfig parameter is not supported in Gemini API.`);if(g(t,[`modelSelectionConfig`])!==void 0)throw Error(`modelSelectionConfig parameter is not supported in Gemini API.`);let x=g(t,[`safetySettings`]);if(n!==void 0&&x!=null){let e=x;Array.isArray(e)&&(e=e.map(e=>pr(e))),h(n,[`safetySettings`],e)}let S=g(t,[`tools`]);if(n!==void 0&&S!=null){let e=nn(S);Array.isArray(e)&&(e=e.map(e=>hr(tn(e)))),h(n,[`tools`],e)}let C=g(t,[`toolConfig`]);if(n!==void 0&&C!=null&&h(n,[`toolConfig`],mr(C)),g(t,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let w=g(t,[`cachedContent`]);n!==void 0&&w!=null&&h(n,[`cachedContent`],z(e,w));let T=g(t,[`responseModalities`]);T!=null&&h(r,[`responseModalities`],T);let E=g(t,[`mediaResolution`]);E!=null&&h(r,[`mediaResolution`],E);let D=g(t,[`speechConfig`]);if(D!=null&&h(r,[`speechConfig`],$t(D)),g(t,[`audioTimestamp`])!==void 0)throw Error(`audioTimestamp parameter is not supported in Gemini API.`);let O=g(t,[`thinkingConfig`]);O!=null&&h(r,[`thinkingConfig`],O);let k=g(t,[`imageConfig`]);k!=null&&h(r,[`imageConfig`],rr(k));let A=g(t,[`enableEnhancedCivicAnswers`]);if(A!=null&&h(r,[`enableEnhancedCivicAnswers`],A),g(t,[`modelArmorConfig`])!==void 0)throw Error(`modelArmorConfig parameter is not supported in Gemini API.`);let j=g(t,[`serviceTier`]);return n!==void 0&&j!=null&&h(n,[`serviceTier`],j),r}function Qn(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`candidates`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Mn(e))),h(t,[`candidates`],e)}let i=g(e,[`modelVersion`]);i!=null&&h(t,[`modelVersion`],i);let a=g(e,[`promptFeedback`]);a!=null&&h(t,[`promptFeedback`],a);let o=g(e,[`responseId`]);o!=null&&h(t,[`responseId`],o);let s=g(e,[`usageMetadata`]);s!=null&&h(t,[`usageMetadata`],s);let c=g(e,[`modelStatus`]);return c!=null&&h(t,[`modelStatus`],c),t}function $n(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function er(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],V(e,r)),n}function tr(e){let t={},n=g(e,[`authConfig`]);n!=null&&h(t,[`authConfig`],bn(n));let r=g(e,[`enableWidget`]);return r!=null&&h(t,[`enableWidget`],r),t}function nr(e){let t={},n=g(e,[`searchTypes`]);if(n!=null&&h(t,[`searchTypes`],n),g(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(g(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=g(e,[`timeRangeFilter`]);return r!=null&&h(t,[`timeRangeFilter`],r),t}function rr(e){let t={},n=g(e,[`aspectRatio`]);n!=null&&h(t,[`aspectRatio`],n);let r=g(e,[`imageSize`]);if(r!=null&&h(t,[`imageSize`],r),g(e,[`personGeneration`])!==void 0)throw Error(`personGeneration parameter is not supported in Gemini API.`);if(g(e,[`prominentPeople`])!==void 0)throw Error(`prominentPeople parameter is not supported in Gemini API.`);if(g(e,[`outputMimeType`])!==void 0)throw Error(`outputMimeType parameter is not supported in Gemini API.`);if(g(e,[`outputCompressionQuality`])!==void 0)throw Error(`outputCompressionQuality parameter is not supported in Gemini API.`);if(g(e,[`imageOutputOptions`])!==void 0)throw Error(`imageOutputOptions parameter is not supported in Gemini API.`);return t}function ir(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`request`,`model`],I(e,r));let i=g(t,[`contents`]);if(i!=null){let e=R(i);Array.isArray(e)&&(e=e.map(e=>Pn(e))),h(n,[`request`,`contents`],e)}let a=g(t,[`metadata`]);a!=null&&h(n,[`metadata`],a);let o=g(t,[`config`]);return o!=null&&h(n,[`request`,`generationConfig`],Zn(e,o,g(n,[`request`],{}))),n}function ar(e){let t={},n=g(e,[`response`]);n!=null&&h(t,[`response`],Qn(n));let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`error`]);return i!=null&&h(t,[`error`],i),t}function or(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);if(t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),g(e,[`filter`])!==void 0)throw Error(`filter parameter is not supported in Gemini API.`);return n}function sr(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i);let a=g(e,[`filter`]);return t!==void 0&&a!=null&&h(t,[`_query`,`filter`],a),n}function cr(e){let t={},n=g(e,[`config`]);return n!=null&&or(n,t),t}function lr(e){let t={},n=g(e,[`config`]);return n!=null&&sr(n,t),t}function ur(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`operations`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>wn(e))),h(t,[`batchJobs`],e)}return t}function dr(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`batchPredictionJobs`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>Tn(e))),h(t,[`batchJobs`],e)}return t}function fr(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],Jn(a));let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],Yn(o));let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],kn(c));let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);f!=null&&h(t,[`videoMetadata`],f);let p=g(e,[`toolCall`]);p!=null&&h(t,[`toolCall`],p);let m=g(e,[`toolResponse`]);m!=null&&h(t,[`toolResponse`],m);let _=g(e,[`partMetadata`]);return _!=null&&h(t,[`partMetadata`],_),t}function pr(e){let t={},n=g(e,[`category`]);if(n!=null&&h(t,[`category`],n),g(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let r=g(e,[`threshold`]);return r!=null&&h(t,[`threshold`],r),t}function mr(e){let t={},n=g(e,[`retrievalConfig`]);n!=null&&h(t,[`retrievalConfig`],n);let r=g(e,[`functionCallingConfig`]);r!=null&&h(t,[`functionCallingConfig`],Xn(r));let i=g(e,[`includeServerSideToolInvocations`]);return i!=null&&h(t,[`includeServerSideToolInvocations`],i),t}function hr(e){let t={};if(g(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=g(e,[`computerUse`]);n!=null&&h(t,[`computerUse`],n);let r=g(e,[`fileSearch`]);r!=null&&h(t,[`fileSearch`],r);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],nr(i));let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],tr(a));let o=g(e,[`codeExecution`]);if(o!=null&&h(t,[`codeExecution`],o),g(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=g(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`functionDeclarations`],e)}let c=g(e,[`googleSearchRetrieval`]);if(c!=null&&h(t,[`googleSearchRetrieval`],c),g(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=g(e,[`urlContext`]);l!=null&&h(t,[`urlContext`],l);let u=g(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`mcpServers`],e)}return t}var H;(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`})(H||={});var U=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}},gr=class extends p{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new U(H.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=Ln(this.apiClient,e),n=t._url,r=m(`{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=Rn(this.apiClient,e);return n=m(`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=>Tn(e))}else{let i=Ln(this.apiClient,e);return n=m(`{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=>wn(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=Bn(this.apiClient,e);return n=m(`{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=>wn(e))}}async get(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=er(this.apiClient,e);return n=m(`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=>Tn(e))}else{let i=$n(this.apiClient,e);return n=m(`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=>wn(e))}}async cancel(e){let t=``,n={};if(this.apiClient.isVertexAI()){let r=jn(this.apiClient,e);t=m(`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=An(this.apiClient,e);t=m(`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=lr(e);return n=m(`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=dr(e),n=new Ft;return Object.assign(n,t),n})}else{let i=cr(e);return n=m(`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=ur(e),n=new Ft;return Object.assign(n,t),n})}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Hn(this.apiClient,e);return n=m(`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=>Wn(e))}else{let i=Vn(this.apiClient,e);return n=m(`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=>Un(e))}}};function _r(e){let t={},n=g(e,[`apiKey`]);if(n!=null&&h(t,[`apiKey`],n),g(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(g(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(g(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(g(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(g(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(g(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function vr(e){let t={},n=g(e,[`data`]);if(n!=null&&h(t,[`data`],n),g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function yr(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Ur(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function br(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Wr(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function xr(e,t){let n={},r=g(e,[`ttl`]);t!==void 0&&r!=null&&h(t,[`ttl`],r);let i=g(e,[`expireTime`]);t!==void 0&&i!=null&&h(t,[`expireTime`],i);let a=g(e,[`displayName`]);t!==void 0&&a!=null&&h(t,[`displayName`],a);let o=g(e,[`contents`]);if(t!==void 0&&o!=null){let e=R(o);Array.isArray(e)&&(e=e.map(e=>yr(e))),h(t,[`contents`],e)}let s=g(e,[`systemInstruction`]);t!==void 0&&s!=null&&h(t,[`systemInstruction`],yr(L(s)));let c=g(e,[`tools`]);if(t!==void 0&&c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>qr(e))),h(t,[`tools`],e)}let l=g(e,[`toolConfig`]);if(t!==void 0&&l!=null&&h(t,[`toolConfig`],Gr(l)),g(e,[`kmsKeyName`])!==void 0)throw Error(`kmsKeyName parameter is not supported in Gemini API.`);return n}function Sr(e,t){let n={},r=g(e,[`ttl`]);t!==void 0&&r!=null&&h(t,[`ttl`],r);let i=g(e,[`expireTime`]);t!==void 0&&i!=null&&h(t,[`expireTime`],i);let a=g(e,[`displayName`]);t!==void 0&&a!=null&&h(t,[`displayName`],a);let o=g(e,[`contents`]);if(t!==void 0&&o!=null){let e=R(o);Array.isArray(e)&&(e=e.map(e=>br(e))),h(t,[`contents`],e)}let s=g(e,[`systemInstruction`]);t!==void 0&&s!=null&&h(t,[`systemInstruction`],br(L(s)));let c=g(e,[`tools`]);if(t!==void 0&&c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Jr(e))),h(t,[`tools`],e)}let l=g(e,[`toolConfig`]);t!==void 0&&l!=null&&h(t,[`toolConfig`],Kr(l));let u=g(e,[`kmsKeyName`]);return t!==void 0&&u!=null&&h(t,[`encryption_spec`,`kmsKeyName`],u),n}function Cr(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`model`],zt(e,r));let i=g(t,[`config`]);return i!=null&&xr(i,n),n}function wr(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`model`],zt(e,r));let i=g(t,[`config`]);return i!=null&&Sr(i,n),n}function Tr(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],z(e,r)),n}function Er(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],z(e,r)),n}function Dr(e){let t={},n=g(e,[`sdkHttpResponse`]);return n!=null&&h(t,[`sdkHttpResponse`],n),t}function Or(e){let t={},n=g(e,[`sdkHttpResponse`]);return n!=null&&h(t,[`sdkHttpResponse`],n),t}function kr(e){let t={};if(g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=g(e,[`fileUri`]);n!=null&&h(t,[`fileUri`],n);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function Ar(e){let t={},n=g(e,[`id`]);n!=null&&h(t,[`id`],n);let r=g(e,[`args`]);r!=null&&h(t,[`args`],r);let i=g(e,[`name`]);if(i!=null&&h(t,[`name`],i),g(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(g(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function jr(e){let t={},n=g(e,[`allowedFunctionNames`]);n!=null&&h(t,[`allowedFunctionNames`],n);let r=g(e,[`mode`]);if(r!=null&&h(t,[`mode`],r),g(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return t}function Mr(e){let t={},n=g(e,[`description`]);n!=null&&h(t,[`description`],n);let r=g(e,[`name`]);r!=null&&h(t,[`name`],r);let i=g(e,[`parameters`]);i!=null&&h(t,[`parameters`],i);let a=g(e,[`parametersJsonSchema`]);a!=null&&h(t,[`parametersJsonSchema`],a);let o=g(e,[`response`]);o!=null&&h(t,[`response`],o);let s=g(e,[`responseJsonSchema`]);if(s!=null&&h(t,[`responseJsonSchema`],s),g(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return t}function Nr(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],z(e,r)),n}function Pr(e,t){let n={},r=g(t,[`name`]);return r!=null&&h(n,[`_url`,`name`],z(e,r)),n}function Fr(e){let t={},n=g(e,[`authConfig`]);n!=null&&h(t,[`authConfig`],_r(n));let r=g(e,[`enableWidget`]);return r!=null&&h(t,[`enableWidget`],r),t}function Ir(e){let t={},n=g(e,[`searchTypes`]);if(n!=null&&h(t,[`searchTypes`],n),g(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(g(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=g(e,[`timeRangeFilter`]);return r!=null&&h(t,[`timeRangeFilter`],r),t}function Lr(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);return t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),n}function Rr(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);return t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),n}function zr(e){let t={},n=g(e,[`config`]);return n!=null&&Lr(n,t),t}function Br(e){let t={},n=g(e,[`config`]);return n!=null&&Rr(n,t),t}function Vr(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`cachedContents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`cachedContents`],e)}return t}function Hr(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`cachedContents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`cachedContents`],e)}return t}function Ur(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],kr(a));let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],Ar(o));let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],vr(c));let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);f!=null&&h(t,[`videoMetadata`],f);let p=g(e,[`toolCall`]);p!=null&&h(t,[`toolCall`],p);let m=g(e,[`toolResponse`]);m!=null&&h(t,[`toolResponse`],m);let _=g(e,[`partMetadata`]);return _!=null&&h(t,[`partMetadata`],_),t}function Wr(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],a);let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],o);let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],c);let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);if(f!=null&&h(t,[`videoMetadata`],f),g(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(g(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(g(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return t}function Gr(e){let t={},n=g(e,[`retrievalConfig`]);n!=null&&h(t,[`retrievalConfig`],n);let r=g(e,[`functionCallingConfig`]);r!=null&&h(t,[`functionCallingConfig`],jr(r));let i=g(e,[`includeServerSideToolInvocations`]);return i!=null&&h(t,[`includeServerSideToolInvocations`],i),t}function Kr(e){let t={},n=g(e,[`retrievalConfig`]);n!=null&&h(t,[`retrievalConfig`],n);let r=g(e,[`functionCallingConfig`]);if(r!=null&&h(t,[`functionCallingConfig`],r),g(e,[`includeServerSideToolInvocations`])!==void 0)throw Error(`includeServerSideToolInvocations parameter is not supported in Vertex AI.`);return t}function qr(e){let t={};if(g(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=g(e,[`computerUse`]);n!=null&&h(t,[`computerUse`],n);let r=g(e,[`fileSearch`]);r!=null&&h(t,[`fileSearch`],r);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],Ir(i));let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],Fr(a));let o=g(e,[`codeExecution`]);if(o!=null&&h(t,[`codeExecution`],o),g(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=g(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`functionDeclarations`],e)}let c=g(e,[`googleSearchRetrieval`]);if(c!=null&&h(t,[`googleSearchRetrieval`],c),g(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=g(e,[`urlContext`]);l!=null&&h(t,[`urlContext`],l);let u=g(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`mcpServers`],e)}return t}function Jr(e){let t={},n=g(e,[`retrieval`]);n!=null&&h(t,[`retrieval`],n);let r=g(e,[`computerUse`]);if(r!=null&&h(t,[`computerUse`],r),g(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],i);let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],a);let o=g(e,[`codeExecution`]);o!=null&&h(t,[`codeExecution`],o);let s=g(e,[`enterpriseWebSearch`]);s!=null&&h(t,[`enterpriseWebSearch`],s);let c=g(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Mr(e))),h(t,[`functionDeclarations`],e)}let l=g(e,[`googleSearchRetrieval`]);l!=null&&h(t,[`googleSearchRetrieval`],l);let u=g(e,[`parallelAiSearch`]);u!=null&&h(t,[`parallelAiSearch`],u);let d=g(e,[`urlContext`]);if(d!=null&&h(t,[`urlContext`],d),g(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return t}function Yr(e,t){let n={},r=g(e,[`ttl`]);t!==void 0&&r!=null&&h(t,[`ttl`],r);let i=g(e,[`expireTime`]);return t!==void 0&&i!=null&&h(t,[`expireTime`],i),n}function Xr(e,t){let n={},r=g(e,[`ttl`]);t!==void 0&&r!=null&&h(t,[`ttl`],r);let i=g(e,[`expireTime`]);return t!==void 0&&i!=null&&h(t,[`expireTime`],i),n}function Zr(e,t){let n={},r=g(t,[`name`]);r!=null&&h(n,[`_url`,`name`],z(e,r));let i=g(t,[`config`]);return i!=null&&Yr(i,n),n}function Qr(e,t){let n={},r=g(t,[`name`]);r!=null&&h(n,[`_url`,`name`],z(e,r));let i=g(t,[`config`]);return i!=null&&Xr(i,n),n}var $r=class extends p{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new U(H.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=wr(this.apiClient,e);return n=m(`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=Cr(this.apiClient,e);return n=m(`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=Pr(this.apiClient,e);return n=m(`{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=Nr(this.apiClient,e);return n=m(`{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=Er(this.apiClient,e);return n=m(`{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})}else{let i=Tr(this.apiClient,e);return n=m(`{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=Dr(e),n=new Tt;return Object.assign(n,t),n})}}async update(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Qr(this.apiClient,e);return n=m(`{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=Zr(this.apiClient,e);return n=m(`{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=Br(e);return n=m(`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})}else{let i=zr(e);return n=m(`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=Vr(e),n=new Et;return Object.assign(n,t),n})}}};function ei(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 W(e){return this instanceof W?(this.v=e,this):new W(e)}function G(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 W?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 K(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=L(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=L(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 G(this,arguments,function*(){var n,r,i,a;let o=[];try{for(var s=!0,c=K(e),l;l=yield W(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 W(e)}}catch(e){r={error:e}}finally{try{!s&&!n&&(i=c.return)&&(yield W(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=g(e,[`file`]);return n!=null&&h(t,[`file`],n),t}function ui(e){let t={},n=g(e,[`sdkHttpResponse`]);return n!=null&&h(t,[`sdkHttpResponse`],n),t}function di(e){let t={},n=g(e,[`name`]);return n!=null&&h(t,[`_url`,`file`],ln(n)),t}function fi(e){let t={},n=g(e,[`sdkHttpResponse`]);return n!=null&&h(t,[`sdkHttpResponse`],n),t}function pi(e){let t={},n=g(e,[`name`]);return n!=null&&h(t,[`_url`,`file`],ln(n)),t}function mi(e){let t={},n=g(e,[`uris`]);return n!=null&&h(t,[`uris`],n),t}function hi(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);return t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),n}function gi(e){let t={},n=g(e,[`config`]);return n!=null&&hi(n,t),t}function _i(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`files`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`files`],e)}return t}function vi(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`files`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`files`],e)}return t}var yi=class extends p{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new U(H.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=m(`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=m(`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=m(`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=m(`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=m(`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(g(e,[`languageCodes`])!==void 0)throw Error(`languageCodes parameter is not supported in Gemini API.`);return t}function xi(e){let t={},n=g(e,[`apiKey`]);if(n!=null&&h(t,[`apiKey`],n),g(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(g(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(g(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(g(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(g(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(g(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function Si(e){let t={},n=g(e,[`data`]);if(n!=null&&h(t,[`data`],n),g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function Ci(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Vi(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function wi(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Hi(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function Ti(e){let t={};if(g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=g(e,[`fileUri`]);n!=null&&h(t,[`fileUri`],n);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function Ei(e){let t={},n=g(e,[`id`]);n!=null&&h(t,[`id`],n);let r=g(e,[`args`]);r!=null&&h(t,[`args`],r);let i=g(e,[`name`]);if(i!=null&&h(t,[`name`],i),g(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(g(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function Di(e){let t={},n=g(e,[`description`]);n!=null&&h(t,[`description`],n);let r=g(e,[`name`]);r!=null&&h(t,[`name`],r);let i=g(e,[`parameters`]);i!=null&&h(t,[`parameters`],i);let a=g(e,[`parametersJsonSchema`]);a!=null&&h(t,[`parametersJsonSchema`],a);let o=g(e,[`response`]);o!=null&&h(t,[`response`],o);let s=g(e,[`responseJsonSchema`]);if(s!=null&&h(t,[`responseJsonSchema`],s),g(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return t}function Oi(e){let t={},n=g(e,[`modelSelectionConfig`]);n!=null&&h(t,[`modelConfig`],n);let r=g(e,[`responseJsonSchema`]);r!=null&&h(t,[`responseJsonSchema`],r);let i=g(e,[`audioTimestamp`]);i!=null&&h(t,[`audioTimestamp`],i);let a=g(e,[`candidateCount`]);a!=null&&h(t,[`candidateCount`],a);let o=g(e,[`enableAffectiveDialog`]);o!=null&&h(t,[`enableAffectiveDialog`],o);let s=g(e,[`frequencyPenalty`]);s!=null&&h(t,[`frequencyPenalty`],s);let c=g(e,[`logprobs`]);c!=null&&h(t,[`logprobs`],c);let l=g(e,[`maxOutputTokens`]);l!=null&&h(t,[`maxOutputTokens`],l);let u=g(e,[`mediaResolution`]);u!=null&&h(t,[`mediaResolution`],u);let d=g(e,[`presencePenalty`]);d!=null&&h(t,[`presencePenalty`],d);let f=g(e,[`responseLogprobs`]);f!=null&&h(t,[`responseLogprobs`],f);let p=g(e,[`responseMimeType`]);p!=null&&h(t,[`responseMimeType`],p);let m=g(e,[`responseModalities`]);m!=null&&h(t,[`responseModalities`],m);let _=g(e,[`responseSchema`]);_!=null&&h(t,[`responseSchema`],_);let v=g(e,[`routingConfig`]);v!=null&&h(t,[`routingConfig`],v);let y=g(e,[`seed`]);y!=null&&h(t,[`seed`],y);let b=g(e,[`speechConfig`]);b!=null&&h(t,[`speechConfig`],Ki(b));let x=g(e,[`stopSequences`]);x!=null&&h(t,[`stopSequences`],x);let S=g(e,[`temperature`]);S!=null&&h(t,[`temperature`],S);let C=g(e,[`thinkingConfig`]);C!=null&&h(t,[`thinkingConfig`],C);let w=g(e,[`topK`]);w!=null&&h(t,[`topK`],w);let T=g(e,[`topP`]);if(T!=null&&h(t,[`topP`],T),g(e,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);return t}function ki(e){let t={},n=g(e,[`authConfig`]);n!=null&&h(t,[`authConfig`],xi(n));let r=g(e,[`enableWidget`]);return r!=null&&h(t,[`enableWidget`],r),t}function Ai(e){let t={},n=g(e,[`searchTypes`]);if(n!=null&&h(t,[`searchTypes`],n),g(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(g(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=g(e,[`timeRangeFilter`]);return r!=null&&h(t,[`timeRangeFilter`],r),t}function ji(e,t){let n={},r=g(e,[`generationConfig`]);t!==void 0&&r!=null&&h(t,[`setup`,`generationConfig`],r);let i=g(e,[`responseModalities`]);t!==void 0&&i!=null&&h(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=g(e,[`temperature`]);t!==void 0&&a!=null&&h(t,[`setup`,`generationConfig`,`temperature`],a);let o=g(e,[`topP`]);t!==void 0&&o!=null&&h(t,[`setup`,`generationConfig`,`topP`],o);let s=g(e,[`topK`]);t!==void 0&&s!=null&&h(t,[`setup`,`generationConfig`,`topK`],s);let c=g(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&h(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=g(e,[`mediaResolution`]);t!==void 0&&l!=null&&h(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=g(e,[`seed`]);t!==void 0&&u!=null&&h(t,[`setup`,`generationConfig`,`seed`],u);let d=g(e,[`speechConfig`]);t!==void 0&&d!=null&&h(t,[`setup`,`generationConfig`,`speechConfig`],en(d));let f=g(e,[`thinkingConfig`]);t!==void 0&&f!=null&&h(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=g(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&h(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let m=g(e,[`systemInstruction`]);t!==void 0&&m!=null&&h(t,[`setup`,`systemInstruction`],Ci(L(m)));let _=g(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>qi(tn(e)))),h(t,[`setup`,`tools`],e)}let v=g(e,[`sessionResumption`]);t!==void 0&&v!=null&&h(t,[`setup`,`sessionResumption`],Wi(v));let y=g(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&h(t,[`setup`,`inputAudioTranscription`],bi(y));let b=g(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&h(t,[`setup`,`outputAudioTranscription`],bi(b));let x=g(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&h(t,[`setup`,`realtimeInputConfig`],x);let S=g(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&h(t,[`setup`,`contextWindowCompression`],S);let C=g(e,[`proactivity`]);if(t!==void 0&&C!=null&&h(t,[`setup`,`proactivity`],C),g(e,[`explicitVadSignal`])!==void 0)throw Error(`explicitVadSignal parameter is not supported in Gemini API.`);return n}function Mi(e,t){let n={},r=g(e,[`generationConfig`]);t!==void 0&&r!=null&&h(t,[`setup`,`generationConfig`],Oi(r));let i=g(e,[`responseModalities`]);t!==void 0&&i!=null&&h(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=g(e,[`temperature`]);t!==void 0&&a!=null&&h(t,[`setup`,`generationConfig`,`temperature`],a);let o=g(e,[`topP`]);t!==void 0&&o!=null&&h(t,[`setup`,`generationConfig`,`topP`],o);let s=g(e,[`topK`]);t!==void 0&&s!=null&&h(t,[`setup`,`generationConfig`,`topK`],s);let c=g(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&h(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=g(e,[`mediaResolution`]);t!==void 0&&l!=null&&h(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=g(e,[`seed`]);t!==void 0&&u!=null&&h(t,[`setup`,`generationConfig`,`seed`],u);let d=g(e,[`speechConfig`]);t!==void 0&&d!=null&&h(t,[`setup`,`generationConfig`,`speechConfig`],Ki(en(d)));let f=g(e,[`thinkingConfig`]);t!==void 0&&f!=null&&h(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=g(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&h(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let m=g(e,[`systemInstruction`]);t!==void 0&&m!=null&&h(t,[`setup`,`systemInstruction`],wi(L(m)));let _=g(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>Ji(tn(e)))),h(t,[`setup`,`tools`],e)}let v=g(e,[`sessionResumption`]);t!==void 0&&v!=null&&h(t,[`setup`,`sessionResumption`],v);let y=g(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&h(t,[`setup`,`inputAudioTranscription`],y);let b=g(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&h(t,[`setup`,`outputAudioTranscription`],b);let x=g(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&h(t,[`setup`,`realtimeInputConfig`],x);let S=g(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&h(t,[`setup`,`contextWindowCompression`],S);let C=g(e,[`proactivity`]);t!==void 0&&C!=null&&h(t,[`setup`,`proactivity`],C);let w=g(e,[`explicitVadSignal`]);return t!==void 0&&w!=null&&h(t,[`setup`,`explicitVadSignal`],w),n}function Ni(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`setup`,`model`],I(e,r));let i=g(t,[`config`]);return i!=null&&h(n,[`config`],ji(i,n)),n}function Pi(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`setup`,`model`],I(e,r));let i=g(t,[`config`]);return i!=null&&h(n,[`config`],Mi(i,n)),n}function Fi(e){let t={},n=g(e,[`musicGenerationConfig`]);return n!=null&&h(t,[`musicGenerationConfig`],n),t}function Ii(e){let t={},n=g(e,[`weightedPrompts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`weightedPrompts`],e)}return t}function Li(e){let t={},n=g(e,[`media`]);if(n!=null){let e=Bt(n);Array.isArray(e)&&(e=e.map(e=>Si(e))),h(t,[`mediaChunks`],e)}let r=g(e,[`audio`]);r!=null&&h(t,[`audio`],Si(Ut(r)));let i=g(e,[`audioStreamEnd`]);i!=null&&h(t,[`audioStreamEnd`],i);let a=g(e,[`video`]);a!=null&&h(t,[`video`],Si(Ht(a)));let o=g(e,[`text`]);o!=null&&h(t,[`text`],o);let s=g(e,[`activityStart`]);s!=null&&h(t,[`activityStart`],s);let c=g(e,[`activityEnd`]);return c!=null&&h(t,[`activityEnd`],c),t}function Ri(e){let t={},n=g(e,[`media`]);if(n!=null){let e=Bt(n);Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`mediaChunks`],e)}let r=g(e,[`audio`]);r!=null&&h(t,[`audio`],Ut(r));let i=g(e,[`audioStreamEnd`]);i!=null&&h(t,[`audioStreamEnd`],i);let a=g(e,[`video`]);a!=null&&h(t,[`video`],Ht(a));let o=g(e,[`text`]);o!=null&&h(t,[`text`],o);let s=g(e,[`activityStart`]);s!=null&&h(t,[`activityStart`],s);let c=g(e,[`activityEnd`]);return c!=null&&h(t,[`activityEnd`],c),t}function zi(e){let t={},n=g(e,[`setupComplete`]);n!=null&&h(t,[`setupComplete`],n);let r=g(e,[`serverContent`]);r!=null&&h(t,[`serverContent`],r);let i=g(e,[`toolCall`]);i!=null&&h(t,[`toolCall`],i);let a=g(e,[`toolCallCancellation`]);a!=null&&h(t,[`toolCallCancellation`],a);let o=g(e,[`usageMetadata`]);o!=null&&h(t,[`usageMetadata`],Yi(o));let s=g(e,[`goAway`]);s!=null&&h(t,[`goAway`],s);let c=g(e,[`sessionResumptionUpdate`]);c!=null&&h(t,[`sessionResumptionUpdate`],c);let l=g(e,[`voiceActivityDetectionSignal`]);l!=null&&h(t,[`voiceActivityDetectionSignal`],l);let u=g(e,[`voiceActivity`]);return u!=null&&h(t,[`voiceActivity`],Xi(u)),t}function Bi(e){let t={},n=g(e,[`speakerVoiceConfigs`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>Gi(e))),h(t,[`speakerVoiceConfigs`],e)}return t}function Vi(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],Ti(a));let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],Ei(o));let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],Si(c));let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);f!=null&&h(t,[`videoMetadata`],f);let p=g(e,[`toolCall`]);p!=null&&h(t,[`toolCall`],p);let m=g(e,[`toolResponse`]);m!=null&&h(t,[`toolResponse`],m);let _=g(e,[`partMetadata`]);return _!=null&&h(t,[`partMetadata`],_),t}function Hi(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],a);let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],o);let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],c);let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);if(f!=null&&h(t,[`videoMetadata`],f),g(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(g(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(g(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return t}function Ui(e){let t={},n=g(e,[`mimeType`]);n!=null&&h(t,[`mimeType`],n);let r=g(e,[`voiceSampleAudio`]);return r!=null&&h(t,[`voiceSampleAudio`],r),t}function Wi(e){let t={},n=g(e,[`handle`]);if(n!=null&&h(t,[`handle`],n),g(e,[`transparent`])!==void 0)throw Error(`transparent parameter is not supported in Gemini API.`);return t}function Gi(e){let t={},n=g(e,[`speaker`]);n!=null&&h(t,[`speaker`],n);let r=g(e,[`voiceConfig`]);return r!=null&&h(t,[`voiceConfig`],Zi(r)),t}function Ki(e){let t={},n=g(e,[`voiceConfig`]);n!=null&&h(t,[`voiceConfig`],Zi(n));let r=g(e,[`languageCode`]);r!=null&&h(t,[`languageCode`],r);let i=g(e,[`multiSpeakerVoiceConfig`]);return i!=null&&h(t,[`multiSpeakerVoiceConfig`],Bi(i)),t}function qi(e){let t={};if(g(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=g(e,[`computerUse`]);n!=null&&h(t,[`computerUse`],n);let r=g(e,[`fileSearch`]);r!=null&&h(t,[`fileSearch`],r);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],Ai(i));let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],ki(a));let o=g(e,[`codeExecution`]);if(o!=null&&h(t,[`codeExecution`],o),g(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=g(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`functionDeclarations`],e)}let c=g(e,[`googleSearchRetrieval`]);if(c!=null&&h(t,[`googleSearchRetrieval`],c),g(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=g(e,[`urlContext`]);l!=null&&h(t,[`urlContext`],l);let u=g(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`mcpServers`],e)}return t}function Ji(e){let t={},n=g(e,[`retrieval`]);n!=null&&h(t,[`retrieval`],n);let r=g(e,[`computerUse`]);if(r!=null&&h(t,[`computerUse`],r),g(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],i);let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],a);let o=g(e,[`codeExecution`]);o!=null&&h(t,[`codeExecution`],o);let s=g(e,[`enterpriseWebSearch`]);s!=null&&h(t,[`enterpriseWebSearch`],s);let c=g(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>Di(e))),h(t,[`functionDeclarations`],e)}let l=g(e,[`googleSearchRetrieval`]);l!=null&&h(t,[`googleSearchRetrieval`],l);let u=g(e,[`parallelAiSearch`]);u!=null&&h(t,[`parallelAiSearch`],u);let d=g(e,[`urlContext`]);if(d!=null&&h(t,[`urlContext`],d),g(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return t}function Yi(e){let t={},n=g(e,[`promptTokenCount`]);n!=null&&h(t,[`promptTokenCount`],n);let r=g(e,[`cachedContentTokenCount`]);r!=null&&h(t,[`cachedContentTokenCount`],r);let i=g(e,[`candidatesTokenCount`]);i!=null&&h(t,[`responseTokenCount`],i);let a=g(e,[`toolUsePromptTokenCount`]);a!=null&&h(t,[`toolUsePromptTokenCount`],a);let o=g(e,[`thoughtsTokenCount`]);o!=null&&h(t,[`thoughtsTokenCount`],o);let s=g(e,[`totalTokenCount`]);s!=null&&h(t,[`totalTokenCount`],s);let c=g(e,[`promptTokensDetails`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`promptTokensDetails`],e)}let l=g(e,[`cacheTokensDetails`]);if(l!=null){let e=l;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`cacheTokensDetails`],e)}let u=g(e,[`candidatesTokensDetails`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`responseTokensDetails`],e)}let d=g(e,[`toolUsePromptTokensDetails`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`toolUsePromptTokensDetails`],e)}let f=g(e,[`trafficType`]);return f!=null&&h(t,[`trafficType`],f),t}function Xi(e){let t={},n=g(e,[`type`]);return n!=null&&h(t,[`voiceActivityType`],n),t}function Zi(e){let t={},n=g(e,[`replicatedVoiceConfig`]);n!=null&&h(t,[`replicatedVoiceConfig`],Ui(n));let r=g(e,[`prebuiltVoiceConfig`]);return r!=null&&h(t,[`prebuiltVoiceConfig`],r),t}function Qi(e,t){let n={},r=g(e,[`apiKey`]);if(r!=null&&h(n,[`apiKey`],r),g(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(g(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(g(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(g(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(g(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(g(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return n}function $i(e,t){let n={},r=g(e,[`data`]);if(r!=null&&h(n,[`data`],r),g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let i=g(e,[`mimeType`]);return i!=null&&h(n,[`mimeType`],i),n}function ea(e,t){let n={},r=g(e,[`content`]);r!=null&&h(n,[`content`],r);let i=g(e,[`citationMetadata`]);i!=null&&h(n,[`citationMetadata`],ta(i));let a=g(e,[`tokenCount`]);a!=null&&h(n,[`tokenCount`],a);let o=g(e,[`finishReason`]);o!=null&&h(n,[`finishReason`],o);let s=g(e,[`groundingMetadata`]);s!=null&&h(n,[`groundingMetadata`],s);let c=g(e,[`avgLogprobs`]);c!=null&&h(n,[`avgLogprobs`],c);let l=g(e,[`index`]);l!=null&&h(n,[`index`],l);let u=g(e,[`logprobsResult`]);u!=null&&h(n,[`logprobsResult`],u);let d=g(e,[`safetyRatings`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`safetyRatings`],e)}let f=g(e,[`urlContextMetadata`]);return f!=null&&h(n,[`urlContextMetadata`],f),n}function ta(e,t){let n={},r=g(e,[`citationSources`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`citations`],e)}return n}function na(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let e=R(a);Array.isArray(e)&&(e=e.map(e=>q(e))),h(r,[`contents`],e)}return r}function ra(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`tokensInfo`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`tokensInfo`],e)}return n}function ia(e,t){let n={},r=g(e,[`values`]);r!=null&&h(n,[`values`],r);let i=g(e,[`statistics`]);return i!=null&&h(n,[`statistics`],aa(i)),n}function aa(e,t){let n={},r=g(e,[`truncated`]);r!=null&&h(n,[`truncated`],r);let i=g(e,[`token_count`]);return i!=null&&h(n,[`tokenCount`],i),n}function oa(e,t){let n={},r=g(e,[`parts`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Eo(e))),h(n,[`parts`],e)}let i=g(e,[`role`]);return i!=null&&h(n,[`role`],i),n}function q(e,t){let n={},r=g(e,[`parts`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Do(e))),h(n,[`parts`],e)}let i=g(e,[`role`]);return i!=null&&h(n,[`role`],i),n}function sa(e,t){let n={},r=g(e,[`controlType`]);r!=null&&h(n,[`controlType`],r);let i=g(e,[`enableControlImageComputation`]);return i!=null&&h(n,[`computeControl`],i),n}function ca(e,t){let n={};if(g(e,[`systemInstruction`])!==void 0)throw Error(`systemInstruction parameter is not supported in Gemini API.`);if(g(e,[`tools`])!==void 0)throw Error(`tools parameter is not supported in Gemini API.`);if(g(e,[`generationConfig`])!==void 0)throw Error(`generationConfig parameter is not supported in Gemini API.`);return n}function la(e,t,n){let r={},i=g(e,[`systemInstruction`]);t!==void 0&&i!=null&&h(t,[`systemInstruction`],q(L(i)));let a=g(e,[`tools`]);if(t!==void 0&&a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>Jo(e))),h(t,[`tools`],e)}let o=g(e,[`generationConfig`]);return t!==void 0&&o!=null&&h(t,[`generationConfig`],ao(o)),r}function ua(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let e=R(a);Array.isArray(e)&&(e=e.map(e=>oa(e))),h(r,[`contents`],e)}let o=g(t,[`config`]);return o!=null&&ca(o),r}function da(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let e=R(a);Array.isArray(e)&&(e=e.map(e=>q(e))),h(r,[`contents`],e)}let o=g(t,[`config`]);return o!=null&&la(o,r),r}function fa(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`totalTokens`]);i!=null&&h(n,[`totalTokens`],i);let a=g(e,[`cachedContentTokenCount`]);return a!=null&&h(n,[`cachedContentTokenCount`],a),n}function pa(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`totalTokens`]);return i!=null&&h(n,[`totalTokens`],i),n}function ma(e,t,n){let r={},i=g(t,[`model`]);return i!=null&&h(r,[`_url`,`name`],I(e,i)),r}function ha(e,t,n){let r={},i=g(t,[`model`]);return i!=null&&h(r,[`_url`,`name`],I(e,i)),r}function ga(e,t){let n={},r=g(e,[`sdkHttpResponse`]);return r!=null&&h(n,[`sdkHttpResponse`],r),n}function _a(e,t){let n={},r=g(e,[`sdkHttpResponse`]);return r!=null&&h(n,[`sdkHttpResponse`],r),n}function va(e,t,n){let r={},i=g(e,[`outputGcsUri`]);t!==void 0&&i!=null&&h(t,[`parameters`,`storageUri`],i);let a=g(e,[`negativePrompt`]);t!==void 0&&a!=null&&h(t,[`parameters`,`negativePrompt`],a);let o=g(e,[`numberOfImages`]);t!==void 0&&o!=null&&h(t,[`parameters`,`sampleCount`],o);let s=g(e,[`aspectRatio`]);t!==void 0&&s!=null&&h(t,[`parameters`,`aspectRatio`],s);let c=g(e,[`guidanceScale`]);t!==void 0&&c!=null&&h(t,[`parameters`,`guidanceScale`],c);let l=g(e,[`seed`]);t!==void 0&&l!=null&&h(t,[`parameters`,`seed`],l);let u=g(e,[`safetyFilterLevel`]);t!==void 0&&u!=null&&h(t,[`parameters`,`safetySetting`],u);let d=g(e,[`personGeneration`]);t!==void 0&&d!=null&&h(t,[`parameters`,`personGeneration`],d);let f=g(e,[`includeSafetyAttributes`]);t!==void 0&&f!=null&&h(t,[`parameters`,`includeSafetyAttributes`],f);let p=g(e,[`includeRaiReason`]);t!==void 0&&p!=null&&h(t,[`parameters`,`includeRaiReason`],p);let m=g(e,[`language`]);t!==void 0&&m!=null&&h(t,[`parameters`,`language`],m);let _=g(e,[`outputMimeType`]);t!==void 0&&_!=null&&h(t,[`parameters`,`outputOptions`,`mimeType`],_);let v=g(e,[`outputCompressionQuality`]);t!==void 0&&v!=null&&h(t,[`parameters`,`outputOptions`,`compressionQuality`],v);let y=g(e,[`addWatermark`]);t!==void 0&&y!=null&&h(t,[`parameters`,`addWatermark`],y);let b=g(e,[`labels`]);t!==void 0&&b!=null&&h(t,[`labels`],b);let x=g(e,[`editMode`]);t!==void 0&&x!=null&&h(t,[`parameters`,`editMode`],x);let S=g(e,[`baseSteps`]);return t!==void 0&&S!=null&&h(t,[`parameters`,`editConfig`,`baseSteps`],S),r}function ya(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`prompt`]);a!=null&&h(r,[`instances[0]`,`prompt`],a);let o=g(t,[`referenceImages`]);if(o!=null){let e=o;Array.isArray(e)&&(e=e.map(e=>No(e))),h(r,[`instances[0]`,`referenceImages`],e)}let s=g(t,[`config`]);return s!=null&&va(s,r),r}function ba(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>to(e))),h(n,[`generatedImages`],e)}return n}function xa(e,t,n){let r={},i=g(e,[`taskType`]);t!==void 0&&i!=null&&h(t,[`requests[]`,`taskType`],i);let a=g(e,[`title`]);t!==void 0&&a!=null&&h(t,[`requests[]`,`title`],a);let o=g(e,[`outputDimensionality`]);if(t!==void 0&&o!=null&&h(t,[`requests[]`,`outputDimensionality`],o),g(e,[`mimeType`])!==void 0)throw Error(`mimeType parameter is not supported in Gemini API.`);if(g(e,[`autoTruncate`])!==void 0)throw Error(`autoTruncate parameter is not supported in Gemini API.`);return r}function Sa(e,t,n){let r={},i=g(n,[`embeddingApiType`]);if(i===void 0&&(i=`PREDICT`),i===`PREDICT`){let n=g(e,[`taskType`]);t!==void 0&&n!=null&&h(t,[`instances[]`,`task_type`],n)}else if(i===`EMBED_CONTENT`){let n=g(e,[`taskType`]);t!==void 0&&n!=null&&h(t,[`taskType`],n)}let a=g(n,[`embeddingApiType`]);if(a===void 0&&(a=`PREDICT`),a===`PREDICT`){let n=g(e,[`title`]);t!==void 0&&n!=null&&h(t,[`instances[]`,`title`],n)}else if(a===`EMBED_CONTENT`){let n=g(e,[`title`]);t!==void 0&&n!=null&&h(t,[`title`],n)}let o=g(n,[`embeddingApiType`]);if(o===void 0&&(o=`PREDICT`),o===`PREDICT`){let n=g(e,[`outputDimensionality`]);t!==void 0&&n!=null&&h(t,[`parameters`,`outputDimensionality`],n)}else if(o===`EMBED_CONTENT`){let n=g(e,[`outputDimensionality`]);t!==void 0&&n!=null&&h(t,[`outputDimensionality`],n)}let s=g(n,[`embeddingApiType`]);if(s===void 0&&(s=`PREDICT`),s===`PREDICT`){let n=g(e,[`mimeType`]);t!==void 0&&n!=null&&h(t,[`instances[]`,`mimeType`],n)}let c=g(n,[`embeddingApiType`]);if(c===void 0&&(c=`PREDICT`),c===`PREDICT`){let n=g(e,[`autoTruncate`]);t!==void 0&&n!=null&&h(t,[`parameters`,`autoTruncate`],n)}else if(c===`EMBED_CONTENT`){let n=g(e,[`autoTruncate`]);t!==void 0&&n!=null&&h(t,[`autoTruncate`],n)}return r}function Ca(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let t=Yt(e,a);Array.isArray(t)&&(t=t.map(e=>e)),h(r,[`requests[]`,`content`],t)}let o=g(t,[`content`]);o!=null&&oa(L(o));let s=g(t,[`config`]);s!=null&&xa(s,r);let c=g(t,[`model`]);return c!==void 0&&h(r,[`requests[]`,`model`],I(e,c)),r}function wa(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(n,[`embeddingApiType`]);if(a===void 0&&(a=`PREDICT`),a===`PREDICT`){let n=g(t,[`contents`]);if(n!=null){let t=Yt(e,n);Array.isArray(t)&&(t=t.map(e=>e)),h(r,[`instances[]`,`content`],t)}}let o=g(n,[`embeddingApiType`]);if(o===void 0&&(o=`PREDICT`),o===`EMBED_CONTENT`){let e=g(t,[`content`]);e!=null&&h(r,[`content`],q(L(e)))}let s=g(t,[`config`]);return s!=null&&Sa(s,r,n),r}function Ta(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`embeddings`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`embeddings`],e)}let a=g(e,[`metadata`]);return a!=null&&h(n,[`metadata`],a),n}function Ea(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`predictions[]`,`embeddings`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>ia(e))),h(n,[`embeddings`],e)}let a=g(e,[`metadata`]);if(a!=null&&h(n,[`metadata`],a),t&&g(t,[`embeddingApiType`])===`EMBED_CONTENT`){let t=g(e,[`embedding`]),r=g(e,[`usageMetadata`]),i=g(e,[`truncated`]);if(t){let e={};r&&r.promptTokenCount&&(e.tokenCount=r.promptTokenCount),i&&(e.truncated=i),t.statistics=e,h(n,[`embeddings`],[t])}}return n}function Da(e,t){let n={},r=g(e,[`endpoint`]);r!=null&&h(n,[`name`],r);let i=g(e,[`deployedModelId`]);return i!=null&&h(n,[`deployedModelId`],i),n}function Oa(e,t){let n={};if(g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=g(e,[`fileUri`]);r!=null&&h(n,[`fileUri`],r);let i=g(e,[`mimeType`]);return i!=null&&h(n,[`mimeType`],i),n}function ka(e,t){let n={},r=g(e,[`id`]);r!=null&&h(n,[`id`],r);let i=g(e,[`args`]);i!=null&&h(n,[`args`],i);let a=g(e,[`name`]);if(a!=null&&h(n,[`name`],a),g(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(g(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return n}function Aa(e,t){let n={},r=g(e,[`allowedFunctionNames`]);r!=null&&h(n,[`allowedFunctionNames`],r);let i=g(e,[`mode`]);if(i!=null&&h(n,[`mode`],i),g(e,[`streamFunctionCallArguments`])!==void 0)throw Error(`streamFunctionCallArguments parameter is not supported in Gemini API.`);return n}function ja(e,t){let n={},r=g(e,[`description`]);r!=null&&h(n,[`description`],r);let i=g(e,[`name`]);i!=null&&h(n,[`name`],i);let a=g(e,[`parameters`]);a!=null&&h(n,[`parameters`],a);let o=g(e,[`parametersJsonSchema`]);o!=null&&h(n,[`parametersJsonSchema`],o);let s=g(e,[`response`]);s!=null&&h(n,[`response`],s);let c=g(e,[`responseJsonSchema`]);if(c!=null&&h(n,[`responseJsonSchema`],c),g(e,[`behavior`])!==void 0)throw Error(`behavior parameter is not supported in Vertex AI.`);return n}function Ma(e,t,n,r){let i={},a=g(t,[`systemInstruction`]);n!==void 0&&a!=null&&h(n,[`systemInstruction`],oa(L(a)));let o=g(t,[`temperature`]);o!=null&&h(i,[`temperature`],o);let s=g(t,[`topP`]);s!=null&&h(i,[`topP`],s);let c=g(t,[`topK`]);c!=null&&h(i,[`topK`],c);let l=g(t,[`candidateCount`]);l!=null&&h(i,[`candidateCount`],l);let u=g(t,[`maxOutputTokens`]);u!=null&&h(i,[`maxOutputTokens`],u);let d=g(t,[`stopSequences`]);d!=null&&h(i,[`stopSequences`],d);let f=g(t,[`responseLogprobs`]);f!=null&&h(i,[`responseLogprobs`],f);let p=g(t,[`logprobs`]);p!=null&&h(i,[`logprobs`],p);let m=g(t,[`presencePenalty`]);m!=null&&h(i,[`presencePenalty`],m);let _=g(t,[`frequencyPenalty`]);_!=null&&h(i,[`frequencyPenalty`],_);let v=g(t,[`seed`]);v!=null&&h(i,[`seed`],v);let y=g(t,[`responseMimeType`]);y!=null&&h(i,[`responseMimeType`],y);let b=g(t,[`responseSchema`]);b!=null&&h(i,[`responseSchema`],Qt(b));let x=g(t,[`responseJsonSchema`]);if(x!=null&&h(i,[`responseJsonSchema`],x),g(t,[`routingConfig`])!==void 0)throw Error(`routingConfig parameter is not supported in Gemini API.`);if(g(t,[`modelSelectionConfig`])!==void 0)throw Error(`modelSelectionConfig parameter is not supported in Gemini API.`);let S=g(t,[`safetySettings`]);if(n!==void 0&&S!=null){let e=S;Array.isArray(e)&&(e=e.map(e=>Lo(e))),h(n,[`safetySettings`],e)}let C=g(t,[`tools`]);if(n!==void 0&&C!=null){let e=nn(C);Array.isArray(e)&&(e=e.map(e=>qo(tn(e)))),h(n,[`tools`],e)}let w=g(t,[`toolConfig`]);if(n!==void 0&&w!=null&&h(n,[`toolConfig`],Go(w)),g(t,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let T=g(t,[`cachedContent`]);n!==void 0&&T!=null&&h(n,[`cachedContent`],z(e,T));let E=g(t,[`responseModalities`]);E!=null&&h(i,[`responseModalities`],E);let D=g(t,[`mediaResolution`]);D!=null&&h(i,[`mediaResolution`],D);let O=g(t,[`speechConfig`]);if(O!=null&&h(i,[`speechConfig`],$t(O)),g(t,[`audioTimestamp`])!==void 0)throw Error(`audioTimestamp parameter is not supported in Gemini API.`);let k=g(t,[`thinkingConfig`]);k!=null&&h(i,[`thinkingConfig`],k);let A=g(t,[`imageConfig`]);A!=null&&h(i,[`imageConfig`],uo(A));let j=g(t,[`enableEnhancedCivicAnswers`]);if(j!=null&&h(i,[`enableEnhancedCivicAnswers`],j),g(t,[`modelArmorConfig`])!==void 0)throw Error(`modelArmorConfig parameter is not supported in Gemini API.`);let M=g(t,[`serviceTier`]);return n!==void 0&&M!=null&&h(n,[`serviceTier`],M),i}function Na(e,t,n,r){let i={},a=g(t,[`systemInstruction`]);n!==void 0&&a!=null&&h(n,[`systemInstruction`],q(L(a)));let o=g(t,[`temperature`]);o!=null&&h(i,[`temperature`],o);let s=g(t,[`topP`]);s!=null&&h(i,[`topP`],s);let c=g(t,[`topK`]);c!=null&&h(i,[`topK`],c);let l=g(t,[`candidateCount`]);l!=null&&h(i,[`candidateCount`],l);let u=g(t,[`maxOutputTokens`]);u!=null&&h(i,[`maxOutputTokens`],u);let d=g(t,[`stopSequences`]);d!=null&&h(i,[`stopSequences`],d);let f=g(t,[`responseLogprobs`]);f!=null&&h(i,[`responseLogprobs`],f);let p=g(t,[`logprobs`]);p!=null&&h(i,[`logprobs`],p);let m=g(t,[`presencePenalty`]);m!=null&&h(i,[`presencePenalty`],m);let _=g(t,[`frequencyPenalty`]);_!=null&&h(i,[`frequencyPenalty`],_);let v=g(t,[`seed`]);v!=null&&h(i,[`seed`],v);let y=g(t,[`responseMimeType`]);y!=null&&h(i,[`responseMimeType`],y);let b=g(t,[`responseSchema`]);b!=null&&h(i,[`responseSchema`],Qt(b));let x=g(t,[`responseJsonSchema`]);x!=null&&h(i,[`responseJsonSchema`],x);let S=g(t,[`routingConfig`]);S!=null&&h(i,[`routingConfig`],S);let C=g(t,[`modelSelectionConfig`]);C!=null&&h(i,[`modelConfig`],C);let w=g(t,[`safetySettings`]);if(n!==void 0&&w!=null){let e=w;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`safetySettings`],e)}let T=g(t,[`tools`]);if(n!==void 0&&T!=null){let e=nn(T);Array.isArray(e)&&(e=e.map(e=>Jo(tn(e)))),h(n,[`tools`],e)}let E=g(t,[`toolConfig`]);n!==void 0&&E!=null&&h(n,[`toolConfig`],Ko(E));let D=g(t,[`labels`]);n!==void 0&&D!=null&&h(n,[`labels`],D);let O=g(t,[`cachedContent`]);n!==void 0&&O!=null&&h(n,[`cachedContent`],z(e,O));let k=g(t,[`responseModalities`]);k!=null&&h(i,[`responseModalities`],k);let A=g(t,[`mediaResolution`]);A!=null&&h(i,[`mediaResolution`],A);let j=g(t,[`speechConfig`]);j!=null&&h(i,[`speechConfig`],Wo($t(j)));let M=g(t,[`audioTimestamp`]);M!=null&&h(i,[`audioTimestamp`],M);let ee=g(t,[`thinkingConfig`]);ee!=null&&h(i,[`thinkingConfig`],ee);let te=g(t,[`imageConfig`]);if(te!=null&&h(i,[`imageConfig`],fo(te)),g(t,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);let ne=g(t,[`modelArmorConfig`]);n!==void 0&&ne!=null&&h(n,[`modelArmorConfig`],ne);let re=g(t,[`serviceTier`]);return n!==void 0&&re!=null&&h(n,[`serviceTier`],re),i}function Pa(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let e=R(a);Array.isArray(e)&&(e=e.map(e=>oa(e))),h(r,[`contents`],e)}let o=g(t,[`config`]);return o!=null&&h(r,[`generationConfig`],Ma(e,o,r)),r}function Fa(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`contents`]);if(a!=null){let e=R(a);Array.isArray(e)&&(e=e.map(e=>q(e))),h(r,[`contents`],e)}let o=g(t,[`config`]);return o!=null&&h(r,[`generationConfig`],Na(e,o,r)),r}function Ia(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`candidates`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>ea(e))),h(n,[`candidates`],e)}let a=g(e,[`modelVersion`]);a!=null&&h(n,[`modelVersion`],a);let o=g(e,[`promptFeedback`]);o!=null&&h(n,[`promptFeedback`],o);let s=g(e,[`responseId`]);s!=null&&h(n,[`responseId`],s);let c=g(e,[`usageMetadata`]);c!=null&&h(n,[`usageMetadata`],c);let l=g(e,[`modelStatus`]);return l!=null&&h(n,[`modelStatus`],l),n}function La(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`candidates`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`candidates`],e)}let a=g(e,[`createTime`]);a!=null&&h(n,[`createTime`],a);let o=g(e,[`modelVersion`]);o!=null&&h(n,[`modelVersion`],o);let s=g(e,[`promptFeedback`]);s!=null&&h(n,[`promptFeedback`],s);let c=g(e,[`responseId`]);c!=null&&h(n,[`responseId`],c);let l=g(e,[`usageMetadata`]);return l!=null&&h(n,[`usageMetadata`],l),n}function Ra(e,t,n){let r={};if(g(e,[`outputGcsUri`])!==void 0)throw Error(`outputGcsUri parameter is not supported in Gemini API.`);if(g(e,[`negativePrompt`])!==void 0)throw Error(`negativePrompt parameter is not supported in Gemini API.`);let i=g(e,[`numberOfImages`]);t!==void 0&&i!=null&&h(t,[`parameters`,`sampleCount`],i);let a=g(e,[`aspectRatio`]);t!==void 0&&a!=null&&h(t,[`parameters`,`aspectRatio`],a);let o=g(e,[`guidanceScale`]);if(t!==void 0&&o!=null&&h(t,[`parameters`,`guidanceScale`],o),g(e,[`seed`])!==void 0)throw Error(`seed parameter is not supported in Gemini API.`);let s=g(e,[`safetyFilterLevel`]);t!==void 0&&s!=null&&h(t,[`parameters`,`safetySetting`],s);let c=g(e,[`personGeneration`]);t!==void 0&&c!=null&&h(t,[`parameters`,`personGeneration`],c);let l=g(e,[`includeSafetyAttributes`]);t!==void 0&&l!=null&&h(t,[`parameters`,`includeSafetyAttributes`],l);let u=g(e,[`includeRaiReason`]);t!==void 0&&u!=null&&h(t,[`parameters`,`includeRaiReason`],u);let d=g(e,[`language`]);t!==void 0&&d!=null&&h(t,[`parameters`,`language`],d);let f=g(e,[`outputMimeType`]);t!==void 0&&f!=null&&h(t,[`parameters`,`outputOptions`,`mimeType`],f);let p=g(e,[`outputCompressionQuality`]);if(t!==void 0&&p!=null&&h(t,[`parameters`,`outputOptions`,`compressionQuality`],p),g(e,[`addWatermark`])!==void 0)throw Error(`addWatermark parameter is not supported in Gemini API.`);if(g(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);let m=g(e,[`imageSize`]);if(t!==void 0&&m!=null&&h(t,[`parameters`,`sampleImageSize`],m),g(e,[`enhancePrompt`])!==void 0)throw Error(`enhancePrompt parameter is not supported in Gemini API.`);return r}function za(e,t,n){let r={},i=g(e,[`outputGcsUri`]);t!==void 0&&i!=null&&h(t,[`parameters`,`storageUri`],i);let a=g(e,[`negativePrompt`]);t!==void 0&&a!=null&&h(t,[`parameters`,`negativePrompt`],a);let o=g(e,[`numberOfImages`]);t!==void 0&&o!=null&&h(t,[`parameters`,`sampleCount`],o);let s=g(e,[`aspectRatio`]);t!==void 0&&s!=null&&h(t,[`parameters`,`aspectRatio`],s);let c=g(e,[`guidanceScale`]);t!==void 0&&c!=null&&h(t,[`parameters`,`guidanceScale`],c);let l=g(e,[`seed`]);t!==void 0&&l!=null&&h(t,[`parameters`,`seed`],l);let u=g(e,[`safetyFilterLevel`]);t!==void 0&&u!=null&&h(t,[`parameters`,`safetySetting`],u);let d=g(e,[`personGeneration`]);t!==void 0&&d!=null&&h(t,[`parameters`,`personGeneration`],d);let f=g(e,[`includeSafetyAttributes`]);t!==void 0&&f!=null&&h(t,[`parameters`,`includeSafetyAttributes`],f);let p=g(e,[`includeRaiReason`]);t!==void 0&&p!=null&&h(t,[`parameters`,`includeRaiReason`],p);let m=g(e,[`language`]);t!==void 0&&m!=null&&h(t,[`parameters`,`language`],m);let _=g(e,[`outputMimeType`]);t!==void 0&&_!=null&&h(t,[`parameters`,`outputOptions`,`mimeType`],_);let v=g(e,[`outputCompressionQuality`]);t!==void 0&&v!=null&&h(t,[`parameters`,`outputOptions`,`compressionQuality`],v);let y=g(e,[`addWatermark`]);t!==void 0&&y!=null&&h(t,[`parameters`,`addWatermark`],y);let b=g(e,[`labels`]);t!==void 0&&b!=null&&h(t,[`labels`],b);let x=g(e,[`imageSize`]);t!==void 0&&x!=null&&h(t,[`parameters`,`sampleImageSize`],x);let S=g(e,[`enhancePrompt`]);return t!==void 0&&S!=null&&h(t,[`parameters`,`enhancePrompt`],S),r}function Ba(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`prompt`]);a!=null&&h(r,[`instances[0]`,`prompt`],a);let o=g(t,[`config`]);return o!=null&&Ra(o,r),r}function Va(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`prompt`]);a!=null&&h(r,[`instances[0]`,`prompt`],a);let o=g(t,[`config`]);return o!=null&&za(o,r),r}function Ha(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>eo(e))),h(n,[`generatedImages`],e)}let a=g(e,[`positivePromptSafetyAttributes`]);return a!=null&&h(n,[`positivePromptSafetyAttributes`],Fo(a)),n}function Ua(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>to(e))),h(n,[`generatedImages`],e)}let a=g(e,[`positivePromptSafetyAttributes`]);return a!=null&&h(n,[`positivePromptSafetyAttributes`],Io(a)),n}function Wa(e,t,n){let r={},i=g(e,[`numberOfVideos`]);if(t!==void 0&&i!=null&&h(t,[`parameters`,`sampleCount`],i),g(e,[`outputGcsUri`])!==void 0)throw Error(`outputGcsUri parameter is not supported in Gemini API.`);if(g(e,[`fps`])!==void 0)throw Error(`fps parameter is not supported in Gemini API.`);let a=g(e,[`durationSeconds`]);if(t!==void 0&&a!=null&&h(t,[`parameters`,`durationSeconds`],a),g(e,[`seed`])!==void 0)throw Error(`seed parameter is not supported in Gemini API.`);let o=g(e,[`aspectRatio`]);t!==void 0&&o!=null&&h(t,[`parameters`,`aspectRatio`],o);let s=g(e,[`resolution`]);t!==void 0&&s!=null&&h(t,[`parameters`,`resolution`],s);let c=g(e,[`personGeneration`]);if(t!==void 0&&c!=null&&h(t,[`parameters`,`personGeneration`],c),g(e,[`pubsubTopic`])!==void 0)throw Error(`pubsubTopic parameter is not supported in Gemini API.`);let l=g(e,[`negativePrompt`]);t!==void 0&&l!=null&&h(t,[`parameters`,`negativePrompt`],l);let u=g(e,[`enhancePrompt`]);if(t!==void 0&&u!=null&&h(t,[`parameters`,`enhancePrompt`],u),g(e,[`generateAudio`])!==void 0)throw Error(`generateAudio parameter is not supported in Gemini API.`);let d=g(e,[`lastFrame`]);t!==void 0&&d!=null&&h(t,[`instances[0]`,`lastFrame`],ho(d));let f=g(e,[`referenceImages`]);if(t!==void 0&&f!=null){let e=f;Array.isArray(e)&&(e=e.map(e=>ss(e))),h(t,[`instances[0]`,`referenceImages`],e)}if(g(e,[`mask`])!==void 0)throw Error(`mask parameter is not supported in Gemini API.`);if(g(e,[`compressionQuality`])!==void 0)throw Error(`compressionQuality parameter is not supported in Gemini API.`);if(g(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);return r}function Ga(e,t,n){let r={},i=g(e,[`numberOfVideos`]);t!==void 0&&i!=null&&h(t,[`parameters`,`sampleCount`],i);let a=g(e,[`outputGcsUri`]);t!==void 0&&a!=null&&h(t,[`parameters`,`storageUri`],a);let o=g(e,[`fps`]);t!==void 0&&o!=null&&h(t,[`parameters`,`fps`],o);let s=g(e,[`durationSeconds`]);t!==void 0&&s!=null&&h(t,[`parameters`,`durationSeconds`],s);let c=g(e,[`seed`]);t!==void 0&&c!=null&&h(t,[`parameters`,`seed`],c);let l=g(e,[`aspectRatio`]);t!==void 0&&l!=null&&h(t,[`parameters`,`aspectRatio`],l);let u=g(e,[`resolution`]);t!==void 0&&u!=null&&h(t,[`parameters`,`resolution`],u);let d=g(e,[`personGeneration`]);t!==void 0&&d!=null&&h(t,[`parameters`,`personGeneration`],d);let f=g(e,[`pubsubTopic`]);t!==void 0&&f!=null&&h(t,[`parameters`,`pubsubTopic`],f);let p=g(e,[`negativePrompt`]);t!==void 0&&p!=null&&h(t,[`parameters`,`negativePrompt`],p);let m=g(e,[`enhancePrompt`]);t!==void 0&&m!=null&&h(t,[`parameters`,`enhancePrompt`],m);let _=g(e,[`generateAudio`]);t!==void 0&&_!=null&&h(t,[`parameters`,`generateAudio`],_);let v=g(e,[`lastFrame`]);t!==void 0&&v!=null&&h(t,[`instances[0]`,`lastFrame`],J(v));let y=g(e,[`referenceImages`]);if(t!==void 0&&y!=null){let e=y;Array.isArray(e)&&(e=e.map(e=>cs(e))),h(t,[`instances[0]`,`referenceImages`],e)}let b=g(e,[`mask`]);t!==void 0&&b!=null&&h(t,[`instances[0]`,`mask`],os(b));let x=g(e,[`compressionQuality`]);t!==void 0&&x!=null&&h(t,[`parameters`,`compressionQuality`],x);let S=g(e,[`labels`]);return t!==void 0&&S!=null&&h(t,[`labels`],S),r}function Ka(e,t){let n={},r=g(e,[`name`]);r!=null&&h(n,[`name`],r);let i=g(e,[`metadata`]);i!=null&&h(n,[`metadata`],i);let a=g(e,[`done`]);a!=null&&h(n,[`done`],a);let o=g(e,[`error`]);o!=null&&h(n,[`error`],o);let s=g(e,[`response`,`generateVideoResponse`]);return s!=null&&h(n,[`response`],Xa(s)),n}function qa(e,t){let n={},r=g(e,[`name`]);r!=null&&h(n,[`name`],r);let i=g(e,[`metadata`]);i!=null&&h(n,[`metadata`],i);let a=g(e,[`done`]);a!=null&&h(n,[`done`],a);let o=g(e,[`error`]);o!=null&&h(n,[`error`],o);let s=g(e,[`response`]);return s!=null&&h(n,[`response`],Za(s)),n}function Ja(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`prompt`]);a!=null&&h(r,[`instances[0]`,`prompt`],a);let o=g(t,[`image`]);o!=null&&h(r,[`instances[0]`,`image`],ho(o));let s=g(t,[`video`]);s!=null&&h(r,[`instances[0]`,`video`],ls(s));let c=g(t,[`source`]);c!=null&&Qa(c,r);let l=g(t,[`config`]);return l!=null&&Wa(l,r),r}function Ya(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`prompt`]);a!=null&&h(r,[`instances[0]`,`prompt`],a);let o=g(t,[`image`]);o!=null&&h(r,[`instances[0]`,`image`],J(o));let s=g(t,[`video`]);s!=null&&h(r,[`instances[0]`,`video`],us(s));let c=g(t,[`source`]);c!=null&&$a(c,r);let l=g(t,[`config`]);return l!=null&&Ga(l,r),r}function Xa(e,t){let n={},r=g(e,[`generatedSamples`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>ro(e))),h(n,[`generatedVideos`],e)}let i=g(e,[`raiMediaFilteredCount`]);i!=null&&h(n,[`raiMediaFilteredCount`],i);let a=g(e,[`raiMediaFilteredReasons`]);return a!=null&&h(n,[`raiMediaFilteredReasons`],a),n}function Za(e,t){let n={},r=g(e,[`videos`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>io(e))),h(n,[`generatedVideos`],e)}let i=g(e,[`raiMediaFilteredCount`]);i!=null&&h(n,[`raiMediaFilteredCount`],i);let a=g(e,[`raiMediaFilteredReasons`]);return a!=null&&h(n,[`raiMediaFilteredReasons`],a),n}function Qa(e,t,n){let r={},i=g(e,[`prompt`]);t!==void 0&&i!=null&&h(t,[`instances[0]`,`prompt`],i);let a=g(e,[`image`]);t!==void 0&&a!=null&&h(t,[`instances[0]`,`image`],ho(a));let o=g(e,[`video`]);return t!==void 0&&o!=null&&h(t,[`instances[0]`,`video`],ls(o)),r}function $a(e,t,n){let r={},i=g(e,[`prompt`]);t!==void 0&&i!=null&&h(t,[`instances[0]`,`prompt`],i);let a=g(e,[`image`]);t!==void 0&&a!=null&&h(t,[`instances[0]`,`image`],J(a));let o=g(e,[`video`]);return t!==void 0&&o!=null&&h(t,[`instances[0]`,`video`],us(o)),r}function eo(e,t){let n={},r=g(e,[`_self`]);r!=null&&h(n,[`image`],po(r));let i=g(e,[`raiFilteredReason`]);i!=null&&h(n,[`raiFilteredReason`],i);let a=g(e,[`_self`]);return a!=null&&h(n,[`safetyAttributes`],Fo(a)),n}function to(e,t){let n={},r=g(e,[`_self`]);r!=null&&h(n,[`image`],mo(r));let i=g(e,[`raiFilteredReason`]);i!=null&&h(n,[`raiFilteredReason`],i);let a=g(e,[`_self`]);a!=null&&h(n,[`safetyAttributes`],Io(a));let o=g(e,[`prompt`]);return o!=null&&h(n,[`enhancedPrompt`],o),n}function no(e,t){let n={},r=g(e,[`_self`]);r!=null&&h(n,[`mask`],mo(r));let i=g(e,[`labels`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`labels`],e)}return n}function ro(e,t){let n={},r=g(e,[`video`]);return r!=null&&h(n,[`video`],is(r)),n}function io(e,t){let n={},r=g(e,[`_self`]);return r!=null&&h(n,[`video`],as(r)),n}function ao(e,t){let n={},r=g(e,[`modelSelectionConfig`]);r!=null&&h(n,[`modelConfig`],r);let i=g(e,[`responseJsonSchema`]);i!=null&&h(n,[`responseJsonSchema`],i);let a=g(e,[`audioTimestamp`]);a!=null&&h(n,[`audioTimestamp`],a);let o=g(e,[`candidateCount`]);o!=null&&h(n,[`candidateCount`],o);let s=g(e,[`enableAffectiveDialog`]);s!=null&&h(n,[`enableAffectiveDialog`],s);let c=g(e,[`frequencyPenalty`]);c!=null&&h(n,[`frequencyPenalty`],c);let l=g(e,[`logprobs`]);l!=null&&h(n,[`logprobs`],l);let u=g(e,[`maxOutputTokens`]);u!=null&&h(n,[`maxOutputTokens`],u);let d=g(e,[`mediaResolution`]);d!=null&&h(n,[`mediaResolution`],d);let f=g(e,[`presencePenalty`]);f!=null&&h(n,[`presencePenalty`],f);let p=g(e,[`responseLogprobs`]);p!=null&&h(n,[`responseLogprobs`],p);let m=g(e,[`responseMimeType`]);m!=null&&h(n,[`responseMimeType`],m);let _=g(e,[`responseModalities`]);_!=null&&h(n,[`responseModalities`],_);let v=g(e,[`responseSchema`]);v!=null&&h(n,[`responseSchema`],v);let y=g(e,[`routingConfig`]);y!=null&&h(n,[`routingConfig`],y);let b=g(e,[`seed`]);b!=null&&h(n,[`seed`],b);let x=g(e,[`speechConfig`]);x!=null&&h(n,[`speechConfig`],Wo(x));let S=g(e,[`stopSequences`]);S!=null&&h(n,[`stopSequences`],S);let C=g(e,[`temperature`]);C!=null&&h(n,[`temperature`],C);let w=g(e,[`thinkingConfig`]);w!=null&&h(n,[`thinkingConfig`],w);let T=g(e,[`topK`]);T!=null&&h(n,[`topK`],T);let E=g(e,[`topP`]);if(E!=null&&h(n,[`topP`],E),g(e,[`enableEnhancedCivicAnswers`])!==void 0)throw Error(`enableEnhancedCivicAnswers parameter is not supported in Vertex AI.`);return n}function oo(e,t,n){let r={},i=g(t,[`model`]);return i!=null&&h(r,[`_url`,`name`],I(e,i)),r}function so(e,t,n){let r={},i=g(t,[`model`]);return i!=null&&h(r,[`_url`,`name`],I(e,i)),r}function co(e,t){let n={},r=g(e,[`authConfig`]);r!=null&&h(n,[`authConfig`],Qi(r));let i=g(e,[`enableWidget`]);return i!=null&&h(n,[`enableWidget`],i),n}function lo(e,t){let n={},r=g(e,[`searchTypes`]);if(r!=null&&h(n,[`searchTypes`],r),g(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(g(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let i=g(e,[`timeRangeFilter`]);return i!=null&&h(n,[`timeRangeFilter`],i),n}function uo(e,t){let n={},r=g(e,[`aspectRatio`]);r!=null&&h(n,[`aspectRatio`],r);let i=g(e,[`imageSize`]);if(i!=null&&h(n,[`imageSize`],i),g(e,[`personGeneration`])!==void 0)throw Error(`personGeneration parameter is not supported in Gemini API.`);if(g(e,[`prominentPeople`])!==void 0)throw Error(`prominentPeople parameter is not supported in Gemini API.`);if(g(e,[`outputMimeType`])!==void 0)throw Error(`outputMimeType parameter is not supported in Gemini API.`);if(g(e,[`outputCompressionQuality`])!==void 0)throw Error(`outputCompressionQuality parameter is not supported in Gemini API.`);if(g(e,[`imageOutputOptions`])!==void 0)throw Error(`imageOutputOptions parameter is not supported in Gemini API.`);return n}function fo(e,t){let n={},r=g(e,[`aspectRatio`]);r!=null&&h(n,[`aspectRatio`],r);let i=g(e,[`imageSize`]);i!=null&&h(n,[`imageSize`],i);let a=g(e,[`personGeneration`]);a!=null&&h(n,[`personGeneration`],a);let o=g(e,[`prominentPeople`]);o!=null&&h(n,[`prominentPeople`],o);let s=g(e,[`outputMimeType`]);s!=null&&h(n,[`imageOutputOptions`,`mimeType`],s);let c=g(e,[`outputCompressionQuality`]);c!=null&&h(n,[`imageOutputOptions`,`compressionQuality`],c);let l=g(e,[`imageOutputOptions`]);return l!=null&&h(n,[`imageOutputOptions`],l),n}function po(e,t){let n={},r=g(e,[`bytesBase64Encoded`]);r!=null&&h(n,[`imageBytes`],B(r));let i=g(e,[`mimeType`]);return i!=null&&h(n,[`mimeType`],i),n}function mo(e,t){let n={},r=g(e,[`gcsUri`]);r!=null&&h(n,[`gcsUri`],r);let i=g(e,[`bytesBase64Encoded`]);i!=null&&h(n,[`imageBytes`],B(i));let a=g(e,[`mimeType`]);return a!=null&&h(n,[`mimeType`],a),n}function ho(e,t){let n={};if(g(e,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);let r=g(e,[`imageBytes`]);r!=null&&h(n,[`bytesBase64Encoded`],B(r));let i=g(e,[`mimeType`]);return i!=null&&h(n,[`mimeType`],i),n}function J(e,t){let n={},r=g(e,[`gcsUri`]);r!=null&&h(n,[`gcsUri`],r);let i=g(e,[`imageBytes`]);i!=null&&h(n,[`bytesBase64Encoded`],B(i));let a=g(e,[`mimeType`]);return a!=null&&h(n,[`mimeType`],a),n}function go(e,t,n,r){let i={},a=g(t,[`pageSize`]);n!==void 0&&a!=null&&h(n,[`_query`,`pageSize`],a);let o=g(t,[`pageToken`]);n!==void 0&&o!=null&&h(n,[`_query`,`pageToken`],o);let s=g(t,[`filter`]);n!==void 0&&s!=null&&h(n,[`_query`,`filter`],s);let c=g(t,[`queryBase`]);return n!==void 0&&c!=null&&h(n,[`_url`,`models_url`],un(e,c)),i}function _o(e,t,n,r){let i={},a=g(t,[`pageSize`]);n!==void 0&&a!=null&&h(n,[`_query`,`pageSize`],a);let o=g(t,[`pageToken`]);n!==void 0&&o!=null&&h(n,[`_query`,`pageToken`],o);let s=g(t,[`filter`]);n!==void 0&&s!=null&&h(n,[`_query`,`filter`],s);let c=g(t,[`queryBase`]);return n!==void 0&&c!=null&&h(n,[`_url`,`models_url`],un(e,c)),i}function vo(e,t,n){let r={},i=g(t,[`config`]);return i!=null&&go(e,i,r),r}function yo(e,t,n){let r={},i=g(t,[`config`]);return i!=null&&_o(e,i,r),r}function bo(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`nextPageToken`]);i!=null&&h(n,[`nextPageToken`],i);let a=g(e,[`_self`]);if(a!=null){let e=dn(a);Array.isArray(e)&&(e=e.map(e=>Co(e))),h(n,[`models`],e)}return n}function xo(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`nextPageToken`]);i!=null&&h(n,[`nextPageToken`],i);let a=g(e,[`_self`]);if(a!=null){let e=dn(a);Array.isArray(e)&&(e=e.map(e=>wo(e))),h(n,[`models`],e)}return n}function So(e,t){let n={},r=g(e,[`maskMode`]);r!=null&&h(n,[`maskMode`],r);let i=g(e,[`segmentationClasses`]);i!=null&&h(n,[`maskClasses`],i);let a=g(e,[`maskDilation`]);return a!=null&&h(n,[`dilation`],a),n}function Co(e,t){let n={},r=g(e,[`name`]);r!=null&&h(n,[`name`],r);let i=g(e,[`displayName`]);i!=null&&h(n,[`displayName`],i);let a=g(e,[`description`]);a!=null&&h(n,[`description`],a);let o=g(e,[`version`]);o!=null&&h(n,[`version`],o);let s=g(e,[`_self`]);s!=null&&h(n,[`tunedModelInfo`],Yo(s));let c=g(e,[`inputTokenLimit`]);c!=null&&h(n,[`inputTokenLimit`],c);let l=g(e,[`outputTokenLimit`]);l!=null&&h(n,[`outputTokenLimit`],l);let u=g(e,[`supportedGenerationMethods`]);u!=null&&h(n,[`supportedActions`],u);let d=g(e,[`temperature`]);d!=null&&h(n,[`temperature`],d);let f=g(e,[`maxTemperature`]);f!=null&&h(n,[`maxTemperature`],f);let p=g(e,[`topP`]);p!=null&&h(n,[`topP`],p);let m=g(e,[`topK`]);m!=null&&h(n,[`topK`],m);let _=g(e,[`thinking`]);return _!=null&&h(n,[`thinking`],_),n}function wo(e,t){let n={},r=g(e,[`name`]);r!=null&&h(n,[`name`],r);let i=g(e,[`displayName`]);i!=null&&h(n,[`displayName`],i);let a=g(e,[`description`]);a!=null&&h(n,[`description`],a);let o=g(e,[`versionId`]);o!=null&&h(n,[`version`],o);let s=g(e,[`deployedModels`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>Da(e))),h(n,[`endpoints`],e)}let c=g(e,[`labels`]);c!=null&&h(n,[`labels`],c);let l=g(e,[`_self`]);l!=null&&h(n,[`tunedModelInfo`],Xo(l));let u=g(e,[`defaultCheckpointId`]);u!=null&&h(n,[`defaultCheckpointId`],u);let d=g(e,[`checkpoints`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`checkpoints`],e)}return n}function To(e,t){let n={},r=g(e,[`speakerVoiceConfigs`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>Uo(e))),h(n,[`speakerVoiceConfigs`],e)}return n}function Eo(e,t){let n={},r=g(e,[`mediaResolution`]);r!=null&&h(n,[`mediaResolution`],r);let i=g(e,[`codeExecutionResult`]);i!=null&&h(n,[`codeExecutionResult`],i);let a=g(e,[`executableCode`]);a!=null&&h(n,[`executableCode`],a);let o=g(e,[`fileData`]);o!=null&&h(n,[`fileData`],Oa(o));let s=g(e,[`functionCall`]);s!=null&&h(n,[`functionCall`],ka(s));let c=g(e,[`functionResponse`]);c!=null&&h(n,[`functionResponse`],c);let l=g(e,[`inlineData`]);l!=null&&h(n,[`inlineData`],$i(l));let u=g(e,[`text`]);u!=null&&h(n,[`text`],u);let d=g(e,[`thought`]);d!=null&&h(n,[`thought`],d);let f=g(e,[`thoughtSignature`]);f!=null&&h(n,[`thoughtSignature`],f);let p=g(e,[`videoMetadata`]);p!=null&&h(n,[`videoMetadata`],p);let m=g(e,[`toolCall`]);m!=null&&h(n,[`toolCall`],m);let _=g(e,[`toolResponse`]);_!=null&&h(n,[`toolResponse`],_);let v=g(e,[`partMetadata`]);return v!=null&&h(n,[`partMetadata`],v),n}function Do(e,t){let n={},r=g(e,[`mediaResolution`]);r!=null&&h(n,[`mediaResolution`],r);let i=g(e,[`codeExecutionResult`]);i!=null&&h(n,[`codeExecutionResult`],i);let a=g(e,[`executableCode`]);a!=null&&h(n,[`executableCode`],a);let o=g(e,[`fileData`]);o!=null&&h(n,[`fileData`],o);let s=g(e,[`functionCall`]);s!=null&&h(n,[`functionCall`],s);let c=g(e,[`functionResponse`]);c!=null&&h(n,[`functionResponse`],c);let l=g(e,[`inlineData`]);l!=null&&h(n,[`inlineData`],l);let u=g(e,[`text`]);u!=null&&h(n,[`text`],u);let d=g(e,[`thought`]);d!=null&&h(n,[`thought`],d);let f=g(e,[`thoughtSignature`]);f!=null&&h(n,[`thoughtSignature`],f);let p=g(e,[`videoMetadata`]);if(p!=null&&h(n,[`videoMetadata`],p),g(e,[`toolCall`])!==void 0)throw Error(`toolCall parameter is not supported in Vertex AI.`);if(g(e,[`toolResponse`])!==void 0)throw Error(`toolResponse parameter is not supported in Vertex AI.`);if(g(e,[`partMetadata`])!==void 0)throw Error(`partMetadata parameter is not supported in Vertex AI.`);return n}function Oo(e,t){let n={},r=g(e,[`productImage`]);return r!=null&&h(n,[`image`],J(r)),n}function ko(e,t,n){let r={},i=g(e,[`numberOfImages`]);t!==void 0&&i!=null&&h(t,[`parameters`,`sampleCount`],i);let a=g(e,[`baseSteps`]);t!==void 0&&a!=null&&h(t,[`parameters`,`baseSteps`],a);let o=g(e,[`outputGcsUri`]);t!==void 0&&o!=null&&h(t,[`parameters`,`storageUri`],o);let s=g(e,[`seed`]);t!==void 0&&s!=null&&h(t,[`parameters`,`seed`],s);let c=g(e,[`safetyFilterLevel`]);t!==void 0&&c!=null&&h(t,[`parameters`,`safetySetting`],c);let l=g(e,[`personGeneration`]);t!==void 0&&l!=null&&h(t,[`parameters`,`personGeneration`],l);let u=g(e,[`addWatermark`]);t!==void 0&&u!=null&&h(t,[`parameters`,`addWatermark`],u);let d=g(e,[`outputMimeType`]);t!==void 0&&d!=null&&h(t,[`parameters`,`outputOptions`,`mimeType`],d);let f=g(e,[`outputCompressionQuality`]);t!==void 0&&f!=null&&h(t,[`parameters`,`outputOptions`,`compressionQuality`],f);let p=g(e,[`enhancePrompt`]);t!==void 0&&p!=null&&h(t,[`parameters`,`enhancePrompt`],p);let m=g(e,[`labels`]);return t!==void 0&&m!=null&&h(t,[`labels`],m),r}function Ao(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`source`]);a!=null&&Mo(a,r);let o=g(t,[`config`]);return o!=null&&ko(o,r),r}function jo(e,t){let n={},r=g(e,[`predictions`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>to(e))),h(n,[`generatedImages`],e)}return n}function Mo(e,t,n){let r={},i=g(e,[`prompt`]);t!==void 0&&i!=null&&h(t,[`instances[0]`,`prompt`],i);let a=g(e,[`personImage`]);t!==void 0&&a!=null&&h(t,[`instances[0]`,`personImage`,`image`],J(a));let o=g(e,[`productImages`]);if(t!==void 0&&o!=null){let e=o;Array.isArray(e)&&(e=e.map(e=>Oo(e))),h(t,[`instances[0]`,`productImages`],e)}return r}function No(e,t){let n={},r=g(e,[`referenceImage`]);r!=null&&h(n,[`referenceImage`],J(r));let i=g(e,[`referenceId`]);i!=null&&h(n,[`referenceId`],i);let a=g(e,[`referenceType`]);a!=null&&h(n,[`referenceType`],a);let o=g(e,[`maskImageConfig`]);o!=null&&h(n,[`maskImageConfig`],So(o));let s=g(e,[`controlImageConfig`]);s!=null&&h(n,[`controlImageConfig`],sa(s));let c=g(e,[`styleImageConfig`]);c!=null&&h(n,[`styleImageConfig`],c);let l=g(e,[`subjectImageConfig`]);return l!=null&&h(n,[`subjectImageConfig`],l),n}function Po(e,t){let n={},r=g(e,[`mimeType`]);r!=null&&h(n,[`mimeType`],r);let i=g(e,[`voiceSampleAudio`]);return i!=null&&h(n,[`voiceSampleAudio`],i),n}function Fo(e,t){let n={},r=g(e,[`safetyAttributes`,`categories`]);r!=null&&h(n,[`categories`],r);let i=g(e,[`safetyAttributes`,`scores`]);i!=null&&h(n,[`scores`],i);let a=g(e,[`contentType`]);return a!=null&&h(n,[`contentType`],a),n}function Io(e,t){let n={},r=g(e,[`safetyAttributes`,`categories`]);r!=null&&h(n,[`categories`],r);let i=g(e,[`safetyAttributes`,`scores`]);i!=null&&h(n,[`scores`],i);let a=g(e,[`contentType`]);return a!=null&&h(n,[`contentType`],a),n}function Lo(e,t){let n={},r=g(e,[`category`]);if(r!=null&&h(n,[`category`],r),g(e,[`method`])!==void 0)throw Error(`method parameter is not supported in Gemini API.`);let i=g(e,[`threshold`]);return i!=null&&h(n,[`threshold`],i),n}function Ro(e,t){let n={},r=g(e,[`image`]);return r!=null&&h(n,[`image`],J(r)),n}function zo(e,t,n){let r={},i=g(e,[`mode`]);t!==void 0&&i!=null&&h(t,[`parameters`,`mode`],i);let a=g(e,[`maxPredictions`]);t!==void 0&&a!=null&&h(t,[`parameters`,`maxPredictions`],a);let o=g(e,[`confidenceThreshold`]);t!==void 0&&o!=null&&h(t,[`parameters`,`confidenceThreshold`],o);let s=g(e,[`maskDilation`]);t!==void 0&&s!=null&&h(t,[`parameters`,`maskDilation`],s);let c=g(e,[`binaryColorThreshold`]);t!==void 0&&c!=null&&h(t,[`parameters`,`binaryColorThreshold`],c);let l=g(e,[`labels`]);return t!==void 0&&l!=null&&h(t,[`labels`],l),r}function Bo(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`source`]);a!=null&&Ho(a,r);let o=g(t,[`config`]);return o!=null&&zo(o,r),r}function Vo(e,t){let n={},r=g(e,[`predictions`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>no(e))),h(n,[`generatedMasks`],e)}return n}function Ho(e,t,n){let r={},i=g(e,[`prompt`]);t!==void 0&&i!=null&&h(t,[`instances[0]`,`prompt`],i);let a=g(e,[`image`]);t!==void 0&&a!=null&&h(t,[`instances[0]`,`image`],J(a));let o=g(e,[`scribbleImage`]);return t!==void 0&&o!=null&&h(t,[`instances[0]`,`scribble`],Ro(o)),r}function Uo(e,t){let n={},r=g(e,[`speaker`]);r!=null&&h(n,[`speaker`],r);let i=g(e,[`voiceConfig`]);return i!=null&&h(n,[`voiceConfig`],ds(i)),n}function Wo(e,t){let n={},r=g(e,[`voiceConfig`]);r!=null&&h(n,[`voiceConfig`],ds(r));let i=g(e,[`languageCode`]);i!=null&&h(n,[`languageCode`],i);let a=g(e,[`multiSpeakerVoiceConfig`]);return a!=null&&h(n,[`multiSpeakerVoiceConfig`],To(a)),n}function Go(e,t){let n={},r=g(e,[`retrievalConfig`]);r!=null&&h(n,[`retrievalConfig`],r);let i=g(e,[`functionCallingConfig`]);i!=null&&h(n,[`functionCallingConfig`],Aa(i));let a=g(e,[`includeServerSideToolInvocations`]);return a!=null&&h(n,[`includeServerSideToolInvocations`],a),n}function Ko(e,t){let n={},r=g(e,[`retrievalConfig`]);r!=null&&h(n,[`retrievalConfig`],r);let i=g(e,[`functionCallingConfig`]);if(i!=null&&h(n,[`functionCallingConfig`],i),g(e,[`includeServerSideToolInvocations`])!==void 0)throw Error(`includeServerSideToolInvocations parameter is not supported in Vertex AI.`);return n}function qo(e,t){let n={};if(g(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let r=g(e,[`computerUse`]);r!=null&&h(n,[`computerUse`],r);let i=g(e,[`fileSearch`]);i!=null&&h(n,[`fileSearch`],i);let a=g(e,[`googleSearch`]);a!=null&&h(n,[`googleSearch`],lo(a));let o=g(e,[`googleMaps`]);o!=null&&h(n,[`googleMaps`],co(o));let s=g(e,[`codeExecution`]);if(s!=null&&h(n,[`codeExecution`],s),g(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let c=g(e,[`functionDeclarations`]);if(c!=null){let e=c;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`functionDeclarations`],e)}let l=g(e,[`googleSearchRetrieval`]);if(l!=null&&h(n,[`googleSearchRetrieval`],l),g(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let u=g(e,[`urlContext`]);u!=null&&h(n,[`urlContext`],u);let d=g(e,[`mcpServers`]);if(d!=null){let e=d;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`mcpServers`],e)}return n}function Jo(e,t){let n={},r=g(e,[`retrieval`]);r!=null&&h(n,[`retrieval`],r);let i=g(e,[`computerUse`]);if(i!=null&&h(n,[`computerUse`],i),g(e,[`fileSearch`])!==void 0)throw Error(`fileSearch parameter is not supported in Vertex AI.`);let a=g(e,[`googleSearch`]);a!=null&&h(n,[`googleSearch`],a);let o=g(e,[`googleMaps`]);o!=null&&h(n,[`googleMaps`],o);let s=g(e,[`codeExecution`]);s!=null&&h(n,[`codeExecution`],s);let c=g(e,[`enterpriseWebSearch`]);c!=null&&h(n,[`enterpriseWebSearch`],c);let l=g(e,[`functionDeclarations`]);if(l!=null){let e=l;Array.isArray(e)&&(e=e.map(e=>ja(e))),h(n,[`functionDeclarations`],e)}let u=g(e,[`googleSearchRetrieval`]);u!=null&&h(n,[`googleSearchRetrieval`],u);let d=g(e,[`parallelAiSearch`]);d!=null&&h(n,[`parallelAiSearch`],d);let f=g(e,[`urlContext`]);if(f!=null&&h(n,[`urlContext`],f),g(e,[`mcpServers`])!==void 0)throw Error(`mcpServers parameter is not supported in Vertex AI.`);return n}function Yo(e,t){let n={},r=g(e,[`baseModel`]);r!=null&&h(n,[`baseModel`],r);let i=g(e,[`createTime`]);i!=null&&h(n,[`createTime`],i);let a=g(e,[`updateTime`]);return a!=null&&h(n,[`updateTime`],a),n}function Xo(e,t){let n={},r=g(e,[`labels`,`google-vertex-llm-tuning-base-model-id`]);r!=null&&h(n,[`baseModel`],r);let i=g(e,[`createTime`]);i!=null&&h(n,[`createTime`],i);let a=g(e,[`updateTime`]);return a!=null&&h(n,[`updateTime`],a),n}function Zo(e,t,n){let r={},i=g(e,[`displayName`]);t!==void 0&&i!=null&&h(t,[`displayName`],i);let a=g(e,[`description`]);t!==void 0&&a!=null&&h(t,[`description`],a);let o=g(e,[`defaultCheckpointId`]);return t!==void 0&&o!=null&&h(t,[`defaultCheckpointId`],o),r}function Qo(e,t,n){let r={},i=g(e,[`displayName`]);t!==void 0&&i!=null&&h(t,[`displayName`],i);let a=g(e,[`description`]);t!==void 0&&a!=null&&h(t,[`description`],a);let o=g(e,[`defaultCheckpointId`]);return t!==void 0&&o!=null&&h(t,[`defaultCheckpointId`],o),r}function $o(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`name`],I(e,i));let a=g(t,[`config`]);return a!=null&&Zo(a,r),r}function es(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`config`]);return a!=null&&Qo(a,r),r}function ts(e,t,n){let r={},i=g(e,[`outputGcsUri`]);t!==void 0&&i!=null&&h(t,[`parameters`,`storageUri`],i);let a=g(e,[`safetyFilterLevel`]);t!==void 0&&a!=null&&h(t,[`parameters`,`safetySetting`],a);let o=g(e,[`personGeneration`]);t!==void 0&&o!=null&&h(t,[`parameters`,`personGeneration`],o);let s=g(e,[`includeRaiReason`]);t!==void 0&&s!=null&&h(t,[`parameters`,`includeRaiReason`],s);let c=g(e,[`outputMimeType`]);t!==void 0&&c!=null&&h(t,[`parameters`,`outputOptions`,`mimeType`],c);let l=g(e,[`outputCompressionQuality`]);t!==void 0&&l!=null&&h(t,[`parameters`,`outputOptions`,`compressionQuality`],l);let u=g(e,[`enhanceInputImage`]);t!==void 0&&u!=null&&h(t,[`parameters`,`upscaleConfig`,`enhanceInputImage`],u);let d=g(e,[`imagePreservationFactor`]);t!==void 0&&d!=null&&h(t,[`parameters`,`upscaleConfig`,`imagePreservationFactor`],d);let f=g(e,[`labels`]);t!==void 0&&f!=null&&h(t,[`labels`],f);let p=g(e,[`numberOfImages`]);t!==void 0&&p!=null&&h(t,[`parameters`,`sampleCount`],p);let m=g(e,[`mode`]);return t!==void 0&&m!=null&&h(t,[`parameters`,`mode`],m),r}function ns(e,t,n){let r={},i=g(t,[`model`]);i!=null&&h(r,[`_url`,`model`],I(e,i));let a=g(t,[`image`]);a!=null&&h(r,[`instances[0]`,`image`],J(a));let o=g(t,[`upscaleFactor`]);o!=null&&h(r,[`parameters`,`upscaleConfig`,`upscaleFactor`],o);let s=g(t,[`config`]);return s!=null&&ts(s,r),r}function rs(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`predictions`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>to(e))),h(n,[`generatedImages`],e)}return n}function is(e,t){let n={},r=g(e,[`uri`]);r!=null&&h(n,[`uri`],r);let i=g(e,[`encodedVideo`]);i!=null&&h(n,[`videoBytes`],B(i));let a=g(e,[`encoding`]);return a!=null&&h(n,[`mimeType`],a),n}function as(e,t){let n={},r=g(e,[`gcsUri`]);r!=null&&h(n,[`uri`],r);let i=g(e,[`bytesBase64Encoded`]);i!=null&&h(n,[`videoBytes`],B(i));let a=g(e,[`mimeType`]);return a!=null&&h(n,[`mimeType`],a),n}function os(e,t){let n={},r=g(e,[`image`]);r!=null&&h(n,[`_self`],J(r));let i=g(e,[`maskMode`]);return i!=null&&h(n,[`maskMode`],i),n}function ss(e,t){let n={},r=g(e,[`image`]);r!=null&&h(n,[`image`],ho(r));let i=g(e,[`referenceType`]);return i!=null&&h(n,[`referenceType`],i),n}function cs(e,t){let n={},r=g(e,[`image`]);r!=null&&h(n,[`image`],J(r));let i=g(e,[`referenceType`]);return i!=null&&h(n,[`referenceType`],i),n}function ls(e,t){let n={},r=g(e,[`uri`]);r!=null&&h(n,[`uri`],r);let i=g(e,[`videoBytes`]);i!=null&&h(n,[`encodedVideo`],B(i));let a=g(e,[`mimeType`]);return a!=null&&h(n,[`encoding`],a),n}function us(e,t){let n={},r=g(e,[`uri`]);r!=null&&h(n,[`gcsUri`],r);let i=g(e,[`videoBytes`]);i!=null&&h(n,[`bytesBase64Encoded`],B(i));let a=g(e,[`mimeType`]);return a!=null&&h(n,[`mimeType`],a),n}function ds(e,t){let n={},r=g(e,[`replicatedVoiceConfig`]);r!=null&&h(n,[`replicatedVoiceConfig`],Po(r));let i=g(e,[`prebuiltVoiceConfig`]);return i!=null&&h(n,[`prebuiltVoiceConfig`],i),n}function fs(e,t){let n={},r=g(e,[`displayName`]);return t!==void 0&&r!=null&&h(t,[`displayName`],r),n}function ps(e){let t={},n=g(e,[`config`]);return n!=null&&fs(n,t),t}function ms(e,t){let n={},r=g(e,[`force`]);return t!==void 0&&r!=null&&h(t,[`_query`,`force`],r),n}function hs(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`_url`,`name`],n);let r=g(e,[`config`]);return r!=null&&ms(r,t),t}function gs(e){let t={},n=g(e,[`name`]);return n!=null&&h(t,[`_url`,`name`],n),t}function _s(e,t){let n={},r=g(e,[`customMetadata`]);if(t!==void 0&&r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`customMetadata`],e)}let i=g(e,[`chunkingConfig`]);return t!==void 0&&i!=null&&h(t,[`chunkingConfig`],i),n}function vs(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`name`],n);let r=g(e,[`metadata`]);r!=null&&h(t,[`metadata`],r);let i=g(e,[`done`]);i!=null&&h(t,[`done`],i);let a=g(e,[`error`]);a!=null&&h(t,[`error`],a);let o=g(e,[`response`]);return o!=null&&h(t,[`response`],bs(o)),t}function ys(e){let t={},n=g(e,[`fileSearchStoreName`]);n!=null&&h(t,[`_url`,`file_search_store_name`],n);let r=g(e,[`fileName`]);r!=null&&h(t,[`fileName`],r);let i=g(e,[`config`]);return i!=null&&_s(i,t),t}function bs(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`parent`]);r!=null&&h(t,[`parent`],r);let i=g(e,[`documentName`]);return i!=null&&h(t,[`documentName`],i),t}function xs(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);return t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),n}function Ss(e){let t={},n=g(e,[`config`]);return n!=null&&xs(n,t),t}function Cs(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`fileSearchStores`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`fileSearchStores`],e)}return t}function ws(e,t){let n={},r=g(e,[`mimeType`]);t!==void 0&&r!=null&&h(t,[`mimeType`],r);let i=g(e,[`displayName`]);t!==void 0&&i!=null&&h(t,[`displayName`],i);let a=g(e,[`customMetadata`]);if(t!==void 0&&a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`customMetadata`],e)}let o=g(e,[`chunkingConfig`]);return t!==void 0&&o!=null&&h(t,[`chunkingConfig`],o),n}function Ts(e){let t={},n=g(e,[`fileSearchStoreName`]);n!=null&&h(t,[`_url`,`file_search_store_name`],n);let r=g(e,[`config`]);return r!=null&&ws(r,t),t}function Es(e){let t={},n=g(e,[`sdkHttpResponse`]);return n!=null&&h(t,[`sdkHttpResponse`],n),t}var Ds=`Content-Type`,Os=`X-Server-Timeout`,ks=`User-Agent`,As=`x-goog-api-client`,js=`google-genai-sdk/1.48.0`,Ms=`v1beta1`,Ns=`v1beta`,Ps=5,Fs=[408,429,500,502,503,504],Is=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&&this.clientOptions.location===`us`?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??Ms}else this.clientOptions.apiKey||console.warn(`API key should be set when using the Gemini API.`),t.apiVersion=this.clientOptions.apiVersion??Ns,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===Re.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&&Rs(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 Ls(e),new dt(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 Ls(e),this.processStreamResponse(e))).catch(e=>{throw e instanceof Error?e:Error(JSON.stringify(e))})}processStreamResponse(e){return G(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 W(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 W(new dt(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,c.default)(async()=>{let n=await fetch(e,t);if(n.ok)return n;throw Fs.includes(n.status)?Error(`Retryable HTTP Error: ${n.statusText}`):new c.AbortError(`Non-retryable exception ${n.statusText} sending request`)},{retries:(n.attempts??Ps)-1})}getDefaultHeaders(){let e={},t=js+` `+this.clientOptions.userAgentExtra;return e[ks]=t,e[As]=t,e[Ds]=`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(Os,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=m(`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&&ws(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 Ls(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 Rs(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 zs=`mcp_used/unknown`,Bs=!1;function Vs(e){for(let t of e)if(Us(t)||typeof t==`object`&&`inputSchema`in t)return!0;return Bs}function Hs(e){e[As]=((e[As]??``)+` ${zs}`).trimStart()}function Us(e){return typeof e==`object`&&!!e&&e instanceof Gs}function Ws(e){return G(this,arguments,function*(e,t=100){let n,r=0;for(;r<t;){let t=yield W(e.listTools({cursor:n}));for(let e of t.tools)yield yield W(e),r++;if(!t.nextCursor)break;n=t.nextCursor}})}var Gs=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,K(Ws(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 Ks(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 qs=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=Xs(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=>{Ks(l,s.onmessage,e)},onerror:s?.onerror??function(e){},onclose:s?.onclose??function(e){}},d=this.webSocketFactory.create(i,Ys(r),u);d.connect(),await o;let f={setup:{model:I(this.apiClient,e.model)}};return d.send(JSON.stringify(f)),new Js(d,this.apiClient)}},Js=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(P.PLAY)}pause(){this.sendPlaybackControl(P.PAUSE)}stop(){this.sendPlaybackControl(P.STOP)}resetContext(){this.sendPlaybackControl(P.RESET_CONTEXT)}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="FunctionResponse request must have an `id` field from the response of a ToolCall.FunctionalCalls in Google AI.";async function Qs(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 $s=class{constructor(e,t,n){this.apiClient=e,this.auth=t,this.webSocketFactory=n,this.music=new qs(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&&Vs(e.config.tools)&&Hs(i);let a=rc(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=>{Qs(u,c.onmessage,e)},onerror:c?.onerror??function(e){},onclose:c?.onclose??function(e){}},f=this.webSocketFactory.create(r,nc(a),d);f.connect(),await s;let p=I(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:[Te.AUDIO]}:e.config.responseModalities=[Te.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 tc(f,this.apiClient)}isCallableTool(e){return`callTool`in e&&typeof e.callTool==`function`}},ec={turnComplete:!0},tc=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=R(t.turns),e.isVertexAI()||(n=n.map(e=>oa(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(Zs)}return{toolResponse:{functionResponses:n}}}sendClientContent(e){e=Object.assign(Object.assign({},ec),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 nc(e){let t={};return e.forEach((e,n)=>{t[n]=e}),t}function rc(e){let t=new Headers;for(let[n,r]of Object.entries(e))t.append(n,r);return t}var ic=10;function ac(e){if(e?.automaticFunctionCalling?.disable)return!0;let t=!1;for(let n of e?.tools??[])if(oc(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 oc(e){return`callTool`in e&&typeof e.callTool==`function`}function sc(e){return(e.config?.tools)?.some(e=>oc(e))??!1}function cc(e){let t=[];return e?.config?.tools&&e.config.tools.forEach((e,n)=>{if(oc(e))return;let r=e;r.functionDeclarations&&r.functionDeclarations.length>0&&t.push(n)}),t}function lc(e){return!e?.automaticFunctionCalling?.ignoreCallHistory}var uc=class extends p{constructor(e){super(),this.apiClient=e,this.embedContent=async e=>{if(!this.apiClient.isVertexAI())return await this.embedContentInternal(e);if(e.model.includes(`gemini`)&&e.model!==`gemini-embedding-001`||e.model.includes(`maas`)){let t=R(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:Ve.EMBED_CONTENT});return await this.embedContentInternal(n)}else{let t=Object.assign(Object.assign({},e),{embeddingApiType:Ve.PREDICT});return await this.embedContentInternal(t)}},this.generateContent=async e=>{let t=await this.processParamsMaybeAddMcpUsage(e);if(this.maybeMoveToResponseJsonSchem(e),!sc(e)||ac(e.config))return await this.generateContentInternal(t);let n=cc(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=R(t.contents),o=t.config?.automaticFunctionCalling?.maximumRemoteCalls??ic,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(oc(t)){let e=await t.callTool(r.functionCalls);o.push(...e)}s++,i={role:`user`,parts:o},t.contents=R(t.contents),t.contents.push(n),t.contents.push(i),lc(t.config)&&(a.push(n),a.push(i))}return lc(t.config)&&(r.automaticFunctionCallingHistory=a),r},this.generateContentStream=async e=>{if(this.maybeMoveToResponseJsonSchem(e),ac(e.config)){let t=await this.processParamsMaybeAddMcpUsage(e);return await this.generateContentStreamInternal(t)}let t=cc(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 U(H.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=>oc(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&&Vs(e.config.tools)){let t=e.config.httpOptions?.headers??{},n=Object.assign({},t);Object.keys(n).length===0&&(n=this.apiClient.getDefaultHeaders()),Hs(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(oc(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??ic,n=!1,r=0,i=await this.initAfcToolsMap(e);return(function(e,i,a){return G(this,arguments,function*(){for(var o,s,c,l;r<t;){n&&=(r++,!1);let p=yield W(e.processParamsMaybeAddMcpUsage(a)),m=yield W(e.generateContentStreamInternal(p)),h=[],g=[];try{for(var u=!0,d=(s=void 0,K(m)),f;f=yield W(d.next()),o=f.done,!o;u=!0){l=f.value,u=!1;let e=l;if(yield yield W(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 W(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 W(c.call(d)))}finally{if(s)throw s.error}}if(h.length>0){n=!0;let e=new F;e.candidates=[{content:{role:`user`,parts:h}}],yield yield W(e);let t=[];t.push(...g),t.push({role:`user`,parts:h}),a.contents=R(a.contents).concat(t)}else break}})})(this,i,e)}async generateContentInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Fa(this.apiClient,e);return n=m(`{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=La(e),n=new F;return Object.assign(n,t),n})}else{let i=Pa(this.apiClient,e);return n=m(`{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=Ia(e),n=new F;return Object.assign(n,t),n})}}async generateContentStreamInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Fa(this.apiClient,e);return n=m(`{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 G(this,arguments,function*(){var n,r,i,a;try{for(var o=!0,s=K(t),c;c=yield W(s.next()),n=c.done,!n;o=!0){a=c.value,o=!1;let t=a,n=La(yield W(t.json()),e);n.sdkHttpResponse={headers:t.headers};let r=new F;Object.assign(r,n),yield yield W(r)}}catch(e){r={error:e}}finally{try{!o&&!n&&(i=s.return)&&(yield W(i.call(s)))}finally{if(r)throw r.error}}})})}else{let i=Pa(this.apiClient,e);return n=m(`{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 G(this,arguments,function*(){var n,r,i,a;try{for(var o=!0,s=K(t),c;c=yield W(s.next()),n=c.done,!n;o=!0){a=c.value,o=!1;let t=a,n=Ia(yield W(t.json()),e);n.sdkHttpResponse={headers:t.headers};let r=new F;Object.assign(r,n),yield yield W(r)}}catch(e){r={error:e}}finally{try{!o&&!n&&(i=s.return)&&(yield W(i.call(s)))}finally{if(r)throw r.error}}})})}}async embedContentInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=wa(this.apiClient,e,e);return n=m(yn(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=Ea(t,e),r=new ft;return Object.assign(r,n),r})}else{let i=Ca(this.apiClient,e);return n=m(`{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=Ta(e),n=new ft;return Object.assign(n,t),n})}}async generateImagesInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=Va(this.apiClient,e);return n=m(`{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=Ua(e),n=new pt;return Object.assign(n,t),n})}else{let i=Ba(this.apiClient,e);return n=m(`{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=Ha(e),n=new pt;return Object.assign(n,t),n})}}async editImageInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=ya(this.apiClient,e);return n=m(`{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 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=ns(this.apiClient,e);return n=m(`{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=rs(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=Ao(this.apiClient,e);return n=m(`{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=jo(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=Bo(this.apiClient,e);return n=m(`{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=Vo(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=so(this.apiClient,e);return n=m(`{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=>wo(e))}else{let i=oo(this.apiClient,e);return n=m(`{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=>Co(e))}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=yo(this.apiClient,e);return n=m(`{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=xo(e),n=new vt;return Object.assign(n,t),n})}else{let i=vo(this.apiClient,e);return n=m(`{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=bo(e),n=new vt;return Object.assign(n,t),n})}}async update(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=es(this.apiClient,e);return n=m(`{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=>wo(e))}else{let i=$o(this.apiClient,e);return n=m(`{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=>Co(e))}}async delete(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=ha(this.apiClient,e);return n=m(`{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=_a(e),n=new yt;return Object.assign(n,t),n})}else{let i=ma(this.apiClient,e);return n=m(`{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=ga(e),n=new yt;return Object.assign(n,t),n})}}async countTokens(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=da(this.apiClient,e);return n=m(`{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=pa(e),n=new bt;return Object.assign(n,t),n})}else{let i=ua(this.apiClient,e);return n=m(`{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=fa(e),n=new bt;return Object.assign(n,t),n})}}async computeTokens(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=na(this.apiClient,e);return n=m(`{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=ra(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=Ya(this.apiClient,e);return n=m(`{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=qa(e),n=new St;return Object.assign(n,t),n})}else{let i=Ja(this.apiClient,e);return n=m(`{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=Ka(e),n=new St;return Object.assign(n,t),n})}}},dc=class extends p{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=O(e);return n=m(`{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=D(e);return n=m(`{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=b(e);return n=m(`{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 fc(e){let t={};if(g(e,[`languageCodes`])!==void 0)throw Error(`languageCodes parameter is not supported in Gemini API.`);return t}function pc(e){let t={},n=g(e,[`apiKey`]);if(n!=null&&h(t,[`apiKey`],n),g(e,[`apiKeyConfig`])!==void 0)throw Error(`apiKeyConfig parameter is not supported in Gemini API.`);if(g(e,[`authType`])!==void 0)throw Error(`authType parameter is not supported in Gemini API.`);if(g(e,[`googleServiceAccountConfig`])!==void 0)throw Error(`googleServiceAccountConfig parameter is not supported in Gemini API.`);if(g(e,[`httpBasicAuthConfig`])!==void 0)throw Error(`httpBasicAuthConfig parameter is not supported in Gemini API.`);if(g(e,[`oauthConfig`])!==void 0)throw Error(`oauthConfig parameter is not supported in Gemini API.`);if(g(e,[`oidcConfig`])!==void 0)throw Error(`oidcConfig parameter is not supported in Gemini API.`);return t}function mc(e){let t={},n=g(e,[`data`]);if(n!=null&&h(t,[`data`],n),g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function hc(e){let t={},n=g(e,[`parts`]);if(n!=null){let e=n;Array.isArray(e)&&(e=e.map(e=>wc(e))),h(t,[`parts`],e)}let r=g(e,[`role`]);return r!=null&&h(t,[`role`],r),t}function gc(e,t,n){let r={},i=g(t,[`expireTime`]);n!==void 0&&i!=null&&h(n,[`expireTime`],i);let a=g(t,[`newSessionExpireTime`]);n!==void 0&&a!=null&&h(n,[`newSessionExpireTime`],a);let o=g(t,[`uses`]);n!==void 0&&o!=null&&h(n,[`uses`],o);let s=g(t,[`liveConnectConstraints`]);n!==void 0&&s!=null&&h(n,[`bidiGenerateContentSetup`],Cc(e,s));let c=g(t,[`lockAdditionalFields`]);return n!==void 0&&c!=null&&h(n,[`fieldMask`],c),r}function _c(e,t){let n={},r=g(t,[`config`]);return r!=null&&h(n,[`config`],gc(e,r,n)),n}function vc(e){let t={};if(g(e,[`displayName`])!==void 0)throw Error(`displayName parameter is not supported in Gemini API.`);let n=g(e,[`fileUri`]);n!=null&&h(t,[`fileUri`],n);let r=g(e,[`mimeType`]);return r!=null&&h(t,[`mimeType`],r),t}function yc(e){let t={},n=g(e,[`id`]);n!=null&&h(t,[`id`],n);let r=g(e,[`args`]);r!=null&&h(t,[`args`],r);let i=g(e,[`name`]);if(i!=null&&h(t,[`name`],i),g(e,[`partialArgs`])!==void 0)throw Error(`partialArgs parameter is not supported in Gemini API.`);if(g(e,[`willContinue`])!==void 0)throw Error(`willContinue parameter is not supported in Gemini API.`);return t}function bc(e){let t={},n=g(e,[`authConfig`]);n!=null&&h(t,[`authConfig`],pc(n));let r=g(e,[`enableWidget`]);return r!=null&&h(t,[`enableWidget`],r),t}function xc(e){let t={},n=g(e,[`searchTypes`]);if(n!=null&&h(t,[`searchTypes`],n),g(e,[`blockingConfidence`])!==void 0)throw Error(`blockingConfidence parameter is not supported in Gemini API.`);if(g(e,[`excludeDomains`])!==void 0)throw Error(`excludeDomains parameter is not supported in Gemini API.`);let r=g(e,[`timeRangeFilter`]);return r!=null&&h(t,[`timeRangeFilter`],r),t}function Sc(e,t){let n={},r=g(e,[`generationConfig`]);t!==void 0&&r!=null&&h(t,[`setup`,`generationConfig`],r);let i=g(e,[`responseModalities`]);t!==void 0&&i!=null&&h(t,[`setup`,`generationConfig`,`responseModalities`],i);let a=g(e,[`temperature`]);t!==void 0&&a!=null&&h(t,[`setup`,`generationConfig`,`temperature`],a);let o=g(e,[`topP`]);t!==void 0&&o!=null&&h(t,[`setup`,`generationConfig`,`topP`],o);let s=g(e,[`topK`]);t!==void 0&&s!=null&&h(t,[`setup`,`generationConfig`,`topK`],s);let c=g(e,[`maxOutputTokens`]);t!==void 0&&c!=null&&h(t,[`setup`,`generationConfig`,`maxOutputTokens`],c);let l=g(e,[`mediaResolution`]);t!==void 0&&l!=null&&h(t,[`setup`,`generationConfig`,`mediaResolution`],l);let u=g(e,[`seed`]);t!==void 0&&u!=null&&h(t,[`setup`,`generationConfig`,`seed`],u);let d=g(e,[`speechConfig`]);t!==void 0&&d!=null&&h(t,[`setup`,`generationConfig`,`speechConfig`],en(d));let f=g(e,[`thinkingConfig`]);t!==void 0&&f!=null&&h(t,[`setup`,`generationConfig`,`thinkingConfig`],f);let p=g(e,[`enableAffectiveDialog`]);t!==void 0&&p!=null&&h(t,[`setup`,`generationConfig`,`enableAffectiveDialog`],p);let m=g(e,[`systemInstruction`]);t!==void 0&&m!=null&&h(t,[`setup`,`systemInstruction`],hc(L(m)));let _=g(e,[`tools`]);if(t!==void 0&&_!=null){let e=nn(_);Array.isArray(e)&&(e=e.map(e=>Ec(tn(e)))),h(t,[`setup`,`tools`],e)}let v=g(e,[`sessionResumption`]);t!==void 0&&v!=null&&h(t,[`setup`,`sessionResumption`],Tc(v));let y=g(e,[`inputAudioTranscription`]);t!==void 0&&y!=null&&h(t,[`setup`,`inputAudioTranscription`],fc(y));let b=g(e,[`outputAudioTranscription`]);t!==void 0&&b!=null&&h(t,[`setup`,`outputAudioTranscription`],fc(b));let x=g(e,[`realtimeInputConfig`]);t!==void 0&&x!=null&&h(t,[`setup`,`realtimeInputConfig`],x);let S=g(e,[`contextWindowCompression`]);t!==void 0&&S!=null&&h(t,[`setup`,`contextWindowCompression`],S);let C=g(e,[`proactivity`]);if(t!==void 0&&C!=null&&h(t,[`setup`,`proactivity`],C),g(e,[`explicitVadSignal`])!==void 0)throw Error(`explicitVadSignal parameter is not supported in Gemini API.`);return n}function Cc(e,t){let n={},r=g(t,[`model`]);r!=null&&h(n,[`setup`,`model`],I(e,r));let i=g(t,[`config`]);return i!=null&&h(n,[`config`],Sc(i,n)),n}function wc(e){let t={},n=g(e,[`mediaResolution`]);n!=null&&h(t,[`mediaResolution`],n);let r=g(e,[`codeExecutionResult`]);r!=null&&h(t,[`codeExecutionResult`],r);let i=g(e,[`executableCode`]);i!=null&&h(t,[`executableCode`],i);let a=g(e,[`fileData`]);a!=null&&h(t,[`fileData`],vc(a));let o=g(e,[`functionCall`]);o!=null&&h(t,[`functionCall`],yc(o));let s=g(e,[`functionResponse`]);s!=null&&h(t,[`functionResponse`],s);let c=g(e,[`inlineData`]);c!=null&&h(t,[`inlineData`],mc(c));let l=g(e,[`text`]);l!=null&&h(t,[`text`],l);let u=g(e,[`thought`]);u!=null&&h(t,[`thought`],u);let d=g(e,[`thoughtSignature`]);d!=null&&h(t,[`thoughtSignature`],d);let f=g(e,[`videoMetadata`]);f!=null&&h(t,[`videoMetadata`],f);let p=g(e,[`toolCall`]);p!=null&&h(t,[`toolCall`],p);let m=g(e,[`toolResponse`]);m!=null&&h(t,[`toolResponse`],m);let _=g(e,[`partMetadata`]);return _!=null&&h(t,[`partMetadata`],_),t}function Tc(e){let t={},n=g(e,[`handle`]);if(n!=null&&h(t,[`handle`],n),g(e,[`transparent`])!==void 0)throw Error(`transparent parameter is not supported in Gemini API.`);return t}function Ec(e){let t={};if(g(e,[`retrieval`])!==void 0)throw Error(`retrieval parameter is not supported in Gemini API.`);let n=g(e,[`computerUse`]);n!=null&&h(t,[`computerUse`],n);let r=g(e,[`fileSearch`]);r!=null&&h(t,[`fileSearch`],r);let i=g(e,[`googleSearch`]);i!=null&&h(t,[`googleSearch`],xc(i));let a=g(e,[`googleMaps`]);a!=null&&h(t,[`googleMaps`],bc(a));let o=g(e,[`codeExecution`]);if(o!=null&&h(t,[`codeExecution`],o),g(e,[`enterpriseWebSearch`])!==void 0)throw Error(`enterpriseWebSearch parameter is not supported in Gemini API.`);let s=g(e,[`functionDeclarations`]);if(s!=null){let e=s;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`functionDeclarations`],e)}let c=g(e,[`googleSearchRetrieval`]);if(c!=null&&h(t,[`googleSearchRetrieval`],c),g(e,[`parallelAiSearch`])!==void 0)throw Error(`parallelAiSearch parameter is not supported in Gemini API.`);let l=g(e,[`urlContext`]);l!=null&&h(t,[`urlContext`],l);let u=g(e,[`mcpServers`]);if(u!=null){let e=u;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`mcpServers`],e)}return t}function Dc(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 Oc(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=Dc(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 kc=class extends p{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=_c(this.apiClient,e);n=m(`auth_tokens`,i._url),r=i._query,delete i.config,delete i._url,delete i._query;let a=Oc(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 Ac(e,t){let n={},r=g(e,[`force`]);return t!==void 0&&r!=null&&h(t,[`_query`,`force`],r),n}function jc(e){let t={},n=g(e,[`name`]);n!=null&&h(t,[`_url`,`name`],n);let r=g(e,[`config`]);return r!=null&&Ac(r,t),t}function Mc(e){let t={},n=g(e,[`name`]);return n!=null&&h(t,[`_url`,`name`],n),t}function Nc(e,t){let n={},r=g(e,[`pageSize`]);t!==void 0&&r!=null&&h(t,[`_query`,`pageSize`],r);let i=g(e,[`pageToken`]);return t!==void 0&&i!=null&&h(t,[`_query`,`pageToken`],i),n}function Pc(e){let t={},n=g(e,[`parent`]);n!=null&&h(t,[`_url`,`parent`],n);let r=g(e,[`config`]);return r!=null&&Nc(r,t),t}function Fc(e){let t={},n=g(e,[`sdkHttpResponse`]);n!=null&&h(t,[`sdkHttpResponse`],n);let r=g(e,[`nextPageToken`]);r!=null&&h(t,[`nextPageToken`],r);let i=g(e,[`documents`]);if(i!=null){let e=i;Array.isArray(e)&&(e=e.map(e=>e)),h(t,[`documents`],e)}return t}var Ic=class extends p{constructor(e){super(),this.apiClient=e,this.list=async e=>new U(H.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=Mc(e);return n=m(`{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=jc(e);t=m(`{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=Pc(e);return n=m(`{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=Fc(e),n=new Dt;return Object.assign(n,t),n})}}},Lc=class extends p{constructor(e,t=new Ic(e)){super(),this.apiClient=e,this.documents=t,this.list=async(e={})=>new U(H.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=ps(e);return n=m(`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=gs(e);return n=m(`{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=hs(e);t=m(`{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=Ss(e);return n=m(`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=Cs(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=Ts(e);return n=m(`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=Es(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=ys(e);return n=m(`{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=vs(e),n=new At;return Object.assign(n,t),n})}}},Rc=function(){let{crypto:e}=globalThis;if(e?.randomUUID)return Rc=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))},zc=()=>Rc();function Bc(e){return typeof e==`object`&&!!e&&(`name`in e&&e.name===`AbortError`||`message`in e&&String(e.message).includes(`FetchRequestCanceledException`))}var Vc=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)},Y=class extends Error{},X=class e extends Y{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 Uc({message:r,cause:Vc(n)});let a=n;return t===400?new Gc(t,a,r,i):t===401?new Kc(t,a,r,i):t===403?new qc(t,a,r,i):t===404?new Jc(t,a,r,i):t===409?new Yc(t,a,r,i):t===422?new Xc(t,a,r,i):t===429?new Zc(t,a,r,i):t>=500?new Qc(t,a,r,i):new e(t,a,r,i)}},Hc=class extends X{constructor({message:e}={}){super(void 0,void 0,e||`Request was aborted.`,void 0)}},Uc=class extends X{constructor({message:e,cause:t}){super(void 0,void 0,e||`Connection error.`,void 0),t&&(this.cause=t)}},Wc=class extends Uc{constructor({message:e}={}){super({message:e??`Request timed out.`})}},Gc=class extends X{},Kc=class extends X{},qc=class extends X{},Jc=class extends X{},Yc=class extends X{},Xc=class extends X{},Zc=class extends X{},Qc=class extends X{},$c=/^[a-z][a-z0-9+.-]*:/i,el=e=>$c.test(e),tl=e=>(tl=Array.isArray,tl(e)),nl=tl;function rl(e){if(!e)return!0;for(let t in e)return!1;return!0}function il(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var al=(e,t)=>{if(typeof t!=`number`||!Number.isInteger(t))throw new Y(`${e} must be an integer`);if(t<0)throw new Y(`${e} must be a positive integer`);return t},ol=e=>{try{return JSON.parse(e)}catch{return}},sl=e=>new Promise(t=>setTimeout(t,e));function cl(){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 ll(...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 ul(e){let t=Symbol.asyncIterator in e?e[Symbol.asyncIterator]():e[Symbol.iterator]();return ll({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 dl(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 fl(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 pl=({headers:e,body:t})=>({bodyHeaders:{"content-type":`application/json`},body:JSON.stringify(t)});function ml(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 Y(`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 hl=`0.0.1`,gl=()=>{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 _l(e,t,n){return gl(),new File(e,t??`unknown_file`,n)}function vl(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 yl=e=>typeof e==`object`&&!!e&&typeof e[Symbol.asyncIterator]==`function`,bl=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`,xl=e=>typeof e==`object`&&!!e&&typeof e.name==`string`&&typeof e.lastModified==`number`&&bl(e),Sl=e=>typeof e==`object`&&!!e&&typeof e.url==`string`&&typeof e.blob==`function`;async function Cl(e,t,n){if(gl(),e=await e,xl(e))return e instanceof File?e:_l([await e.arrayBuffer()],e.name);if(Sl(e)){let r=await e.blob();return t||=new URL(e.url).pathname.split(/[\\/]/).pop(),_l(await wl(r),t,n)}let r=await wl(e);if(t||=vl(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 _l(r,t,n)}async function wl(e){var t,n,r,i;let a=[];if(typeof e==`string`||ArrayBuffer.isView(e)||e instanceof ArrayBuffer)a.push(e);else if(bl(e))a.push(e instanceof Blob?e:await e.arrayBuffer());else if(yl(e))try{for(var o=!0,s=K(e),c;c=await s.next(),t=c.done,!t;o=!0){i=c.value,o=!1;let e=i;a.push(...await wl(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}`:``}${Tl(e)}`)}return a}function Tl(e){return typeof e!=`object`||!e?``:`; props: [${Object.getOwnPropertyNames(e).map(e=>`"${e}"`).join(`, `)}]`}var El=class{constructor(e){this._client=e}};El._key=[];function Dl(e){return e.replace(/[^A-Za-z0-9\-._~!$&'()*+,;=:@]+/g,encodeURIComponent)}var Ol=Object.freeze(Object.create(null)),kl=((e=Dl)=>(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??Ol)??Ol)?.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 Y(`Path parameters result in path with invalid segments:\n${i.map(e=>e.error).join(`
6
+ `)}\n${a}\n${t}`)}return a}))(Dl),Al=class extends El{create(e,t){let{api_version:n=this._client.apiVersion}=e,r=ei(e,[`api_version`]);if(`model`in r&&`agent_config`in r)throw new Y("Invalid request: specified `model` and `agent_config`. If specifying `model`, use `generation_config`.");if(`agent`in r&&`generation_config`in r)throw new Y("Invalid request: specified `agent` and `generation_config`. If specifying `agent`, use `agent_config`.");return this._client.post(kl`/${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(kl`/${r}/interactions/${e}`,n)}cancel(e,t={},n){let{api_version:r=this._client.apiVersion}=t??{};return this._client.post(kl`/${r}/interactions/${e}/cancel`,n)}get(e,t={},n){let r=t??{},{api_version:i=this._client.apiVersion}=r,a=ei(r,[`api_version`]);return this._client.get(kl`/${i}/interactions/${e}`,Object.assign(Object.assign({query:a},n),{stream:t?.stream??!1}))}};Al._key=Object.freeze([`interactions`]);var jl=class extends Al{};function Ml(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 Nl;function Pl(e){let t;return(Nl??=(t=new globalThis.TextEncoder,t.encode.bind(t)))(e)}var Fl;function Il(e){let t;return(Fl??=(t=new globalThis.TextDecoder,t.decode.bind(t)))(e)}var Ll=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`?Pl(e):e;this.buffer=Ml([this.buffer,t]);let n=[],r;for(;(r=Rl(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(Il(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=Il(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
+ `):[]}};Ll.NEWLINE_CHARS=new Set([`
8
+ `,`\r`]),Ll.NEWLINE_REGEXP=/\r\n|[\n\r]/g;function Rl(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 zl={off:0,error:200,warn:300,info:400,debug:500},Bl=(e,t,n)=>{if(e){if(il(zl,e))return e;Z(n).warn(`${t} was set to ${JSON.stringify(e)}, expected one of ${JSON.stringify(Object.keys(zl))}`)}};function Vl(){}function Hl(e,t,n){return!t||zl[e]>zl[n]?Vl:t[e].bind(t)}var Ul={error:Vl,warn:Vl,info:Vl,debug:Vl},Wl=new WeakMap;function Z(e){let t=e.logger,n=e.logLevel??`off`;if(!t)return Ul;let r=Wl.get(t);if(r&&r[0]===n)return r[1];let i={error:Hl(`error`,t,n),warn:Hl(`warn`,t,n),info:Hl(`info`,t,n),debug:Hl(`debug`,t,n)};return Wl.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),Gl=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 G(this,arguments,function*(){var e,r,o,s;if(i)throw new Y("Cannot iterate over a consumed stream, use `.tee()` to split the stream.");i=!0;let c=!1;try{try{for(var l=!0,u=K(Kl(t,n)),d;d=yield W(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 W(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 W(o.call(u)))}finally{if(r)throw r.error}}c=!0}catch(e){if(Bc(e))return yield W(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 G(this,arguments,function*(){var e,n,r,i;let a=new Ll,o=dl(t);try{for(var s=!0,c=K(o),l;l=yield W(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 W(t)}}catch(e){n={error:e}}finally{try{!s&&!e&&(r=c.return)&&(yield W(r.call(c)))}finally{if(n)throw n.error}}for(let e of a.flush())yield yield W(e)})}function o(){return G(this,arguments,function*(){var e,t,r,o;if(i)throw new Y("Cannot iterate over a consumed stream, use `.tee()` to split the stream.");i=!0;let s=!1;try{try{for(var c=!0,l=K(a()),u;u=yield W(l.next()),e=u.done,!e;c=!0){o=u.value,c=!1;let e=o;s||e&&(yield yield W(JSON.parse(e)))}}catch(e){t={error:e}}finally{try{!c&&!e&&(r=l.return)&&(yield W(r.call(l)))}finally{if(t)throw t.error}}s=!0}catch(e){if(Bc(e))return yield W(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 ll({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=Pl(JSON.stringify(n)+`
9
+ `);e.enqueue(i)}catch(t){e.error(t)}},async cancel(){await t.return?.call(t)}})}};function Kl(e,t){return G(this,arguments,function*(){var n,r,i,a;if(!e.body)throw t.abort(),globalThis.navigator!==void 0&&globalThis.navigator.product===`ReactNative`?new Y(`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 Y(`Attempted to iterate over a response with no body`);let o=new Jl,s=new Ll,c=dl(e.body);try{for(var l=!0,u=K(ql(c)),d;d=yield W(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 W(e))}}}catch(e){r={error:e}}finally{try{!l&&!n&&(i=u.return)&&(yield W(i.call(u)))}finally{if(r)throw r.error}}for(let e of s.flush()){let t=o.decode(e);t&&(yield yield W(t))}})}function ql(e){return G(this,arguments,function*(){var t,n,r,i;try{for(var a=!0,o=K(e),s;s=yield W(o.next()),t=s.done,!t;a=!0){i=s.value,a=!1;let e=i;e!=null&&(yield yield W(e instanceof ArrayBuffer?new Uint8Array(e):typeof e==`string`?Pl(e):e))}}catch(e){n={error:e}}finally{try{!a&&!t&&(r=o.return)&&(yield W(r.call(o)))}finally{if(n)throw n.error}}})}var Jl=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]=Yl(e,`:`);return r.startsWith(` `)&&(r=r.substring(1)),t===`event`?this.event=r:t===`data`&&this.data.push(r),null}};function Yl(e,t){let n=e.indexOf(t);return n===-1?[e,``,``]:[e.substring(0,n),t,e.substring(n+t.length)]}async function Xl(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):Gl.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 Zl=class e extends Promise{constructor(e,t,n=Xl){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)}},Ql=Symbol(`brand.privateNullableHeaders`);function*$l(e){if(!e)return;if(Ql 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():nl(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=nl(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 eu=e=>{let t=new Headers,n=new Set;for(let r of e){let e=new Set;for(let[i,a]of $l(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{[Ql]:!0,values:t,nulls:n}},tu=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()},nu,ru=class e{constructor(t){var{baseURL:n=tu(`GEMINI_NEXT_GEN_API_BASE_URL`),apiKey:r=tu(`GEMINI_API_KEY`)??null,apiVersion:i=`v1beta`}=t,a=ei(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=Bl(o.logLevel,`ClientOptions.logLevel`,this)??Bl(tu(`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??cl(),this.encoder=pl,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=eu([e.headers]);if(!(t.values.has(`authorization`)||t.values.has(`x-goog-api-key`))){if(this.apiKey)return eu([{"x-goog-api-key":this.apiKey}]);if(this.clientAdapter.isVertexAI())return eu([await this.clientAdapter.getAuthHeaders()])}}stringifyQuery(e){return ml(e)}getUserAgent(){return`${this.constructor.name}/JS ${hl}`}defaultIdempotencyKey(){return`stainless-node-retry-${zc()}`}makeStatusError(e,t,n,r){return X.generate(e,t,n,r)}buildURL(e,t,n){let r=!this.baseURLOverridden()&&n||this.baseURL,i=el(e)?new URL(e):new URL(r+(r.endsWith(`/`)&&e.startsWith(`/`)?e.slice(1):e)),a=this.defaultQuery(),o=Object.fromEntries(i.searchParams);return(!rl(a)||!rl(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 Zl(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 Hc;let d=new AbortController,f=await this.fetchWithTimeout(o,a,s,d).catch(Vc),p=Date.now();if(f instanceof globalThis.Error){let e=`retrying, ${t} attempts remaining`;if(r.signal?.aborted)throw new Hc;let i=Bc(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 Wc:new Uc({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 fl(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=>Vc(e).message),o=ol(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=ei(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 sl(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&&al(`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=eu([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=eu([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:ul(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})}};ru.DEFAULT_TIMEOUT=6e4;var $=class extends ru{constructor(){super(...arguments),this.interactions=new jl(this)}};nu=$,$.GeminiNextGenAPIClient=nu,$.GeminiNextGenAPIClientError=Y,$.APIError=X,$.APIConnectionError=Uc,$.APIConnectionTimeoutError=Wc,$.APIUserAbortError=Hc,$.NotFoundError=Jc,$.ConflictError=Yc,$.RateLimitError=Zc,$.BadRequestError=Gc,$.AuthenticationError=Kc,$.InternalServerError=Qc,$.PermissionDeniedError=qc,$.UnprocessableEntityError=Xc,$.toFile=Cl,$.Interactions=jl;function iu(e,t){let n={},r=g(e,[`name`]);return r!=null&&h(n,[`_url`,`name`],r),n}function au(e,t){let n={},r=g(e,[`name`]);return r!=null&&h(n,[`_url`,`name`],r),n}function ou(e,t){let n={},r=g(e,[`sdkHttpResponse`]);return r!=null&&h(n,[`sdkHttpResponse`],r),n}function su(e,t){let n={},r=g(e,[`sdkHttpResponse`]);return r!=null&&h(n,[`sdkHttpResponse`],r),n}function cu(e,t,n){let r={};if(g(e,[`validationDataset`])!==void 0)throw Error(`validationDataset parameter is not supported in Gemini API.`);let i=g(e,[`tunedModelDisplayName`]);if(t!==void 0&&i!=null&&h(t,[`displayName`],i),g(e,[`description`])!==void 0)throw Error(`description parameter is not supported in Gemini API.`);let a=g(e,[`epochCount`]);t!==void 0&&a!=null&&h(t,[`tuningTask`,`hyperparameters`,`epochCount`],a);let o=g(e,[`learningRateMultiplier`]);if(o!=null&&h(r,[`tuningTask`,`hyperparameters`,`learningRateMultiplier`],o),g(e,[`exportLastCheckpointOnly`])!==void 0)throw Error(`exportLastCheckpointOnly parameter is not supported in Gemini API.`);if(g(e,[`preTunedModelCheckpointId`])!==void 0)throw Error(`preTunedModelCheckpointId parameter is not supported in Gemini API.`);if(g(e,[`adapterSize`])!==void 0)throw Error(`adapterSize parameter is not supported in Gemini API.`);if(g(e,[`tuningMode`])!==void 0)throw Error(`tuningMode parameter is not supported in Gemini API.`);if(g(e,[`customBaseModel`])!==void 0)throw Error(`customBaseModel parameter is not supported in Gemini API.`);let s=g(e,[`batchSize`]);t!==void 0&&s!=null&&h(t,[`tuningTask`,`hyperparameters`,`batchSize`],s);let c=g(e,[`learningRate`]);if(t!==void 0&&c!=null&&h(t,[`tuningTask`,`hyperparameters`,`learningRate`],c),g(e,[`labels`])!==void 0)throw Error(`labels parameter is not supported in Gemini API.`);if(g(e,[`beta`])!==void 0)throw Error(`beta parameter is not supported in Gemini API.`);if(g(e,[`baseTeacherModel`])!==void 0)throw Error(`baseTeacherModel parameter is not supported in Gemini API.`);if(g(e,[`tunedTeacherModelSource`])!==void 0)throw Error(`tunedTeacherModelSource parameter is not supported in Gemini API.`);if(g(e,[`sftLossWeightMultiplier`])!==void 0)throw Error(`sftLossWeightMultiplier parameter is not supported in Gemini API.`);if(g(e,[`outputUri`])!==void 0)throw Error(`outputUri parameter is not supported in Gemini API.`);if(g(e,[`encryptionSpec`])!==void 0)throw Error(`encryptionSpec parameter is not supported in Gemini API.`);return r}function lu(e,t,n){let r={},i=g(n,[`config`,`method`]);if(i===void 0&&(i=`SUPERVISED_FINE_TUNING`),i===`SUPERVISED_FINE_TUNING`){let n=g(e,[`validationDataset`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`],Eu(n))}else if(i===`PREFERENCE_TUNING`){let n=g(e,[`validationDataset`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`],Eu(n))}else if(i===`DISTILLATION`){let n=g(e,[`validationDataset`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`],Eu(n))}let a=g(e,[`tunedModelDisplayName`]);t!==void 0&&a!=null&&h(t,[`tunedModelDisplayName`],a);let o=g(e,[`description`]);t!==void 0&&o!=null&&h(t,[`description`],o);let s=g(n,[`config`,`method`]);if(s===void 0&&(s=`SUPERVISED_FINE_TUNING`),s===`SUPERVISED_FINE_TUNING`){let n=g(e,[`epochCount`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`hyperParameters`,`epochCount`],n)}else if(s===`PREFERENCE_TUNING`){let n=g(e,[`epochCount`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`hyperParameters`,`epochCount`],n)}else if(s===`DISTILLATION`){let n=g(e,[`epochCount`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`hyperParameters`,`epochCount`],n)}let c=g(n,[`config`,`method`]);if(c===void 0&&(c=`SUPERVISED_FINE_TUNING`),c===`SUPERVISED_FINE_TUNING`){let n=g(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`hyperParameters`,`learningRateMultiplier`],n)}else if(c===`PREFERENCE_TUNING`){let n=g(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`hyperParameters`,`learningRateMultiplier`],n)}else if(c===`DISTILLATION`){let n=g(e,[`learningRateMultiplier`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`hyperParameters`,`learningRateMultiplier`],n)}let l=g(n,[`config`,`method`]);if(l===void 0&&(l=`SUPERVISED_FINE_TUNING`),l===`SUPERVISED_FINE_TUNING`){let n=g(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`exportLastCheckpointOnly`],n)}else if(l===`PREFERENCE_TUNING`){let n=g(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`exportLastCheckpointOnly`],n)}else if(l===`DISTILLATION`){let n=g(e,[`exportLastCheckpointOnly`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`exportLastCheckpointOnly`],n)}let u=g(n,[`config`,`method`]);if(u===void 0&&(u=`SUPERVISED_FINE_TUNING`),u===`SUPERVISED_FINE_TUNING`){let n=g(e,[`adapterSize`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`hyperParameters`,`adapterSize`],n)}else if(u===`PREFERENCE_TUNING`){let n=g(e,[`adapterSize`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`hyperParameters`,`adapterSize`],n)}else if(u===`DISTILLATION`){let n=g(e,[`adapterSize`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`hyperParameters`,`adapterSize`],n)}let d=g(n,[`config`,`method`]);if(d===void 0&&(d=`SUPERVISED_FINE_TUNING`),d===`SUPERVISED_FINE_TUNING`){let n=g(e,[`tuningMode`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`tuningMode`],n)}else if(d===`DISTILLATION`){let n=g(e,[`tuningMode`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`tuningMode`],n)}let f=g(e,[`customBaseModel`]);t!==void 0&&f!=null&&h(t,[`customBaseModel`],f);let p=g(n,[`config`,`method`]);if(p===void 0&&(p=`SUPERVISED_FINE_TUNING`),p===`SUPERVISED_FINE_TUNING`){let n=g(e,[`batchSize`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`hyperParameters`,`batchSize`],n)}else if(p===`DISTILLATION`){let n=g(e,[`batchSize`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`hyperParameters`,`batchSize`],n)}let m=g(n,[`config`,`method`]);if(m===void 0&&(m=`SUPERVISED_FINE_TUNING`),m===`SUPERVISED_FINE_TUNING`){let n=g(e,[`learningRate`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`hyperParameters`,`learningRate`],n)}else if(m===`DISTILLATION`){let n=g(e,[`learningRate`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`hyperParameters`,`learningRate`],n)}let _=g(e,[`labels`]);t!==void 0&&_!=null&&h(t,[`labels`],_);let v=g(e,[`beta`]);t!==void 0&&v!=null&&h(t,[`preferenceOptimizationSpec`,`hyperParameters`,`beta`],v);let y=g(e,[`baseTeacherModel`]);t!==void 0&&y!=null&&h(t,[`distillationSpec`,`baseTeacherModel`],y);let b=g(e,[`tunedTeacherModelSource`]);t!==void 0&&b!=null&&h(t,[`distillationSpec`,`tunedTeacherModelSource`],b);let x=g(e,[`sftLossWeightMultiplier`]);t!==void 0&&x!=null&&h(t,[`distillationSpec`,`hyperParameters`,`sftLossWeightMultiplier`],x);let S=g(e,[`outputUri`]);t!==void 0&&S!=null&&h(t,[`outputUri`],S);let C=g(e,[`encryptionSpec`]);return t!==void 0&&C!=null&&h(t,[`encryptionSpec`],C),r}function uu(e,t){let n={},r=g(e,[`baseModel`]);r!=null&&h(n,[`baseModel`],r);let i=g(e,[`preTunedModel`]);i!=null&&h(n,[`preTunedModel`],i);let a=g(e,[`trainingDataset`]);a!=null&&xu(a);let o=g(e,[`config`]);return o!=null&&cu(o,n),n}function du(e,t){let n={},r=g(e,[`baseModel`]);r!=null&&h(n,[`baseModel`],r);let i=g(e,[`preTunedModel`]);i!=null&&h(n,[`preTunedModel`],i);let a=g(e,[`trainingDataset`]);a!=null&&Su(a,n,t);let o=g(e,[`config`]);return o!=null&&lu(o,n,t),n}function fu(e,t){let n={},r=g(e,[`name`]);return r!=null&&h(n,[`_url`,`name`],r),n}function pu(e,t){let n={},r=g(e,[`name`]);return r!=null&&h(n,[`_url`,`name`],r),n}function mu(e,t,n){let r={},i=g(e,[`pageSize`]);t!==void 0&&i!=null&&h(t,[`_query`,`pageSize`],i);let a=g(e,[`pageToken`]);t!==void 0&&a!=null&&h(t,[`_query`,`pageToken`],a);let o=g(e,[`filter`]);return t!==void 0&&o!=null&&h(t,[`_query`,`filter`],o),r}function hu(e,t,n){let r={},i=g(e,[`pageSize`]);t!==void 0&&i!=null&&h(t,[`_query`,`pageSize`],i);let a=g(e,[`pageToken`]);t!==void 0&&a!=null&&h(t,[`_query`,`pageToken`],a);let o=g(e,[`filter`]);return t!==void 0&&o!=null&&h(t,[`_query`,`filter`],o),r}function gu(e,t){let n={},r=g(e,[`config`]);return r!=null&&mu(r,n),n}function _u(e,t){let n={},r=g(e,[`config`]);return r!=null&&hu(r,n),n}function vu(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`nextPageToken`]);i!=null&&h(n,[`nextPageToken`],i);let a=g(e,[`tunedModels`]);if(a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>Cu(e))),h(n,[`tuningJobs`],e)}return n}function yu(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`nextPageToken`]);i!=null&&h(n,[`nextPageToken`],i);let a=g(e,[`tuningJobs`]);if(a!=null){let e=a;Array.isArray(e)&&(e=e.map(e=>wu(e))),h(n,[`tuningJobs`],e)}return n}function bu(e,t){let n={},r=g(e,[`name`]);r!=null&&h(n,[`model`],r);let i=g(e,[`name`]);return i!=null&&h(n,[`endpoint`],i),n}function xu(e,t){let n={};if(g(e,[`gcsUri`])!==void 0)throw Error(`gcsUri parameter is not supported in Gemini API.`);if(g(e,[`vertexDatasetResource`])!==void 0)throw Error(`vertexDatasetResource parameter is not supported in Gemini API.`);let r=g(e,[`examples`]);if(r!=null){let e=r;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`examples`,`examples`],e)}return n}function Su(e,t,n){let r={},i=g(n,[`config`,`method`]);if(i===void 0&&(i=`SUPERVISED_FINE_TUNING`),i===`SUPERVISED_FINE_TUNING`){let n=g(e,[`gcsUri`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`trainingDatasetUri`],n)}else if(i===`PREFERENCE_TUNING`){let n=g(e,[`gcsUri`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`trainingDatasetUri`],n)}else if(i===`DISTILLATION`){let n=g(e,[`gcsUri`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`promptDatasetUri`],n)}let a=g(n,[`config`,`method`]);if(a===void 0&&(a=`SUPERVISED_FINE_TUNING`),a===`SUPERVISED_FINE_TUNING`){let n=g(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&h(t,[`supervisedTuningSpec`,`trainingDatasetUri`],n)}else if(a===`PREFERENCE_TUNING`){let n=g(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&h(t,[`preferenceOptimizationSpec`,`trainingDatasetUri`],n)}else if(a===`DISTILLATION`){let n=g(e,[`vertexDatasetResource`]);t!==void 0&&n!=null&&h(t,[`distillationSpec`,`promptDatasetUri`],n)}if(g(e,[`examples`])!==void 0)throw Error(`examples parameter is not supported in Vertex AI.`);return r}function Cu(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`name`]);i!=null&&h(n,[`name`],i);let a=g(e,[`state`]);a!=null&&h(n,[`state`],an(a));let o=g(e,[`createTime`]);o!=null&&h(n,[`createTime`],o);let s=g(e,[`tuningTask`,`startTime`]);s!=null&&h(n,[`startTime`],s);let c=g(e,[`tuningTask`,`completeTime`]);c!=null&&h(n,[`endTime`],c);let l=g(e,[`updateTime`]);l!=null&&h(n,[`updateTime`],l);let u=g(e,[`description`]);u!=null&&h(n,[`description`],u);let d=g(e,[`baseModel`]);d!=null&&h(n,[`baseModel`],d);let f=g(e,[`_self`]);return f!=null&&h(n,[`tunedModel`],bu(f)),n}function wu(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`name`]);i!=null&&h(n,[`name`],i);let a=g(e,[`state`]);a!=null&&h(n,[`state`],an(a));let o=g(e,[`createTime`]);o!=null&&h(n,[`createTime`],o);let s=g(e,[`startTime`]);s!=null&&h(n,[`startTime`],s);let c=g(e,[`endTime`]);c!=null&&h(n,[`endTime`],c);let l=g(e,[`updateTime`]);l!=null&&h(n,[`updateTime`],l);let u=g(e,[`error`]);u!=null&&h(n,[`error`],u);let d=g(e,[`description`]);d!=null&&h(n,[`description`],d);let f=g(e,[`baseModel`]);f!=null&&h(n,[`baseModel`],f);let p=g(e,[`tunedModel`]);p!=null&&h(n,[`tunedModel`],p);let m=g(e,[`preTunedModel`]);m!=null&&h(n,[`preTunedModel`],m);let _=g(e,[`supervisedTuningSpec`]);_!=null&&h(n,[`supervisedTuningSpec`],_);let v=g(e,[`preferenceOptimizationSpec`]);v!=null&&h(n,[`preferenceOptimizationSpec`],v);let y=g(e,[`distillationSpec`]);y!=null&&h(n,[`distillationSpec`],y);let b=g(e,[`tuningDataStats`]);b!=null&&h(n,[`tuningDataStats`],b);let x=g(e,[`encryptionSpec`]);x!=null&&h(n,[`encryptionSpec`],x);let S=g(e,[`partnerModelTuningSpec`]);S!=null&&h(n,[`partnerModelTuningSpec`],S);let C=g(e,[`customBaseModel`]);C!=null&&h(n,[`customBaseModel`],C);let w=g(e,[`evaluateDatasetRuns`]);if(w!=null){let e=w;Array.isArray(e)&&(e=e.map(e=>e)),h(n,[`evaluateDatasetRuns`],e)}let T=g(e,[`experiment`]);T!=null&&h(n,[`experiment`],T);let E=g(e,[`fullFineTuningSpec`]);E!=null&&h(n,[`fullFineTuningSpec`],E);let D=g(e,[`labels`]);D!=null&&h(n,[`labels`],D);let O=g(e,[`outputUri`]);O!=null&&h(n,[`outputUri`],O);let k=g(e,[`pipelineJob`]);k!=null&&h(n,[`pipelineJob`],k);let A=g(e,[`serviceAccount`]);A!=null&&h(n,[`serviceAccount`],A);let j=g(e,[`tunedModelDisplayName`]);j!=null&&h(n,[`tunedModelDisplayName`],j);let M=g(e,[`tuningJobState`]);M!=null&&h(n,[`tuningJobState`],M);let ee=g(e,[`veoTuningSpec`]);ee!=null&&h(n,[`veoTuningSpec`],ee);let te=g(e,[`distillationSamplingSpec`]);te!=null&&h(n,[`distillationSamplingSpec`],te);let ne=g(e,[`tuningJobMetadata`]);return ne!=null&&h(n,[`tuningJobMetadata`],ne),n}function Tu(e,t){let n={},r=g(e,[`sdkHttpResponse`]);r!=null&&h(n,[`sdkHttpResponse`],r);let i=g(e,[`name`]);i!=null&&h(n,[`name`],i);let a=g(e,[`metadata`]);a!=null&&h(n,[`metadata`],a);let o=g(e,[`done`]);o!=null&&h(n,[`done`],o);let s=g(e,[`error`]);return s!=null&&h(n,[`error`],s),n}function Eu(e,t){let n={},r=g(e,[`gcsUri`]);r!=null&&h(n,[`validationDatasetUri`],r);let i=g(e,[`vertexDatasetResource`]);return i!=null&&h(n,[`validationDatasetUri`],i),n}var Du=class extends p{constructor(e){super(),this.apiClient=e,this.list=async(e={})=>new U(H.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:Ae.JOB_STATE_QUEUED}}}}async getInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=pu(e);return n=m(`{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=>wu(e))}else{let i=fu(e);return n=m(`{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=>Cu(e))}}async listInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=_u(e);return n=m(`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=yu(e),n=new Ct;return Object.assign(n,t),n})}else{let i=gu(e);return n=m(`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=vu(e),n=new Ct;return Object.assign(n,t),n})}}async cancel(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=au(e);return n=m(`{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=su(e),n=new wt;return Object.assign(n,t),n})}else{let i=iu(e);return n=m(`{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=ou(e),n=new wt;return Object.assign(n,t),n})}}async tuneInternal(e){let t,n=``,r={};if(this.apiClient.isVertexAI()){let i=du(e,e);return n=m(`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=>wu(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=uu(e);return n=m(`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=>Tu(e))}}},Ou=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.`)}},ku=1024*1024*8,Au=3,ju=1e3,Mu=2,Nu=`x-goog-upload-status`;async function Pu(e,t,n,r){let i=await Iu(e,t,n,r),a=await i?.json();if(i?.headers?.[Nu]!==`final`)throw Error(`Failed to upload file: Upload status is not finalized.`);return a.file}async function Fu(e,t,n,r){let i=await Iu(e,t,n,r),a=await i?.json();if(i?.headers?.[Nu]!==`final`)throw Error(`Failed to upload file: Upload status is not finalized.`);let o=j(a),s=new Rt;return Object.assign(s,o),s}async function Iu(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 dt(new Response),l=`upload`;for(o=e.size;s<o;){let t=Math.min(ku,o-s),a=e.slice(s,s+t);s+t>=o&&(l+=`, finalize`);let u=0,d=ju;for(;u<Au;){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?.[Nu])break;u++,await Ru(d),d*=Mu}if(s+=t,c?.headers?.[Nu]!==`active`)break;if(o<=s)throw Error(`All content has been uploaded, but the upload status is not finalized.`)}return c}async function Lu(e){return{size:e.size,type:e.type}}function Ru(e){return new Promise(t=>setTimeout(t,e))}var zu=class{async upload(e,t,n,r){if(typeof e==`string`)throw Error(`File path is not supported in browser uploader.`);return await Pu(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 Fu(e,t,n,r)}async stat(e){if(typeof e==`string`)throw Error(`File path is not supported in browser uploader.`);return await Lu(e)}},Bu=class{create(e,t,n){return new Vu(e,t,n)}},Vu=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()}},Hu=`x-goog-api-key`,Uu=class{constructor(e){this.apiKey=e}async addAuthHeaders(e,t){if(e.get(Hu)===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(Hu,this.apiKey)}}},Wu=`gl-node/`,Gu=class{get interactions(){if(this._interactions!==void 0)return this._interactions;console.warn(`GoogleGenAI.interactions: Interactions usage is experimental and may change in future versions.`);let e=this.httpOptions;return e?.extraBody&&console.warn(`GoogleGenAI.interactions: Client level httpOptions.extraBody is not supported by the interactions client and will be ignored.`),this._interactions=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}).interactions,this._interactions}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=f(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 Uu(this.apiKey);this.apiClient=new Is({auth:n,apiVersion:this.apiVersion,apiKey:this.apiKey,vertexai:this.vertexai,httpOptions:this.httpOptions,userAgentExtra:Wu+`web`,uploader:new zu,downloader:new Ou}),this.models=new uc(this.apiClient),this.live=new $s(this.apiClient,n,new Bu),this.batches=new gr(this.apiClient),this.chats=new oi(this.models,this.apiClient),this.caches=new $r(this.apiClient),this.files=new yi(this.apiClient),this.operations=new dc(this.apiClient),this.authTokens=new kc(this.apiClient),this.tunings=new Du(this.apiClient),this.fileSearchStores=new Lc(this.apiClient)}};export{s as a,pe as i,fe as n,Gu as r,ye as t};