diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index fb7c4f18..89869b40 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -47,6 +47,37 @@ run all the examples to see how it behaves under different APIs. vertexai=True, project='your-project-id', location='us-central1' ) + +**(Optional) Using environment variables:** + +You can create a client by configuring the necessary environmental variables. +Configuration setup instructions depends on whether the user is using the ML Dev +Gemini API or the Vertex AI Gemini API. + +**ML Dev API:** Set `GOOGLE_API_KEY` as shown below: + +.. code:: bash + + export GOOGLE_API_KEY='your-api-key' + + +**Vertex AI Gemini API:** Set `GOOGLE_GENAI_USE_VERTEXAI`, `GOOGLE_CLOUD_PROJECT` +and `GOOGLE_CLOUD_LOCATION`, as shown below: + +.. code:: bash + + export GOOGLE_GENAI_USE_VERTEXAI=false + export GOOGLE_CLOUD_PROJECT='your-project-id' + export GOOGLE_CLOUD_LOCATION='us-central1' + + +```python +client = genai.Client() +``` + +API Selection +^^^^^^^^^^^^^ + To set the API version use ``http_options``. For example, to set the API version to ``v1`` for Vertex AI: .. code:: python @@ -103,7 +134,7 @@ python code. .. code:: python - file = client.files.upload(path='a11.txt') + file = client.files.upload(file='a11.txt') response = client.models.generate_content( model='gemini-2.0-flash-001', contents=['Could you summarize this file?', file] @@ -811,18 +842,27 @@ Upload .. code:: python - file1 = client.files.upload(path='2312.11805v3.pdf') - file2 = client.files.upload(path='2403.05530.pdf') + file1 = client.files.upload(file='2312.11805v3.pdf') + file2 = client.files.upload(file='2403.05530.pdf') print(file1) print(file2) +Get +--- + +.. code:: python + + file1 = client.files.upload(file='2312.11805v3.pdf') + file_info = client.files.get(name=file1.name) + + Delete ------ .. code:: python - file3 = client.files.upload(path='2312.11805v3.pdf') + file3 = client.files.upload(file='2312.11805v3.pdf') client.files.delete(name=file3.name) diff --git a/docs/_static/pygments.css b/docs/_static/pygments.css index 02b4b128..f71bfbfc 100644 --- a/docs/_static/pygments.css +++ b/docs/_static/pygments.css @@ -5,83 +5,83 @@ .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight { background: #f8f8f8; } -.highlight .c { color: #8f5902; font-style: italic } /* Comment */ -.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */ -.highlight .g { color: #000000 } /* Generic */ -.highlight .k { color: #204a87; font-weight: bold } /* Keyword */ -.highlight .l { color: #000000 } /* Literal */ -.highlight .n { color: #000000 } /* Name */ -.highlight .o { color: #ce5c00; font-weight: bold } /* Operator */ -.highlight .x { color: #000000 } /* Other */ -.highlight .p { color: #000000; font-weight: bold } /* Punctuation */ -.highlight .ch { color: #8f5902; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */ -.highlight .cpf { color: #8f5902; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */ -.highlight .gd { color: #a40000 } /* Generic.Deleted */ -.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */ -.highlight .ges { color: #000000; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ -.highlight .gr { color: #ef2929 } /* Generic.Error */ +.highlight .c { color: #8F5902; font-style: italic } /* Comment */ +.highlight .err { color: #A40000; border: 1px solid #EF2929 } /* Error */ +.highlight .g { color: #000 } /* Generic */ +.highlight .k { color: #204A87; font-weight: bold } /* Keyword */ +.highlight .l { color: #000 } /* Literal */ +.highlight .n { color: #000 } /* Name */ +.highlight .o { color: #CE5C00; font-weight: bold } /* Operator */ +.highlight .x { color: #000 } /* Other */ +.highlight .p { color: #000; font-weight: bold } /* Punctuation */ +.highlight .ch { color: #8F5902; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #8F5902; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #8F5902; font-style: italic } /* Comment.Preproc */ +.highlight .cpf { color: #8F5902; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #8F5902; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #8F5902; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A40000 } /* Generic.Deleted */ +.highlight .ge { color: #000; font-style: italic } /* Generic.Emph */ +.highlight .ges { color: #000; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ +.highlight .gr { color: #EF2929 } /* Generic.Error */ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #000000; font-style: italic } /* Generic.Output */ -.highlight .gp { color: #8f5902 } /* Generic.Prompt */ -.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */ +.highlight .go { color: #000; font-style: italic } /* Generic.Output */ +.highlight .gp { color: #8F5902 } /* Generic.Prompt */ +.highlight .gs { color: #000; font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */ -.highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */ -.highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */ -.highlight .ld { color: #000000 } /* Literal.Date */ -.highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */ -.highlight .s { color: #4e9a06 } /* Literal.String */ -.highlight .na { color: #c4a000 } /* Name.Attribute */ -.highlight .nb { color: #204a87 } /* Name.Builtin */ -.highlight .nc { color: #000000 } /* Name.Class */ -.highlight .no { color: #000000 } /* Name.Constant */ -.highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #ce5c00 } /* Name.Entity */ -.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */ -.highlight .nf { color: #000000 } /* Name.Function */ -.highlight .nl { color: #f57900 } /* Name.Label */ -.highlight .nn { color: #000000 } /* Name.Namespace */ -.highlight .nx { color: #000000 } /* Name.Other */ -.highlight .py { color: #000000 } /* Name.Property */ -.highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #000000 } /* Name.Variable */ -.highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */ -.highlight .pm { color: #000000; font-weight: bold } /* Punctuation.Marker */ -.highlight .w { color: #f8f8f8 } /* Text.Whitespace */ -.highlight .mb { color: #0000cf; font-weight: bold } /* Literal.Number.Bin */ -.highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */ -.highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */ -.highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */ -.highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */ -.highlight .sa { color: #4e9a06 } /* Literal.String.Affix */ -.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */ -.highlight .sc { color: #4e9a06 } /* Literal.String.Char */ -.highlight .dl { color: #4e9a06 } /* Literal.String.Delimiter */ -.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */ -.highlight .se { color: #4e9a06 } /* Literal.String.Escape */ -.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */ -.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */ -.highlight .sx { color: #4e9a06 } /* Literal.String.Other */ -.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */ -.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */ -.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */ -.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */ -.highlight .fm { color: #000000 } /* Name.Function.Magic */ -.highlight .vc { color: #000000 } /* Name.Variable.Class */ -.highlight .vg { color: #000000 } /* Name.Variable.Global */ -.highlight .vi { color: #000000 } /* Name.Variable.Instance */ -.highlight .vm { color: #000000 } /* Name.Variable.Magic */ -.highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */ +.highlight .gt { color: #A40000; font-weight: bold } /* Generic.Traceback */ +.highlight .kc { color: #204A87; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #204A87; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #204A87; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #204A87; font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { color: #204A87; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #204A87; font-weight: bold } /* Keyword.Type */ +.highlight .ld { color: #000 } /* Literal.Date */ +.highlight .m { color: #0000CF; font-weight: bold } /* Literal.Number */ +.highlight .s { color: #4E9A06 } /* Literal.String */ +.highlight .na { color: #C4A000 } /* Name.Attribute */ +.highlight .nb { color: #204A87 } /* Name.Builtin */ +.highlight .nc { color: #000 } /* Name.Class */ +.highlight .no { color: #000 } /* Name.Constant */ +.highlight .nd { color: #5C35CC; font-weight: bold } /* Name.Decorator */ +.highlight .ni { color: #CE5C00 } /* Name.Entity */ +.highlight .ne { color: #C00; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #000 } /* Name.Function */ +.highlight .nl { color: #F57900 } /* Name.Label */ +.highlight .nn { color: #000 } /* Name.Namespace */ +.highlight .nx { color: #000 } /* Name.Other */ +.highlight .py { color: #000 } /* Name.Property */ +.highlight .nt { color: #204A87; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #000 } /* Name.Variable */ +.highlight .ow { color: #204A87; font-weight: bold } /* Operator.Word */ +.highlight .pm { color: #000; font-weight: bold } /* Punctuation.Marker */ +.highlight .w { color: #F8F8F8 } /* Text.Whitespace */ +.highlight .mb { color: #0000CF; font-weight: bold } /* Literal.Number.Bin */ +.highlight .mf { color: #0000CF; font-weight: bold } /* Literal.Number.Float */ +.highlight .mh { color: #0000CF; font-weight: bold } /* Literal.Number.Hex */ +.highlight .mi { color: #0000CF; font-weight: bold } /* Literal.Number.Integer */ +.highlight .mo { color: #0000CF; font-weight: bold } /* Literal.Number.Oct */ +.highlight .sa { color: #4E9A06 } /* Literal.String.Affix */ +.highlight .sb { color: #4E9A06 } /* Literal.String.Backtick */ +.highlight .sc { color: #4E9A06 } /* Literal.String.Char */ +.highlight .dl { color: #4E9A06 } /* Literal.String.Delimiter */ +.highlight .sd { color: #8F5902; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #4E9A06 } /* Literal.String.Double */ +.highlight .se { color: #4E9A06 } /* Literal.String.Escape */ +.highlight .sh { color: #4E9A06 } /* Literal.String.Heredoc */ +.highlight .si { color: #4E9A06 } /* Literal.String.Interpol */ +.highlight .sx { color: #4E9A06 } /* Literal.String.Other */ +.highlight .sr { color: #4E9A06 } /* Literal.String.Regex */ +.highlight .s1 { color: #4E9A06 } /* Literal.String.Single */ +.highlight .ss { color: #4E9A06 } /* Literal.String.Symbol */ +.highlight .bp { color: #3465A4 } /* Name.Builtin.Pseudo */ +.highlight .fm { color: #000 } /* Name.Function.Magic */ +.highlight .vc { color: #000 } /* Name.Variable.Class */ +.highlight .vg { color: #000 } /* Name.Variable.Global */ +.highlight .vi { color: #000 } /* Name.Variable.Instance */ +.highlight .vm { color: #000 } /* Name.Variable.Magic */ +.highlight .il { color: #0000CF; font-weight: bold } /* Literal.Number.Integer.Long */ @media not print { body[data-theme="dark"] .highlight pre { line-height: 125%; } body[data-theme="dark"] .highlight td.linenos .normal { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; } @@ -89,85 +89,85 @@ body[data-theme="dark"] .highlight span.linenos { color: #aaaaaa; background-col body[data-theme="dark"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } body[data-theme="dark"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } body[data-theme="dark"] .highlight .hll { background-color: #404040 } -body[data-theme="dark"] .highlight { background: #202020; color: #d0d0d0 } -body[data-theme="dark"] .highlight .c { color: #ababab; font-style: italic } /* Comment */ -body[data-theme="dark"] .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ -body[data-theme="dark"] .highlight .esc { color: #d0d0d0 } /* Escape */ -body[data-theme="dark"] .highlight .g { color: #d0d0d0 } /* Generic */ -body[data-theme="dark"] .highlight .k { color: #6ebf26; font-weight: bold } /* Keyword */ -body[data-theme="dark"] .highlight .l { color: #d0d0d0 } /* Literal */ -body[data-theme="dark"] .highlight .n { color: #d0d0d0 } /* Name */ -body[data-theme="dark"] .highlight .o { color: #d0d0d0 } /* Operator */ -body[data-theme="dark"] .highlight .x { color: #d0d0d0 } /* Other */ -body[data-theme="dark"] .highlight .p { color: #d0d0d0 } /* Punctuation */ -body[data-theme="dark"] .highlight .ch { color: #ababab; font-style: italic } /* Comment.Hashbang */ -body[data-theme="dark"] .highlight .cm { color: #ababab; font-style: italic } /* Comment.Multiline */ -body[data-theme="dark"] .highlight .cp { color: #ff3a3a; font-weight: bold } /* Comment.Preproc */ -body[data-theme="dark"] .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */ -body[data-theme="dark"] .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */ -body[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ -body[data-theme="dark"] .highlight .gd { color: #ff3a3a } /* Generic.Deleted */ -body[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ -body[data-theme="dark"] .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ -body[data-theme="dark"] .highlight .gr { color: #ff3a3a } /* Generic.Error */ -body[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +body[data-theme="dark"] .highlight { background: #202020; color: #D0D0D0 } +body[data-theme="dark"] .highlight .c { color: #ABABAB; font-style: italic } /* Comment */ +body[data-theme="dark"] .highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */ +body[data-theme="dark"] .highlight .esc { color: #D0D0D0 } /* Escape */ +body[data-theme="dark"] .highlight .g { color: #D0D0D0 } /* Generic */ +body[data-theme="dark"] .highlight .k { color: #6EBF26; font-weight: bold } /* Keyword */ +body[data-theme="dark"] .highlight .l { color: #D0D0D0 } /* Literal */ +body[data-theme="dark"] .highlight .n { color: #D0D0D0 } /* Name */ +body[data-theme="dark"] .highlight .o { color: #D0D0D0 } /* Operator */ +body[data-theme="dark"] .highlight .x { color: #D0D0D0 } /* Other */ +body[data-theme="dark"] .highlight .p { color: #D0D0D0 } /* Punctuation */ +body[data-theme="dark"] .highlight .ch { color: #ABABAB; font-style: italic } /* Comment.Hashbang */ +body[data-theme="dark"] .highlight .cm { color: #ABABAB; font-style: italic } /* Comment.Multiline */ +body[data-theme="dark"] .highlight .cp { color: #FF3A3A; font-weight: bold } /* Comment.Preproc */ +body[data-theme="dark"] .highlight .cpf { color: #ABABAB; font-style: italic } /* Comment.PreprocFile */ +body[data-theme="dark"] .highlight .c1 { color: #ABABAB; font-style: italic } /* Comment.Single */ +body[data-theme="dark"] .highlight .cs { color: #E50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ +body[data-theme="dark"] .highlight .gd { color: #FF3A3A } /* Generic.Deleted */ +body[data-theme="dark"] .highlight .ge { color: #D0D0D0; font-style: italic } /* Generic.Emph */ +body[data-theme="dark"] .highlight .ges { color: #D0D0D0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ +body[data-theme="dark"] .highlight .gr { color: #FF3A3A } /* Generic.Error */ +body[data-theme="dark"] .highlight .gh { color: #FFF; font-weight: bold } /* Generic.Heading */ body[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */ -body[data-theme="dark"] .highlight .go { color: #cccccc } /* Generic.Output */ -body[data-theme="dark"] .highlight .gp { color: #aaaaaa } /* Generic.Prompt */ -body[data-theme="dark"] .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ -body[data-theme="dark"] .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ -body[data-theme="dark"] .highlight .gt { color: #ff3a3a } /* Generic.Traceback */ -body[data-theme="dark"] .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */ -body[data-theme="dark"] .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */ -body[data-theme="dark"] .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */ -body[data-theme="dark"] .highlight .kp { color: #6ebf26 } /* Keyword.Pseudo */ -body[data-theme="dark"] .highlight .kr { color: #6ebf26; font-weight: bold } /* Keyword.Reserved */ -body[data-theme="dark"] .highlight .kt { color: #6ebf26; font-weight: bold } /* Keyword.Type */ -body[data-theme="dark"] .highlight .ld { color: #d0d0d0 } /* Literal.Date */ -body[data-theme="dark"] .highlight .m { color: #51b2fd } /* Literal.Number */ -body[data-theme="dark"] .highlight .s { color: #ed9d13 } /* Literal.String */ -body[data-theme="dark"] .highlight .na { color: #bbbbbb } /* Name.Attribute */ -body[data-theme="dark"] .highlight .nb { color: #2fbccd } /* Name.Builtin */ -body[data-theme="dark"] .highlight .nc { color: #71adff; text-decoration: underline } /* Name.Class */ -body[data-theme="dark"] .highlight .no { color: #40ffff } /* Name.Constant */ -body[data-theme="dark"] .highlight .nd { color: #ffa500 } /* Name.Decorator */ -body[data-theme="dark"] .highlight .ni { color: #d0d0d0 } /* Name.Entity */ -body[data-theme="dark"] .highlight .ne { color: #bbbbbb } /* Name.Exception */ -body[data-theme="dark"] .highlight .nf { color: #71adff } /* Name.Function */ -body[data-theme="dark"] .highlight .nl { color: #d0d0d0 } /* Name.Label */ -body[data-theme="dark"] .highlight .nn { color: #71adff; text-decoration: underline } /* Name.Namespace */ -body[data-theme="dark"] .highlight .nx { color: #d0d0d0 } /* Name.Other */ -body[data-theme="dark"] .highlight .py { color: #d0d0d0 } /* Name.Property */ -body[data-theme="dark"] .highlight .nt { color: #6ebf26; font-weight: bold } /* Name.Tag */ -body[data-theme="dark"] .highlight .nv { color: #40ffff } /* Name.Variable */ -body[data-theme="dark"] .highlight .ow { color: #6ebf26; font-weight: bold } /* Operator.Word */ -body[data-theme="dark"] .highlight .pm { color: #d0d0d0 } /* Punctuation.Marker */ -body[data-theme="dark"] .highlight .w { color: #666666 } /* Text.Whitespace */ -body[data-theme="dark"] .highlight .mb { color: #51b2fd } /* Literal.Number.Bin */ -body[data-theme="dark"] .highlight .mf { color: #51b2fd } /* Literal.Number.Float */ -body[data-theme="dark"] .highlight .mh { color: #51b2fd } /* Literal.Number.Hex */ -body[data-theme="dark"] .highlight .mi { color: #51b2fd } /* Literal.Number.Integer */ -body[data-theme="dark"] .highlight .mo { color: #51b2fd } /* Literal.Number.Oct */ -body[data-theme="dark"] .highlight .sa { color: #ed9d13 } /* Literal.String.Affix */ -body[data-theme="dark"] .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */ -body[data-theme="dark"] .highlight .sc { color: #ed9d13 } /* Literal.String.Char */ -body[data-theme="dark"] .highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */ -body[data-theme="dark"] .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */ -body[data-theme="dark"] .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */ -body[data-theme="dark"] .highlight .se { color: #ed9d13 } /* Literal.String.Escape */ -body[data-theme="dark"] .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */ -body[data-theme="dark"] .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */ -body[data-theme="dark"] .highlight .sx { color: #ffa500 } /* Literal.String.Other */ -body[data-theme="dark"] .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */ -body[data-theme="dark"] .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */ -body[data-theme="dark"] .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */ -body[data-theme="dark"] .highlight .bp { color: #2fbccd } /* Name.Builtin.Pseudo */ -body[data-theme="dark"] .highlight .fm { color: #71adff } /* Name.Function.Magic */ -body[data-theme="dark"] .highlight .vc { color: #40ffff } /* Name.Variable.Class */ -body[data-theme="dark"] .highlight .vg { color: #40ffff } /* Name.Variable.Global */ -body[data-theme="dark"] .highlight .vi { color: #40ffff } /* Name.Variable.Instance */ -body[data-theme="dark"] .highlight .vm { color: #40ffff } /* Name.Variable.Magic */ -body[data-theme="dark"] .highlight .il { color: #51b2fd } /* Literal.Number.Integer.Long */ +body[data-theme="dark"] .highlight .go { color: #CCC } /* Generic.Output */ +body[data-theme="dark"] .highlight .gp { color: #AAA } /* Generic.Prompt */ +body[data-theme="dark"] .highlight .gs { color: #D0D0D0; font-weight: bold } /* Generic.Strong */ +body[data-theme="dark"] .highlight .gu { color: #FFF; text-decoration: underline } /* Generic.Subheading */ +body[data-theme="dark"] .highlight .gt { color: #FF3A3A } /* Generic.Traceback */ +body[data-theme="dark"] .highlight .kc { color: #6EBF26; font-weight: bold } /* Keyword.Constant */ +body[data-theme="dark"] .highlight .kd { color: #6EBF26; font-weight: bold } /* Keyword.Declaration */ +body[data-theme="dark"] .highlight .kn { color: #6EBF26; font-weight: bold } /* Keyword.Namespace */ +body[data-theme="dark"] .highlight .kp { color: #6EBF26 } /* Keyword.Pseudo */ +body[data-theme="dark"] .highlight .kr { color: #6EBF26; font-weight: bold } /* Keyword.Reserved */ +body[data-theme="dark"] .highlight .kt { color: #6EBF26; font-weight: bold } /* Keyword.Type */ +body[data-theme="dark"] .highlight .ld { color: #D0D0D0 } /* Literal.Date */ +body[data-theme="dark"] .highlight .m { color: #51B2FD } /* Literal.Number */ +body[data-theme="dark"] .highlight .s { color: #ED9D13 } /* Literal.String */ +body[data-theme="dark"] .highlight .na { color: #BBB } /* Name.Attribute */ +body[data-theme="dark"] .highlight .nb { color: #2FBCCD } /* Name.Builtin */ +body[data-theme="dark"] .highlight .nc { color: #71ADFF; text-decoration: underline } /* Name.Class */ +body[data-theme="dark"] .highlight .no { color: #40FFFF } /* Name.Constant */ +body[data-theme="dark"] .highlight .nd { color: #FFA500 } /* Name.Decorator */ +body[data-theme="dark"] .highlight .ni { color: #D0D0D0 } /* Name.Entity */ +body[data-theme="dark"] .highlight .ne { color: #BBB } /* Name.Exception */ +body[data-theme="dark"] .highlight .nf { color: #71ADFF } /* Name.Function */ +body[data-theme="dark"] .highlight .nl { color: #D0D0D0 } /* Name.Label */ +body[data-theme="dark"] .highlight .nn { color: #71ADFF; text-decoration: underline } /* Name.Namespace */ +body[data-theme="dark"] .highlight .nx { color: #D0D0D0 } /* Name.Other */ +body[data-theme="dark"] .highlight .py { color: #D0D0D0 } /* Name.Property */ +body[data-theme="dark"] .highlight .nt { color: #6EBF26; font-weight: bold } /* Name.Tag */ +body[data-theme="dark"] .highlight .nv { color: #40FFFF } /* Name.Variable */ +body[data-theme="dark"] .highlight .ow { color: #6EBF26; font-weight: bold } /* Operator.Word */ +body[data-theme="dark"] .highlight .pm { color: #D0D0D0 } /* Punctuation.Marker */ +body[data-theme="dark"] .highlight .w { color: #666 } /* Text.Whitespace */ +body[data-theme="dark"] .highlight .mb { color: #51B2FD } /* Literal.Number.Bin */ +body[data-theme="dark"] .highlight .mf { color: #51B2FD } /* Literal.Number.Float */ +body[data-theme="dark"] .highlight .mh { color: #51B2FD } /* Literal.Number.Hex */ +body[data-theme="dark"] .highlight .mi { color: #51B2FD } /* Literal.Number.Integer */ +body[data-theme="dark"] .highlight .mo { color: #51B2FD } /* Literal.Number.Oct */ +body[data-theme="dark"] .highlight .sa { color: #ED9D13 } /* Literal.String.Affix */ +body[data-theme="dark"] .highlight .sb { color: #ED9D13 } /* Literal.String.Backtick */ +body[data-theme="dark"] .highlight .sc { color: #ED9D13 } /* Literal.String.Char */ +body[data-theme="dark"] .highlight .dl { color: #ED9D13 } /* Literal.String.Delimiter */ +body[data-theme="dark"] .highlight .sd { color: #ED9D13 } /* Literal.String.Doc */ +body[data-theme="dark"] .highlight .s2 { color: #ED9D13 } /* Literal.String.Double */ +body[data-theme="dark"] .highlight .se { color: #ED9D13 } /* Literal.String.Escape */ +body[data-theme="dark"] .highlight .sh { color: #ED9D13 } /* Literal.String.Heredoc */ +body[data-theme="dark"] .highlight .si { color: #ED9D13 } /* Literal.String.Interpol */ +body[data-theme="dark"] .highlight .sx { color: #FFA500 } /* Literal.String.Other */ +body[data-theme="dark"] .highlight .sr { color: #ED9D13 } /* Literal.String.Regex */ +body[data-theme="dark"] .highlight .s1 { color: #ED9D13 } /* Literal.String.Single */ +body[data-theme="dark"] .highlight .ss { color: #ED9D13 } /* Literal.String.Symbol */ +body[data-theme="dark"] .highlight .bp { color: #2FBCCD } /* Name.Builtin.Pseudo */ +body[data-theme="dark"] .highlight .fm { color: #71ADFF } /* Name.Function.Magic */ +body[data-theme="dark"] .highlight .vc { color: #40FFFF } /* Name.Variable.Class */ +body[data-theme="dark"] .highlight .vg { color: #40FFFF } /* Name.Variable.Global */ +body[data-theme="dark"] .highlight .vi { color: #40FFFF } /* Name.Variable.Instance */ +body[data-theme="dark"] .highlight .vm { color: #40FFFF } /* Name.Variable.Magic */ +body[data-theme="dark"] .highlight .il { color: #51B2FD } /* Literal.Number.Integer.Long */ @media (prefers-color-scheme: dark) { body:not([data-theme="light"]) .highlight pre { line-height: 125%; } body:not([data-theme="light"]) .highlight td.linenos .normal { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; } @@ -175,84 +175,84 @@ body:not([data-theme="light"]) .highlight span.linenos { color: #aaaaaa; backgro body:not([data-theme="light"]) .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } body:not([data-theme="light"]) .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } body:not([data-theme="light"]) .highlight .hll { background-color: #404040 } -body:not([data-theme="light"]) .highlight { background: #202020; color: #d0d0d0 } -body:not([data-theme="light"]) .highlight .c { color: #ababab; font-style: italic } /* Comment */ -body:not([data-theme="light"]) .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ -body:not([data-theme="light"]) .highlight .esc { color: #d0d0d0 } /* Escape */ -body:not([data-theme="light"]) .highlight .g { color: #d0d0d0 } /* Generic */ -body:not([data-theme="light"]) .highlight .k { color: #6ebf26; font-weight: bold } /* Keyword */ -body:not([data-theme="light"]) .highlight .l { color: #d0d0d0 } /* Literal */ -body:not([data-theme="light"]) .highlight .n { color: #d0d0d0 } /* Name */ -body:not([data-theme="light"]) .highlight .o { color: #d0d0d0 } /* Operator */ -body:not([data-theme="light"]) .highlight .x { color: #d0d0d0 } /* Other */ -body:not([data-theme="light"]) .highlight .p { color: #d0d0d0 } /* Punctuation */ -body:not([data-theme="light"]) .highlight .ch { color: #ababab; font-style: italic } /* Comment.Hashbang */ -body:not([data-theme="light"]) .highlight .cm { color: #ababab; font-style: italic } /* Comment.Multiline */ -body:not([data-theme="light"]) .highlight .cp { color: #ff3a3a; font-weight: bold } /* Comment.Preproc */ -body:not([data-theme="light"]) .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */ -body:not([data-theme="light"]) .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */ -body:not([data-theme="light"]) .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ -body:not([data-theme="light"]) .highlight .gd { color: #ff3a3a } /* Generic.Deleted */ -body:not([data-theme="light"]) .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ -body:not([data-theme="light"]) .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ -body:not([data-theme="light"]) .highlight .gr { color: #ff3a3a } /* Generic.Error */ -body:not([data-theme="light"]) .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +body:not([data-theme="light"]) .highlight { background: #202020; color: #D0D0D0 } +body:not([data-theme="light"]) .highlight .c { color: #ABABAB; font-style: italic } /* Comment */ +body:not([data-theme="light"]) .highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */ +body:not([data-theme="light"]) .highlight .esc { color: #D0D0D0 } /* Escape */ +body:not([data-theme="light"]) .highlight .g { color: #D0D0D0 } /* Generic */ +body:not([data-theme="light"]) .highlight .k { color: #6EBF26; font-weight: bold } /* Keyword */ +body:not([data-theme="light"]) .highlight .l { color: #D0D0D0 } /* Literal */ +body:not([data-theme="light"]) .highlight .n { color: #D0D0D0 } /* Name */ +body:not([data-theme="light"]) .highlight .o { color: #D0D0D0 } /* Operator */ +body:not([data-theme="light"]) .highlight .x { color: #D0D0D0 } /* Other */ +body:not([data-theme="light"]) .highlight .p { color: #D0D0D0 } /* Punctuation */ +body:not([data-theme="light"]) .highlight .ch { color: #ABABAB; font-style: italic } /* Comment.Hashbang */ +body:not([data-theme="light"]) .highlight .cm { color: #ABABAB; font-style: italic } /* Comment.Multiline */ +body:not([data-theme="light"]) .highlight .cp { color: #FF3A3A; font-weight: bold } /* Comment.Preproc */ +body:not([data-theme="light"]) .highlight .cpf { color: #ABABAB; font-style: italic } /* Comment.PreprocFile */ +body:not([data-theme="light"]) .highlight .c1 { color: #ABABAB; font-style: italic } /* Comment.Single */ +body:not([data-theme="light"]) .highlight .cs { color: #E50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ +body:not([data-theme="light"]) .highlight .gd { color: #FF3A3A } /* Generic.Deleted */ +body:not([data-theme="light"]) .highlight .ge { color: #D0D0D0; font-style: italic } /* Generic.Emph */ +body:not([data-theme="light"]) .highlight .ges { color: #D0D0D0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */ +body:not([data-theme="light"]) .highlight .gr { color: #FF3A3A } /* Generic.Error */ +body:not([data-theme="light"]) .highlight .gh { color: #FFF; font-weight: bold } /* Generic.Heading */ body:not([data-theme="light"]) .highlight .gi { color: #589819 } /* Generic.Inserted */ -body:not([data-theme="light"]) .highlight .go { color: #cccccc } /* Generic.Output */ -body:not([data-theme="light"]) .highlight .gp { color: #aaaaaa } /* Generic.Prompt */ -body:not([data-theme="light"]) .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ -body:not([data-theme="light"]) .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ -body:not([data-theme="light"]) .highlight .gt { color: #ff3a3a } /* Generic.Traceback */ -body:not([data-theme="light"]) .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */ -body:not([data-theme="light"]) .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */ -body:not([data-theme="light"]) .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */ -body:not([data-theme="light"]) .highlight .kp { color: #6ebf26 } /* Keyword.Pseudo */ -body:not([data-theme="light"]) .highlight .kr { color: #6ebf26; font-weight: bold } /* Keyword.Reserved */ -body:not([data-theme="light"]) .highlight .kt { color: #6ebf26; font-weight: bold } /* Keyword.Type */ -body:not([data-theme="light"]) .highlight .ld { color: #d0d0d0 } /* Literal.Date */ -body:not([data-theme="light"]) .highlight .m { color: #51b2fd } /* Literal.Number */ -body:not([data-theme="light"]) .highlight .s { color: #ed9d13 } /* Literal.String */ -body:not([data-theme="light"]) .highlight .na { color: #bbbbbb } /* Name.Attribute */ -body:not([data-theme="light"]) .highlight .nb { color: #2fbccd } /* Name.Builtin */ -body:not([data-theme="light"]) .highlight .nc { color: #71adff; text-decoration: underline } /* Name.Class */ -body:not([data-theme="light"]) .highlight .no { color: #40ffff } /* Name.Constant */ -body:not([data-theme="light"]) .highlight .nd { color: #ffa500 } /* Name.Decorator */ -body:not([data-theme="light"]) .highlight .ni { color: #d0d0d0 } /* Name.Entity */ -body:not([data-theme="light"]) .highlight .ne { color: #bbbbbb } /* Name.Exception */ -body:not([data-theme="light"]) .highlight .nf { color: #71adff } /* Name.Function */ -body:not([data-theme="light"]) .highlight .nl { color: #d0d0d0 } /* Name.Label */ -body:not([data-theme="light"]) .highlight .nn { color: #71adff; text-decoration: underline } /* Name.Namespace */ -body:not([data-theme="light"]) .highlight .nx { color: #d0d0d0 } /* Name.Other */ -body:not([data-theme="light"]) .highlight .py { color: #d0d0d0 } /* Name.Property */ -body:not([data-theme="light"]) .highlight .nt { color: #6ebf26; font-weight: bold } /* Name.Tag */ -body:not([data-theme="light"]) .highlight .nv { color: #40ffff } /* Name.Variable */ -body:not([data-theme="light"]) .highlight .ow { color: #6ebf26; font-weight: bold } /* Operator.Word */ -body:not([data-theme="light"]) .highlight .pm { color: #d0d0d0 } /* Punctuation.Marker */ -body:not([data-theme="light"]) .highlight .w { color: #666666 } /* Text.Whitespace */ -body:not([data-theme="light"]) .highlight .mb { color: #51b2fd } /* Literal.Number.Bin */ -body:not([data-theme="light"]) .highlight .mf { color: #51b2fd } /* Literal.Number.Float */ -body:not([data-theme="light"]) .highlight .mh { color: #51b2fd } /* Literal.Number.Hex */ -body:not([data-theme="light"]) .highlight .mi { color: #51b2fd } /* Literal.Number.Integer */ -body:not([data-theme="light"]) .highlight .mo { color: #51b2fd } /* Literal.Number.Oct */ -body:not([data-theme="light"]) .highlight .sa { color: #ed9d13 } /* Literal.String.Affix */ -body:not([data-theme="light"]) .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */ -body:not([data-theme="light"]) .highlight .sc { color: #ed9d13 } /* Literal.String.Char */ -body:not([data-theme="light"]) .highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */ -body:not([data-theme="light"]) .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */ -body:not([data-theme="light"]) .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */ -body:not([data-theme="light"]) .highlight .se { color: #ed9d13 } /* Literal.String.Escape */ -body:not([data-theme="light"]) .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */ -body:not([data-theme="light"]) .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */ -body:not([data-theme="light"]) .highlight .sx { color: #ffa500 } /* Literal.String.Other */ -body:not([data-theme="light"]) .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */ -body:not([data-theme="light"]) .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */ -body:not([data-theme="light"]) .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */ -body:not([data-theme="light"]) .highlight .bp { color: #2fbccd } /* Name.Builtin.Pseudo */ -body:not([data-theme="light"]) .highlight .fm { color: #71adff } /* Name.Function.Magic */ -body:not([data-theme="light"]) .highlight .vc { color: #40ffff } /* Name.Variable.Class */ -body:not([data-theme="light"]) .highlight .vg { color: #40ffff } /* Name.Variable.Global */ -body:not([data-theme="light"]) .highlight .vi { color: #40ffff } /* Name.Variable.Instance */ -body:not([data-theme="light"]) .highlight .vm { color: #40ffff } /* Name.Variable.Magic */ -body:not([data-theme="light"]) .highlight .il { color: #51b2fd } /* Literal.Number.Integer.Long */ +body:not([data-theme="light"]) .highlight .go { color: #CCC } /* Generic.Output */ +body:not([data-theme="light"]) .highlight .gp { color: #AAA } /* Generic.Prompt */ +body:not([data-theme="light"]) .highlight .gs { color: #D0D0D0; font-weight: bold } /* Generic.Strong */ +body:not([data-theme="light"]) .highlight .gu { color: #FFF; text-decoration: underline } /* Generic.Subheading */ +body:not([data-theme="light"]) .highlight .gt { color: #FF3A3A } /* Generic.Traceback */ +body:not([data-theme="light"]) .highlight .kc { color: #6EBF26; font-weight: bold } /* Keyword.Constant */ +body:not([data-theme="light"]) .highlight .kd { color: #6EBF26; font-weight: bold } /* Keyword.Declaration */ +body:not([data-theme="light"]) .highlight .kn { color: #6EBF26; font-weight: bold } /* Keyword.Namespace */ +body:not([data-theme="light"]) .highlight .kp { color: #6EBF26 } /* Keyword.Pseudo */ +body:not([data-theme="light"]) .highlight .kr { color: #6EBF26; font-weight: bold } /* Keyword.Reserved */ +body:not([data-theme="light"]) .highlight .kt { color: #6EBF26; font-weight: bold } /* Keyword.Type */ +body:not([data-theme="light"]) .highlight .ld { color: #D0D0D0 } /* Literal.Date */ +body:not([data-theme="light"]) .highlight .m { color: #51B2FD } /* Literal.Number */ +body:not([data-theme="light"]) .highlight .s { color: #ED9D13 } /* Literal.String */ +body:not([data-theme="light"]) .highlight .na { color: #BBB } /* Name.Attribute */ +body:not([data-theme="light"]) .highlight .nb { color: #2FBCCD } /* Name.Builtin */ +body:not([data-theme="light"]) .highlight .nc { color: #71ADFF; text-decoration: underline } /* Name.Class */ +body:not([data-theme="light"]) .highlight .no { color: #40FFFF } /* Name.Constant */ +body:not([data-theme="light"]) .highlight .nd { color: #FFA500 } /* Name.Decorator */ +body:not([data-theme="light"]) .highlight .ni { color: #D0D0D0 } /* Name.Entity */ +body:not([data-theme="light"]) .highlight .ne { color: #BBB } /* Name.Exception */ +body:not([data-theme="light"]) .highlight .nf { color: #71ADFF } /* Name.Function */ +body:not([data-theme="light"]) .highlight .nl { color: #D0D0D0 } /* Name.Label */ +body:not([data-theme="light"]) .highlight .nn { color: #71ADFF; text-decoration: underline } /* Name.Namespace */ +body:not([data-theme="light"]) .highlight .nx { color: #D0D0D0 } /* Name.Other */ +body:not([data-theme="light"]) .highlight .py { color: #D0D0D0 } /* Name.Property */ +body:not([data-theme="light"]) .highlight .nt { color: #6EBF26; font-weight: bold } /* Name.Tag */ +body:not([data-theme="light"]) .highlight .nv { color: #40FFFF } /* Name.Variable */ +body:not([data-theme="light"]) .highlight .ow { color: #6EBF26; font-weight: bold } /* Operator.Word */ +body:not([data-theme="light"]) .highlight .pm { color: #D0D0D0 } /* Punctuation.Marker */ +body:not([data-theme="light"]) .highlight .w { color: #666 } /* Text.Whitespace */ +body:not([data-theme="light"]) .highlight .mb { color: #51B2FD } /* Literal.Number.Bin */ +body:not([data-theme="light"]) .highlight .mf { color: #51B2FD } /* Literal.Number.Float */ +body:not([data-theme="light"]) .highlight .mh { color: #51B2FD } /* Literal.Number.Hex */ +body:not([data-theme="light"]) .highlight .mi { color: #51B2FD } /* Literal.Number.Integer */ +body:not([data-theme="light"]) .highlight .mo { color: #51B2FD } /* Literal.Number.Oct */ +body:not([data-theme="light"]) .highlight .sa { color: #ED9D13 } /* Literal.String.Affix */ +body:not([data-theme="light"]) .highlight .sb { color: #ED9D13 } /* Literal.String.Backtick */ +body:not([data-theme="light"]) .highlight .sc { color: #ED9D13 } /* Literal.String.Char */ +body:not([data-theme="light"]) .highlight .dl { color: #ED9D13 } /* Literal.String.Delimiter */ +body:not([data-theme="light"]) .highlight .sd { color: #ED9D13 } /* Literal.String.Doc */ +body:not([data-theme="light"]) .highlight .s2 { color: #ED9D13 } /* Literal.String.Double */ +body:not([data-theme="light"]) .highlight .se { color: #ED9D13 } /* Literal.String.Escape */ +body:not([data-theme="light"]) .highlight .sh { color: #ED9D13 } /* Literal.String.Heredoc */ +body:not([data-theme="light"]) .highlight .si { color: #ED9D13 } /* Literal.String.Interpol */ +body:not([data-theme="light"]) .highlight .sx { color: #FFA500 } /* Literal.String.Other */ +body:not([data-theme="light"]) .highlight .sr { color: #ED9D13 } /* Literal.String.Regex */ +body:not([data-theme="light"]) .highlight .s1 { color: #ED9D13 } /* Literal.String.Single */ +body:not([data-theme="light"]) .highlight .ss { color: #ED9D13 } /* Literal.String.Symbol */ +body:not([data-theme="light"]) .highlight .bp { color: #2FBCCD } /* Name.Builtin.Pseudo */ +body:not([data-theme="light"]) .highlight .fm { color: #71ADFF } /* Name.Function.Magic */ +body:not([data-theme="light"]) .highlight .vc { color: #40FFFF } /* Name.Variable.Class */ +body:not([data-theme="light"]) .highlight .vg { color: #40FFFF } /* Name.Variable.Global */ +body:not([data-theme="light"]) .highlight .vi { color: #40FFFF } /* Name.Variable.Instance */ +body:not([data-theme="light"]) .highlight .vm { color: #40FFFF } /* Name.Variable.Magic */ +body:not([data-theme="light"]) .highlight .il { color: #51B2FD } /* Literal.Number.Integer.Long */ } } \ No newline at end of file diff --git a/docs/genai.html b/docs/genai.html index a274339b..ea058377 100644 --- a/docs/genai.html +++ b/docs/genai.html @@ -7,7 +7,7 @@
from google import genai
+from google import genai
client = genai.Client(api_key='my-api-key')
Usage for the Vertex AI API:
-from google import genai
+from google import genai
client = genai.Client(
vertexai=True, project='my-project-id', location='us-central1'
@@ -416,8 +425,7 @@ SubmodulesDebugConfig) – Config settings that control network behavior
of the client. This is typically used when running test code.
http_options (Union[HttpOptions, HttpOptionsDict]) – Http options to use
-for the client. The field deprecated_response_payload should not be set
-in http_options.
+for the client.
@@ -1563,7 +1571,7 @@ Submodulesclient = genai.Client(api_key=API_KEY)
config = {'response_modalities': ['AUDIO']}
-async def audio_stream():
+async def audio_stream():
stream = read_audio()
for data in stream:
yield data
@@ -1671,7 +1679,7 @@ Submodulesfrom google.genai.types import RawReferenceImage, MaskReferenceImage
+from google.genai.types import RawReferenceImage, MaskReferenceImage
raw_ref_image = RawReferenceImage(
reference_id=1,
@@ -1738,8 +1746,8 @@ Submodulesfrom google.genai import types
-from google import genai
+from google.genai import types
+from google import genai
client = genai.Client(
vertexai=True, project='my-project-id', location='us-central1'
@@ -1796,8 +1804,8 @@ Submodulesfrom google.genai import types
-from google import genai
+from google.genai import types
+from google import genai
client = genai.Client(
vertexai=True, project='my-project-id', location='us-central1'
@@ -1874,8 +1882,8 @@ Submodules
async list(*, config=None)¶
Makes an API request to list the available models.
-If query_base is set to True in the config, the API will return all
-available base models. If set to False or not set (default), it will return
+
If query_base is set to True in the config or not set (default), the
+API will return all available base models. If set to False, it will return
all tuned models.
- Return type:
@@ -1927,7 +1935,7 @@ Submodulesfrom google.genai.types import Image
+from google.genai.types import Image
IMAGE_FILE_PATH="my-image.png"
response = await client.aio.models.upscale_image(
@@ -2034,7 +2042,7 @@ Submodulesfrom google.genai.types import RawReferenceImage, MaskReferenceImage
+from google.genai.types import RawReferenceImage, MaskReferenceImage
raw_ref_image = RawReferenceImage(
reference_id=1,
@@ -2124,8 +2132,8 @@ Submodulesfrom google.genai import types
-from google import genai
+from google.genai import types
+from google import genai
client = genai.Client(
vertexai=True, project='my-project-id', location='us-central1'
@@ -2186,8 +2194,8 @@ Submodulesfrom google.genai import types
-from google import genai
+from google.genai import types
+from google import genai
client = genai.Client(
vertexai=True, project='my-project-id', location='us-central1'
@@ -2315,7 +2323,7 @@ Submodulesfrom google.genai.types import Image
+from google.genai.types import Image
IMAGE_FILE_PATH="my-image.png"
response=client.models.upscale_image(
@@ -7766,7 +7774,7 @@ Submodules }
],
"default": null,
- "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: 'Welcome Image'",
+ "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.",
"title": "Expirationtime"
},
"updateTime": {
@@ -10033,7 +10041,7 @@ Submodules }
],
"default": null,
- "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: 'Welcome Image'",
+ "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.",
"title": "Expirationtime"
},
"updateTime": {
@@ -17097,7 +17105,7 @@ Submodules }
],
"default": null,
- "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: 'Welcome Image'",
+ "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.",
"title": "Expirationtime"
},
"updateTime": {
@@ -17327,7 +17335,7 @@ Submodules
-
field expiration_time:
Optional
[datetime
] = None (alias 'expirationTime')¶
-Optional. The human-readable display name for the File. The display name must be no more than 512 characters in length, including spaces. Example: ‘Welcome Image’
+Output only. The timestamp of when the File will be deleted. Only set if the File is scheduled to expire.
@@ -17510,12 +17518,7 @@ Submodules
-
expiration_time:
Optional
[datetime
]¶
-‘Welcome Image’
-
-- Type:
-Optional. The human-readable display name for the File. The display name must be no more than 512 characters in length, including spaces. Example
-
-
+Output only. The timestamp of when the File will be deleted. Only set if the File is scheduled to expire.
@@ -19351,7 +19354,7 @@ Submodules }
],
"default": null,
- "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: 'Welcome Image'",
+ "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.",
"title": "Expirationtime"
},
"updateTime": {
@@ -29523,7 +29526,7 @@ Submodules }
],
"default": null,
- "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: 'Welcome Image'",
+ "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.",
"title": "Expirationtime"
},
"updateTime": {
diff --git a/docs/genindex.html b/docs/genindex.html
index 43064f99..169bc63f 100644
--- a/docs/genindex.html
+++ b/docs/genindex.html
@@ -5,7 +5,7 @@
Index - Google Gen AI SDK documentation
-
+
diff --git a/docs/index.html b/docs/index.html
index d3af5ca5..aa1bad90 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -7,7 +7,7 @@
Google Gen AI SDK documentation
-
+
@@ -281,8 +281,8 @@ Installation
Imports¶
-from google import genai
-from google.genai import types
+from google import genai
+from google.genai import types
@@ -301,6 +301,26 @@ Create a client)
+(Optional) Using environment variables:
+You can create a client by configuring the necessary environmental variables.
+Configuration setup instructions depends on whether the user is using the ML Dev
+Gemini API or the Vertex AI Gemini API.
+ML Dev API: Set GOOGLE_API_KEY as shown below:
+export GOOGLE_API_KEY='your-api-key'
+
+
+Vertex AI Gemini API: Set GOOGLE_GENAI_USE_VERTEXAI, GOOGLE_CLOUD_PROJECT
+and GOOGLE_CLOUD_LOCATION, as shown below:
+export GOOGLE_GENAI_USE_VERTEXAI=false
+export GOOGLE_CLOUD_PROJECT='your-project-id'
+export GOOGLE_CLOUD_LOCATION='us-central1'
+
+
+`python
+client = genai.Client()
+`
+
+API Selection¶
To set the API version use http_options
. For example, to set the API version to v1
for Vertex AI:
client = genai.Client(
vertexai=True, project='your-project-id', location='us-central1',
@@ -315,6 +335,7 @@ Create a client
Types¶
Parameter types can be specified as either dictionaries(TypedDict
) or Pydantic Models.
@@ -343,7 +364,7 @@
with uploaded file (Gemini API only)file = client.files.upload(path='a11.txt')
+file = client.files.upload(file='a11.txt')
response = client.models.generate_content(
model='gemini-2.0-flash-001',
contents=['Could you summarize this file?', file]
@@ -465,7 +486,7 @@ Safety Settings¶
You can pass a Python function directly and it will be automatically
called and responded.
-def get_current_weather(location: str) -> str:
+def get_current_weather(location: str) -> str:
"""Returns the current weather.
Args:
@@ -568,7 +589,7 @@ Function Callingdef get_current_weather(location: str) -> str:
+def get_current_weather(location: str) -> str:
"""Returns the current weather.
Args:
@@ -594,7 +615,7 @@ Function Callingx number of automatic function call turns, you can
configure the maximum remote calls to be x + 1
.
Assuming you prefer 1
turn for automatic function calling:
-def get_current_weather(location: str) -> str:
+def get_current_weather(location: str) -> str:
"""Returns the current weather.
Args:
@@ -621,10 +642,10 @@ Function Calling
JSON Response Schema¶
Schemas can be provided as Pydantic Models.
-from pydantic import BaseModel
+from pydantic import BaseModel
-class CountryInfo(BaseModel):
+class CountryInfo(BaseModel):
name: str
population: int
capital: str
@@ -681,9 +702,9 @@ JSON Response SchemaEnum Response Schema¶
You can set response_mime_type to ‘text/x.enum’ to return one of those enum
values as the response.
-from enum import Enum
+from enum import Enum
-class InstrumentEnum(Enum):
+class InstrumentEnum(Enum):
PERCUSSION = 'Percussion'
STRING = 'String'
WOODWIND = 'Woodwind'
@@ -703,7 +724,7 @@ Enum Response Schema
You can also set response_mime_type to ‘application/json’, the response will be
identical but in quotes.
-class InstrumentEnum(Enum):
+class InstrumentEnum(Enum):
PERCUSSION = 'Percussion'
STRING = 'String'
WOODWIND = 'Woodwind'
@@ -865,7 +886,7 @@ Imagen¶
Edit image uses a separate model from generate and upscale.
Edit image is only supported in Vertex AI.
# Edit the generated image from above
-from google.genai.types import RawReferenceImage, MaskReferenceImage
+from google.genai.types import RawReferenceImage, MaskReferenceImage
raw_ref_image = RawReferenceImage(
reference_id=1,
@@ -943,17 +964,24 @@ Files¶
Upload¶
-file1 = client.files.upload(path='2312.11805v3.pdf')
-file2 = client.files.upload(path='2403.05530.pdf')
+file1 = client.files.upload(file='2312.11805v3.pdf')
+file2 = client.files.upload(file='2403.05530.pdf')
print(file1)
print(file2)
+
+Get¶
+file1 = client.files.upload(file='2312.11805v3.pdf')
+file_info = client.files.get(name=file1.name)
+
+
+
Delete¶
-file3 = client.files.upload(path='2312.11805v3.pdf')
+file3 = client.files.upload(file='2312.11805v3.pdf')
client.files.delete(name=file3.name)
@@ -998,14 +1026,14 @@ Create¶
-
-Get¶
+
+Get¶
cached_content = client.caches.get(name=cached_content.name)
-
-Generate Content¶
+
+Generate Content¶
response = client.models.generate_content(
model='gemini-1.5-pro-002',
contents='Summarize the pdfs',
@@ -1063,7 +1091,7 @@ Get Tuning Jobprint(tuning_job)
-import time
+import time
running_states = set(
[
@@ -1164,8 +1192,8 @@ List Tuning Jobs
Batch Prediction¶
Only supported in Vertex AI.
-
-Create¶
+
+Create¶
# Specify model and source file only, destination and job display name will be auto-populated
job = client.batches.create(
model='gemini-1.5-flash-002',
@@ -1228,8 +1256,8 @@ List¶
-
-Delete¶
+
+Delete¶
# Delete the job resource
delete_job = client.batches.delete(name=job.name)
@@ -3857,7 +3885,10 @@ ReferenceGoogle Gen AI SDK
@@ -3895,13 +3926,14 @@ ReferenceFiles
- Caches
- Tunings
- Reference
diff --git a/docs/modules.html b/docs/modules.html
index 3299e517..97f2f47a 100644
--- a/docs/modules.html
+++ b/docs/modules.html
@@ -7,7 +7,7 @@
google - Google Gen AI SDK documentation
-
+
diff --git a/docs/py-modindex.html b/docs/py-modindex.html
index e414f589..6e5b256f 100644
--- a/docs/py-modindex.html
+++ b/docs/py-modindex.html
@@ -5,7 +5,7 @@
Python Module Index - Google Gen AI SDK documentation
-
+
diff --git a/docs/search.html b/docs/search.html
index af6966db..bbbe6687 100644
--- a/docs/search.html
+++ b/docs/search.html
@@ -7,7 +7,7 @@
-Search - Google Gen AI SDK documentation
+Search - Google Gen AI SDK documentation
diff --git a/docs/searchindex.js b/docs/searchindex.js
index 9758bc8e..d3b9ddec 100644
--- a/docs/searchindex.js
+++ b/docs/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"Async": [[1, "async"], [1, "id4"], [1, "id6"]], "Async Streaming": [[1, "async-streaming"]], "Batch Prediction": [[1, "batch-prediction"]], "Caches": [[1, "caches"]], "Chats": [[1, "chats"]], "Count Tokens and Compute Tokens": [[1, "count-tokens-and-compute-tokens"]], "Create": [[1, "create"], [1, "id8"]], "Create a client": [[1, "create-a-client"]], "Delete": [[1, "delete"], [1, "id9"]], "Embed Content": [[1, "embed-content"]], "Enum Response Schema": [[1, "enum-response-schema"]], "Files": [[1, "files"]], "Function Calling": [[1, "function-calling"]], "Generate Content": [[1, "generate-content"], [1, "id7"]], "Get": [[1, "get"]], "Get Tuned Model": [[1, "get-tuned-model"]], "Get Tuning Job": [[1, "get-tuning-job"]], "Google Gen AI SDK": [[1, null]], "How to structure contents": [[1, "how-to-structure-contents"]], "Imagen": [[1, "imagen"]], "Imports": [[1, "imports"]], "Installation": [[1, "installation"]], "JSON Response Schema": [[1, "json-response-schema"]], "List": [[1, "list"]], "List Base Models": [[1, "list-base-models"]], "List Tuned Models": [[1, "list-tuned-models"]], "List Tuning Jobs": [[1, "list-tuning-jobs"]], "Models": [[1, "models"]], "Reference": [[1, "reference"]], "Safety Settings": [[1, "safety-settings"]], "Send Message": [[1, "send-message"]], "Streaming": [[1, "streaming"], [1, "id3"], [1, "id5"]], "Submodules": [[0, null]], "System Instructions and Other Configs": [[1, "system-instructions-and-other-configs"]], "Tune": [[1, "tune"]], "Tunings": [[1, "tunings"]], "Typed Config": [[1, "typed-config"]], "Types": [[1, "types"]], "Update Tuned Model": [[1, "update-tuned-model"]], "Upload": [[1, "upload"]], "genai.batches module": [[0, "module-genai.batches"]], "genai.caches module": [[0, "module-genai.caches"]], "genai.chats module": [[0, "module-genai.chats"]], "genai.client module": [[0, "module-genai.client"]], "genai.files module": [[0, "module-genai.files"]], "genai.live module": [[0, "module-genai.live"]], "genai.models module": [[0, "module-genai.models"]], "genai.tunings module": [[0, "module-genai.tunings"]], "genai.types module": [[0, "module-genai.types"]], "google": [[2, null]], "with text content": [[1, "with-text-content"]], "with uploaded file (Gemini API only)": [[1, "with-uploaded-file-gemini-api-only"]]}, "docnames": ["genai", "index", "modules"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["genai.rst", "index.rst", "modules.rst"], "indexentries": {}, "objects": {"genai": [[0, 0, 0, "-", "batches"], [0, 0, 0, "-", "caches"], [0, 0, 0, "-", "chats"], [0, 0, 0, "-", "client"], [0, 0, 0, "-", "files"], [0, 0, 0, "-", "live"], [0, 0, 0, "-", "models"], [0, 0, 0, "-", "tunings"], [0, 0, 0, "-", "types"]], "genai.batches": [[0, 1, 1, "", "AsyncBatches"], [0, 1, 1, "", "Batches"]], "genai.batches.AsyncBatches": [[0, 2, 1, "", "cancel"], [0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"]], "genai.batches.Batches": [[0, 2, 1, "", "cancel"], [0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"]], "genai.caches": [[0, 1, 1, "", "AsyncCaches"], [0, 1, 1, "", "Caches"]], "genai.caches.AsyncCaches": [[0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"]], "genai.caches.Caches": [[0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"]], "genai.chats": [[0, 1, 1, "", "AsyncChat"], [0, 1, 1, "", "AsyncChats"], [0, 1, 1, "", "Chat"], [0, 1, 1, "", "Chats"]], "genai.chats.AsyncChat": [[0, 2, 1, "", "send_message"], [0, 2, 1, "", "send_message_stream"]], "genai.chats.AsyncChats": [[0, 2, 1, "", "create"]], "genai.chats.Chat": [[0, 2, 1, "", "send_message"], [0, 2, 1, "", "send_message_stream"]], "genai.chats.Chats": [[0, 2, 1, "", "create"]], "genai.client": [[0, 1, 1, "", "AsyncClient"], [0, 1, 1, "", "Client"], [0, 5, 1, "", "DebugConfig"]], "genai.client.AsyncClient": [[0, 3, 1, "", "batches"], [0, 3, 1, "", "caches"], [0, 3, 1, "", "chats"], [0, 3, 1, "", "files"], [0, 3, 1, "", "live"], [0, 3, 1, "", "models"], [0, 3, 1, "", "tunings"]], "genai.client.Client": [[0, 3, 1, "", "aio"], [0, 4, 1, "", "api_key"], [0, 3, 1, "", "batches"], [0, 3, 1, "", "caches"], [0, 3, 1, "", "chats"], [0, 4, 1, "", "credentials"], [0, 4, 1, "", "debug_config"], [0, 3, 1, "", "files"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "location"], [0, 3, 1, "", "models"], [0, 4, 1, "", "project"], [0, 3, 1, "", "tunings"], [0, 3, 1, "id0", "vertexai"]], "genai.client.DebugConfig": [[0, 6, 1, "", "client_mode"], [0, 6, 1, "", "replay_id"], [0, 6, 1, "", "replays_directory"]], "genai.files": [[0, 1, 1, "", "AsyncFiles"], [0, 1, 1, "", "Files"]], "genai.files.AsyncFiles": [[0, 2, 1, "", "delete"], [0, 2, 1, "", "download"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "upload"]], "genai.files.Files": [[0, 2, 1, "", "delete"], [0, 2, 1, "", "download"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "upload"]], "genai.live": [[0, 1, 1, "", "AsyncLive"], [0, 1, 1, "", "AsyncSession"]], "genai.live.AsyncLive": [[0, 2, 1, "", "connect"]], "genai.live.AsyncSession": [[0, 2, 1, "", "close"], [0, 2, 1, "", "receive"], [0, 2, 1, "", "send"], [0, 2, 1, "", "start_stream"]], "genai.models": [[0, 1, 1, "", "AsyncModels"], [0, 1, 1, "", "Models"]], "genai.models.AsyncModels": [[0, 2, 1, "", "compute_tokens"], [0, 2, 1, "", "count_tokens"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "edit_image"], [0, 2, 1, "", "embed_content"], [0, 2, 1, "", "generate_content"], [0, 2, 1, "", "generate_content_stream"], [0, 2, 1, "", "generate_images"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"], [0, 2, 1, "", "upscale_image"]], "genai.models.Models": [[0, 2, 1, "", "compute_tokens"], [0, 2, 1, "", "count_tokens"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "edit_image"], [0, 2, 1, "", "embed_content"], [0, 2, 1, "", "generate_content"], [0, 2, 1, "", "generate_content_stream"], [0, 2, 1, "", "generate_images"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"], [0, 2, 1, "", "upscale_image"]], "genai.tunings": [[0, 1, 1, "", "AsyncTunings"], [0, 1, 1, "", "Tunings"]], "genai.tunings.AsyncTunings": [[0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "tune"]], "genai.tunings.Tunings": [[0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "tune"]], "genai.types": [[0, 1, 1, "", "AdapterSize"], [0, 5, 1, "", "AutomaticFunctionCallingConfig"], [0, 1, 1, "", "AutomaticFunctionCallingConfigDict"], [0, 5, 1, "", "BatchJob"], [0, 5, 1, "", "BatchJobDestination"], [0, 1, 1, "", "BatchJobDestinationDict"], [0, 1, 1, "", "BatchJobDict"], [0, 5, 1, "", "BatchJobSource"], [0, 1, 1, "", "BatchJobSourceDict"], [0, 5, 1, "", "Blob"], [0, 1, 1, "", "BlobDict"], [0, 1, 1, "", "BlockedReason"], [0, 5, 1, "", "CachedContent"], [0, 1, 1, "", "CachedContentDict"], [0, 5, 1, "", "CachedContentUsageMetadata"], [0, 1, 1, "", "CachedContentUsageMetadataDict"], [0, 5, 1, "", "CancelBatchJobConfig"], [0, 1, 1, "", "CancelBatchJobConfigDict"], [0, 5, 1, "", "Candidate"], [0, 1, 1, "", "CandidateDict"], [0, 5, 1, "", "Citation"], [0, 1, 1, "", "CitationDict"], [0, 5, 1, "", "CitationMetadata"], [0, 1, 1, "", "CitationMetadataDict"], [0, 5, 1, "", "CodeExecutionResult"], [0, 1, 1, "", "CodeExecutionResultDict"], [0, 5, 1, "", "ComputeTokensConfig"], [0, 1, 1, "", "ComputeTokensConfigDict"], [0, 5, 1, "", "ComputeTokensResponse"], [0, 1, 1, "", "ComputeTokensResponseDict"], [0, 5, 1, "", "Content"], [0, 1, 1, "", "ContentDict"], [0, 5, 1, "", "ContentEmbedding"], [0, 1, 1, "", "ContentEmbeddingDict"], [0, 5, 1, "", "ContentEmbeddingStatistics"], [0, 1, 1, "", "ContentEmbeddingStatisticsDict"], [0, 5, 1, "", "ControlReferenceConfig"], [0, 1, 1, "", "ControlReferenceConfigDict"], [0, 5, 1, "", "ControlReferenceImage"], [0, 1, 1, "", "ControlReferenceImageDict"], [0, 1, 1, "", "ControlReferenceType"], [0, 5, 1, "", "CountTokensConfig"], [0, 1, 1, "", "CountTokensConfigDict"], [0, 5, 1, "", "CountTokensResponse"], [0, 1, 1, "", "CountTokensResponseDict"], [0, 5, 1, "", "CreateBatchJobConfig"], [0, 1, 1, "", "CreateBatchJobConfigDict"], [0, 5, 1, "", "CreateCachedContentConfig"], [0, 1, 1, "", "CreateCachedContentConfigDict"], [0, 5, 1, "", "CreateFileConfig"], [0, 1, 1, "", "CreateFileConfigDict"], [0, 5, 1, "", "CreateFileResponse"], [0, 1, 1, "", "CreateFileResponseDict"], [0, 5, 1, "", "CreateTuningJobConfig"], [0, 1, 1, "", "CreateTuningJobConfigDict"], [0, 5, 1, "", "DatasetDistribution"], [0, 1, 1, "", "DatasetDistributionDict"], [0, 5, 1, "", "DatasetDistributionDistributionBucket"], [0, 1, 1, "", "DatasetDistributionDistributionBucketDict"], [0, 5, 1, "", "DatasetStats"], [0, 1, 1, "", "DatasetStatsDict"], [0, 5, 1, "", "DeleteBatchJobConfig"], [0, 1, 1, "", "DeleteBatchJobConfigDict"], [0, 5, 1, "", "DeleteCachedContentConfig"], [0, 1, 1, "", "DeleteCachedContentConfigDict"], [0, 5, 1, "", "DeleteCachedContentResponse"], [0, 1, 1, "", "DeleteCachedContentResponseDict"], [0, 5, 1, "", "DeleteFileConfig"], [0, 1, 1, "", "DeleteFileConfigDict"], [0, 5, 1, "", "DeleteFileResponse"], [0, 1, 1, "", "DeleteFileResponseDict"], [0, 5, 1, "", "DeleteModelConfig"], [0, 1, 1, "", "DeleteModelConfigDict"], [0, 5, 1, "", "DeleteModelResponse"], [0, 1, 1, "", "DeleteModelResponseDict"], [0, 5, 1, "", "DeleteResourceJob"], [0, 1, 1, "", "DeleteResourceJobDict"], [0, 1, 1, "", "DeploymentResourcesType"], [0, 5, 1, "", "DistillationDataStats"], [0, 1, 1, "", "DistillationDataStatsDict"], [0, 5, 1, "", "DistillationHyperParameters"], [0, 1, 1, "", "DistillationHyperParametersDict"], [0, 5, 1, "", "DistillationSpec"], [0, 1, 1, "", "DistillationSpecDict"], [0, 5, 1, "", "DownloadFileConfig"], [0, 1, 1, "", "DownloadFileConfigDict"], [0, 5, 1, "", "DynamicRetrievalConfig"], [0, 1, 1, "", "DynamicRetrievalConfigDict"], [0, 1, 1, "", "DynamicRetrievalConfigMode"], [0, 5, 1, "", "EditImageConfig"], [0, 1, 1, "", "EditImageConfigDict"], [0, 5, 1, "", "EditImageResponse"], [0, 1, 1, "", "EditImageResponseDict"], [0, 1, 1, "", "EditMode"], [0, 5, 1, "", "EmbedContentConfig"], [0, 1, 1, "", "EmbedContentConfigDict"], [0, 5, 1, "", "EmbedContentMetadata"], [0, 1, 1, "", "EmbedContentMetadataDict"], [0, 5, 1, "", "EmbedContentResponse"], [0, 1, 1, "", "EmbedContentResponseDict"], [0, 5, 1, "", "EncryptionSpec"], [0, 1, 1, "", "EncryptionSpecDict"], [0, 5, 1, "", "Endpoint"], [0, 1, 1, "", "EndpointDict"], [0, 5, 1, "", "ExecutableCode"], [0, 1, 1, "", "ExecutableCodeDict"], [0, 5, 1, "", "FetchPredictOperationConfig"], [0, 1, 1, "", "FetchPredictOperationConfigDict"], [0, 5, 1, "", "File"], [0, 5, 1, "", "FileData"], [0, 1, 1, "", "FileDataDict"], [0, 1, 1, "", "FileDict"], [0, 1, 1, "", "FileSource"], [0, 1, 1, "", "FileState"], [0, 5, 1, "", "FileStatus"], [0, 1, 1, "", "FileStatusDict"], [0, 1, 1, "", "FinishReason"], [0, 5, 1, "", "FunctionCall"], [0, 1, 1, "", "FunctionCallDict"], [0, 5, 1, "", "FunctionCallingConfig"], [0, 1, 1, "", "FunctionCallingConfigDict"], [0, 1, 1, "", "FunctionCallingConfigMode"], [0, 5, 1, "", "FunctionDeclaration"], [0, 1, 1, "", "FunctionDeclarationDict"], [0, 5, 1, "", "FunctionResponse"], [0, 1, 1, "", "FunctionResponseDict"], [0, 5, 1, "", "GenerateContentConfig"], [0, 1, 1, "", "GenerateContentConfigDict"], [0, 5, 1, "", "GenerateContentResponse"], [0, 1, 1, "", "GenerateContentResponseDict"], [0, 5, 1, "", "GenerateContentResponsePromptFeedback"], [0, 1, 1, "", "GenerateContentResponsePromptFeedbackDict"], [0, 5, 1, "", "GenerateContentResponseUsageMetadata"], [0, 1, 1, "", "GenerateContentResponseUsageMetadataDict"], [0, 5, 1, "", "GenerateImagesConfig"], [0, 1, 1, "", "GenerateImagesConfigDict"], [0, 5, 1, "", "GenerateImagesResponse"], [0, 1, 1, "", "GenerateImagesResponseDict"], [0, 5, 1, "", "GeneratedImage"], [0, 1, 1, "", "GeneratedImageDict"], [0, 5, 1, "", "GenerationConfig"], [0, 1, 1, "", "GenerationConfigDict"], [0, 5, 1, "", "GenerationConfigRoutingConfig"], [0, 5, 1, "", "GenerationConfigRoutingConfigAutoRoutingMode"], [0, 1, 1, "", "GenerationConfigRoutingConfigAutoRoutingModeDict"], [0, 1, 1, "", "GenerationConfigRoutingConfigDict"], [0, 5, 1, "", "GenerationConfigRoutingConfigManualRoutingMode"], [0, 1, 1, "", "GenerationConfigRoutingConfigManualRoutingModeDict"], [0, 5, 1, "", "GetBatchJobConfig"], [0, 1, 1, "", "GetBatchJobConfigDict"], [0, 5, 1, "", "GetCachedContentConfig"], [0, 1, 1, "", "GetCachedContentConfigDict"], [0, 5, 1, "", "GetFileConfig"], [0, 1, 1, "", "GetFileConfigDict"], [0, 5, 1, "", "GetModelConfig"], [0, 1, 1, "", "GetModelConfigDict"], [0, 5, 1, "", "GetOperationConfig"], [0, 1, 1, "", "GetOperationConfigDict"], [0, 5, 1, "", "GetTuningJobConfig"], [0, 1, 1, "", "GetTuningJobConfigDict"], [0, 5, 1, "", "GoogleRpcStatus"], [0, 1, 1, "", "GoogleRpcStatusDict"], [0, 5, 1, "", "GoogleSearch"], [0, 1, 1, "", "GoogleSearchDict"], [0, 5, 1, "", "GoogleSearchRetrieval"], [0, 1, 1, "", "GoogleSearchRetrievalDict"], [0, 5, 1, "", "GoogleTypeDate"], [0, 1, 1, "", "GoogleTypeDateDict"], [0, 5, 1, "", "GroundingChunk"], [0, 1, 1, "", "GroundingChunkDict"], [0, 5, 1, "", "GroundingChunkRetrievedContext"], [0, 1, 1, "", "GroundingChunkRetrievedContextDict"], [0, 5, 1, "", "GroundingChunkWeb"], [0, 1, 1, "", "GroundingChunkWebDict"], [0, 5, 1, "", "GroundingMetadata"], [0, 1, 1, "", "GroundingMetadataDict"], [0, 5, 1, "", "GroundingSupport"], [0, 1, 1, "", "GroundingSupportDict"], [0, 1, 1, "", "HarmBlockMethod"], [0, 1, 1, "", "HarmBlockThreshold"], [0, 1, 1, "", "HarmCategory"], [0, 1, 1, "", "HarmProbability"], [0, 1, 1, "", "HarmSeverity"], [0, 5, 1, "", "HttpOptions"], [0, 1, 1, "", "HttpOptionsDict"], [0, 5, 1, "", "Image"], [0, 1, 1, "", "ImageDict"], [0, 1, 1, "", "ImagePromptLanguage"], [0, 5, 1, "", "JobError"], [0, 1, 1, "", "JobErrorDict"], [0, 1, 1, "", "JobState"], [0, 1, 1, "", "Language"], [0, 5, 1, "", "ListBatchJobsConfig"], [0, 1, 1, "", "ListBatchJobsConfigDict"], [0, 5, 1, "", "ListBatchJobsResponse"], [0, 1, 1, "", "ListBatchJobsResponseDict"], [0, 5, 1, "", "ListCachedContentsConfig"], [0, 1, 1, "", "ListCachedContentsConfigDict"], [0, 5, 1, "", "ListCachedContentsResponse"], [0, 1, 1, "", "ListCachedContentsResponseDict"], [0, 5, 1, "", "ListFilesConfig"], [0, 1, 1, "", "ListFilesConfigDict"], [0, 5, 1, "", "ListFilesResponse"], [0, 1, 1, "", "ListFilesResponseDict"], [0, 5, 1, "", "ListModelsConfig"], [0, 1, 1, "", "ListModelsConfigDict"], [0, 5, 1, "", "ListModelsResponse"], [0, 1, 1, "", "ListModelsResponseDict"], [0, 5, 1, "", "ListTuningJobsConfig"], [0, 1, 1, "", "ListTuningJobsConfigDict"], [0, 5, 1, "", "ListTuningJobsResponse"], [0, 1, 1, "", "ListTuningJobsResponseDict"], [0, 5, 1, "", "LiveClientContent"], [0, 1, 1, "", "LiveClientContentDict"], [0, 5, 1, "", "LiveClientMessage"], [0, 1, 1, "", "LiveClientMessageDict"], [0, 5, 1, "", "LiveClientRealtimeInput"], [0, 1, 1, "", "LiveClientRealtimeInputDict"], [0, 5, 1, "", "LiveClientSetup"], [0, 1, 1, "", "LiveClientSetupDict"], [0, 5, 1, "", "LiveClientToolResponse"], [0, 1, 1, "", "LiveClientToolResponseDict"], [0, 5, 1, "", "LiveConnectConfig"], [0, 1, 1, "", "LiveConnectConfigDict"], [0, 5, 1, "", "LiveServerContent"], [0, 1, 1, "", "LiveServerContentDict"], [0, 5, 1, "", "LiveServerMessage"], [0, 1, 1, "", "LiveServerMessageDict"], [0, 5, 1, "", "LiveServerSetupComplete"], [0, 1, 1, "", "LiveServerSetupCompleteDict"], [0, 5, 1, "", "LiveServerToolCall"], [0, 5, 1, "", "LiveServerToolCallCancellation"], [0, 1, 1, "", "LiveServerToolCallCancellationDict"], [0, 1, 1, "", "LiveServerToolCallDict"], [0, 5, 1, "", "LogprobsResult"], [0, 5, 1, "", "LogprobsResultCandidate"], [0, 1, 1, "", "LogprobsResultCandidateDict"], [0, 1, 1, "", "LogprobsResultDict"], [0, 5, 1, "", "LogprobsResultTopCandidates"], [0, 1, 1, "", "LogprobsResultTopCandidatesDict"], [0, 5, 1, "", "MaskReferenceConfig"], [0, 1, 1, "", "MaskReferenceConfigDict"], [0, 5, 1, "", "MaskReferenceImage"], [0, 1, 1, "", "MaskReferenceImageDict"], [0, 1, 1, "", "MaskReferenceMode"], [0, 1, 1, "", "MediaResolution"], [0, 1, 1, "", "Modality"], [0, 1, 1, "", "Mode"], [0, 5, 1, "", "Model"], [0, 1, 1, "", "ModelDict"], [0, 5, 1, "", "Operation"], [0, 1, 1, "", "OperationDict"], [0, 1, 1, "", "Outcome"], [0, 5, 1, "", "Part"], [0, 1, 1, "", "PartDict"], [0, 5, 1, "", "PartnerModelTuningSpec"], [0, 1, 1, "", "PartnerModelTuningSpecDict"], [0, 1, 1, "", "PersonGeneration"], [0, 5, 1, "", "PrebuiltVoiceConfig"], [0, 1, 1, "", "PrebuiltVoiceConfigDict"], [0, 5, 1, "", "RawReferenceImage"], [0, 1, 1, "", "RawReferenceImageDict"], [0, 5, 1, "", "ReplayFile"], [0, 1, 1, "", "ReplayFileDict"], [0, 5, 1, "", "ReplayInteraction"], [0, 1, 1, "", "ReplayInteractionDict"], [0, 5, 1, "", "ReplayRequest"], [0, 1, 1, "", "ReplayRequestDict"], [0, 5, 1, "", "ReplayResponse"], [0, 1, 1, "", "ReplayResponseDict"], [0, 5, 1, "", "Retrieval"], [0, 1, 1, "", "RetrievalDict"], [0, 5, 1, "", "RetrievalMetadata"], [0, 1, 1, "", "RetrievalMetadataDict"], [0, 1, 1, "", "SafetyFilterLevel"], [0, 5, 1, "", "SafetyRating"], [0, 1, 1, "", "SafetyRatingDict"], [0, 5, 1, "", "SafetySetting"], [0, 1, 1, "", "SafetySettingDict"], [0, 5, 1, "", "Schema"], [0, 1, 1, "", "SchemaDict"], [0, 5, 1, "", "SearchEntryPoint"], [0, 1, 1, "", "SearchEntryPointDict"], [0, 5, 1, "", "Segment"], [0, 1, 1, "", "SegmentDict"], [0, 5, 1, "", "SpeechConfig"], [0, 1, 1, "", "SpeechConfigDict"], [0, 1, 1, "", "State"], [0, 5, 1, "", "StyleReferenceConfig"], [0, 1, 1, "", "StyleReferenceConfigDict"], [0, 5, 1, "", "StyleReferenceImage"], [0, 1, 1, "", "StyleReferenceImageDict"], [0, 5, 1, "", "SubjectReferenceConfig"], [0, 1, 1, "", "SubjectReferenceConfigDict"], [0, 5, 1, "", "SubjectReferenceImage"], [0, 1, 1, "", "SubjectReferenceImageDict"], [0, 1, 1, "", "SubjectReferenceType"], [0, 5, 1, "", "SupervisedHyperParameters"], [0, 1, 1, "", "SupervisedHyperParametersDict"], [0, 5, 1, "", "SupervisedTuningDataStats"], [0, 1, 1, "", "SupervisedTuningDataStatsDict"], [0, 5, 1, "", "SupervisedTuningDatasetDistribution"], [0, 5, 1, "", "SupervisedTuningDatasetDistributionDatasetBucket"], [0, 1, 1, "", "SupervisedTuningDatasetDistributionDatasetBucketDict"], [0, 1, 1, "", "SupervisedTuningDatasetDistributionDict"], [0, 5, 1, "", "SupervisedTuningSpec"], [0, 1, 1, "", "SupervisedTuningSpecDict"], [0, 5, 1, "", "TestTableFile"], [0, 1, 1, "", "TestTableFileDict"], [0, 5, 1, "", "TestTableItem"], [0, 1, 1, "", "TestTableItemDict"], [0, 5, 1, "", "ThinkingConfig"], [0, 1, 1, "", "ThinkingConfigDict"], [0, 5, 1, "", "TokensInfo"], [0, 1, 1, "", "TokensInfoDict"], [0, 5, 1, "", "Tool"], [0, 5, 1, "", "ToolCodeExecution"], [0, 1, 1, "", "ToolCodeExecutionDict"], [0, 5, 1, "", "ToolConfig"], [0, 1, 1, "", "ToolConfigDict"], [0, 1, 1, "", "ToolDict"], [0, 5, 1, "", "TunedModel"], [0, 1, 1, "", "TunedModelDict"], [0, 5, 1, "", "TunedModelInfo"], [0, 1, 1, "", "TunedModelInfoDict"], [0, 5, 1, "", "TuningDataStats"], [0, 1, 1, "", "TuningDataStatsDict"], [0, 5, 1, "", "TuningDataset"], [0, 1, 1, "", "TuningDatasetDict"], [0, 5, 1, "", "TuningExample"], [0, 1, 1, "", "TuningExampleDict"], [0, 5, 1, "", "TuningJob"], [0, 1, 1, "", "TuningJobDict"], [0, 5, 1, "", "TuningValidationDataset"], [0, 1, 1, "", "TuningValidationDatasetDict"], [0, 1, 1, "", "Type"], [0, 5, 1, "", "UpdateCachedContentConfig"], [0, 1, 1, "", "UpdateCachedContentConfigDict"], [0, 5, 1, "", "UpdateModelConfig"], [0, 1, 1, "", "UpdateModelConfigDict"], [0, 5, 1, "", "UploadFileConfig"], [0, 1, 1, "", "UploadFileConfigDict"], [0, 5, 1, "", "UpscaleImageConfig"], [0, 1, 1, "", "UpscaleImageConfigDict"], [0, 5, 1, "", "UpscaleImageParameters"], [0, 1, 1, "", "UpscaleImageParametersDict"], [0, 5, 1, "", "UpscaleImageResponse"], [0, 1, 1, "", "UpscaleImageResponseDict"], [0, 5, 1, "", "VertexAISearch"], [0, 1, 1, "", "VertexAISearchDict"], [0, 5, 1, "", "VertexRagStore"], [0, 1, 1, "", "VertexRagStoreDict"], [0, 5, 1, "", "VertexRagStoreRagResource"], [0, 1, 1, "", "VertexRagStoreRagResourceDict"], [0, 5, 1, "", "VideoMetadata"], [0, 1, 1, "", "VideoMetadataDict"], [0, 5, 1, "", "VoiceConfig"], [0, 1, 1, "", "VoiceConfigDict"]], "genai.types.AdapterSize": [[0, 4, 1, "", "ADAPTER_SIZE_EIGHT"], [0, 4, 1, "", "ADAPTER_SIZE_FOUR"], [0, 4, 1, "", "ADAPTER_SIZE_ONE"], [0, 4, 1, "", "ADAPTER_SIZE_SIXTEEN"], [0, 4, 1, "", "ADAPTER_SIZE_THIRTY_TWO"], [0, 4, 1, "", "ADAPTER_SIZE_UNSPECIFIED"]], "genai.types.AutomaticFunctionCallingConfig": [[0, 6, 1, "", "disable"], [0, 6, 1, "", "ignore_call_history"], [0, 6, 1, "", "maximum_remote_calls"]], "genai.types.AutomaticFunctionCallingConfigDict": [[0, 4, 1, "", "disable"], [0, 4, 1, "", "ignore_call_history"], [0, 4, 1, "", "maximum_remote_calls"]], "genai.types.BatchJob": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "dest"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "end_time"], [0, 6, 1, "", "error"], [0, 6, 1, "", "model"], [0, 6, 1, "", "name"], [0, 6, 1, "", "src"], [0, 6, 1, "", "start_time"], [0, 6, 1, "", "state"], [0, 6, 1, "", "update_time"]], "genai.types.BatchJobDestination": [[0, 6, 1, "", "bigquery_uri"], [0, 6, 1, "", "format"], [0, 6, 1, "", "gcs_uri"]], "genai.types.BatchJobDestinationDict": [[0, 4, 1, "", "bigquery_uri"], [0, 4, 1, "", "format"], [0, 4, 1, "", "gcs_uri"]], "genai.types.BatchJobDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "dest"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "end_time"], [0, 4, 1, "", "error"], [0, 4, 1, "", "model"], [0, 4, 1, "", "name"], [0, 4, 1, "", "src"], [0, 4, 1, "", "start_time"], [0, 4, 1, "", "state"], [0, 4, 1, "", "update_time"]], "genai.types.BatchJobSource": [[0, 6, 1, "", "bigquery_uri"], [0, 6, 1, "", "format"], [0, 6, 1, "", "gcs_uri"]], "genai.types.BatchJobSourceDict": [[0, 4, 1, "", "bigquery_uri"], [0, 4, 1, "", "format"], [0, 4, 1, "", "gcs_uri"]], "genai.types.Blob": [[0, 6, 1, "", "data"], [0, 6, 1, "", "mime_type"]], "genai.types.BlobDict": [[0, 4, 1, "", "data"], [0, 4, 1, "", "mime_type"]], "genai.types.BlockedReason": [[0, 4, 1, "", "BLOCKED_REASON_UNSPECIFIED"], [0, 4, 1, "", "BLOCKLIST"], [0, 4, 1, "", "OTHER"], [0, 4, 1, "", "PROHIBITED_CONTENT"], [0, 4, 1, "", "SAFETY"]], "genai.types.CachedContent": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "expire_time"], [0, 6, 1, "", "model"], [0, 6, 1, "", "name"], [0, 6, 1, "", "update_time"], [0, 6, 1, "", "usage_metadata"]], "genai.types.CachedContentDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "expire_time"], [0, 4, 1, "", "model"], [0, 4, 1, "", "name"], [0, 4, 1, "", "update_time"], [0, 4, 1, "", "usage_metadata"]], "genai.types.CachedContentUsageMetadata": [[0, 6, 1, "", "audio_duration_seconds"], [0, 6, 1, "", "image_count"], [0, 6, 1, "", "text_count"], [0, 6, 1, "", "total_token_count"], [0, 6, 1, "", "video_duration_seconds"]], "genai.types.CachedContentUsageMetadataDict": [[0, 4, 1, "", "audio_duration_seconds"], [0, 4, 1, "", "image_count"], [0, 4, 1, "", "text_count"], [0, 4, 1, "", "total_token_count"], [0, 4, 1, "", "video_duration_seconds"]], "genai.types.CancelBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.CancelBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.Candidate": [[0, 6, 1, "", "avg_logprobs"], [0, 6, 1, "", "citation_metadata"], [0, 6, 1, "", "content"], [0, 6, 1, "", "finish_message"], [0, 6, 1, "", "finish_reason"], [0, 6, 1, "", "grounding_metadata"], [0, 6, 1, "", "index"], [0, 6, 1, "", "logprobs_result"], [0, 6, 1, "", "safety_ratings"], [0, 6, 1, "", "token_count"]], "genai.types.CandidateDict": [[0, 4, 1, "", "avg_logprobs"], [0, 4, 1, "", "citation_metadata"], [0, 4, 1, "", "content"], [0, 4, 1, "", "finish_message"], [0, 4, 1, "", "finish_reason"], [0, 4, 1, "", "grounding_metadata"], [0, 4, 1, "", "index"], [0, 4, 1, "", "logprobs_result"], [0, 4, 1, "", "safety_ratings"], [0, 4, 1, "", "token_count"]], "genai.types.Citation": [[0, 6, 1, "", "end_index"], [0, 6, 1, "", "license"], [0, 6, 1, "", "publication_date"], [0, 6, 1, "", "start_index"], [0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.CitationDict": [[0, 4, 1, "", "end_index"], [0, 4, 1, "", "license"], [0, 4, 1, "", "publication_date"], [0, 4, 1, "", "start_index"], [0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.CitationMetadata": [[0, 6, 1, "", "citations"]], "genai.types.CitationMetadataDict": [[0, 4, 1, "", "citations"]], "genai.types.CodeExecutionResult": [[0, 6, 1, "", "outcome"], [0, 6, 1, "", "output"]], "genai.types.CodeExecutionResultDict": [[0, 4, 1, "", "outcome"], [0, 4, 1, "", "output"]], "genai.types.ComputeTokensConfig": [[0, 6, 1, "", "http_options"]], "genai.types.ComputeTokensConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.ComputeTokensResponse": [[0, 6, 1, "", "tokens_info"]], "genai.types.ComputeTokensResponseDict": [[0, 4, 1, "", "tokens_info"]], "genai.types.Content": [[0, 6, 1, "", "parts"], [0, 6, 1, "", "role"]], "genai.types.ContentDict": [[0, 4, 1, "", "parts"], [0, 4, 1, "", "role"]], "genai.types.ContentEmbedding": [[0, 6, 1, "", "statistics"], [0, 6, 1, "", "values"]], "genai.types.ContentEmbeddingDict": [[0, 4, 1, "", "statistics"]], "genai.types.ContentEmbeddingStatistics": [[0, 6, 1, "", "token_count"], [0, 6, 1, "", "truncated"]], "genai.types.ContentEmbeddingStatisticsDict": [[0, 4, 1, "", "token_count"], [0, 4, 1, "", "truncated"]], "genai.types.ControlReferenceConfig": [[0, 6, 1, "", "control_type"], [0, 6, 1, "", "enable_control_image_computation"]], "genai.types.ControlReferenceConfigDict": [[0, 4, 1, "", "control_type"], [0, 4, 1, "", "enable_control_image_computation"]], "genai.types.ControlReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "control_image_config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.ControlReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.ControlReferenceType": [[0, 4, 1, "", "CONTROL_TYPE_CANNY"], [0, 4, 1, "", "CONTROL_TYPE_DEFAULT"], [0, 4, 1, "", "CONTROL_TYPE_FACE_MESH"], [0, 4, 1, "", "CONTROL_TYPE_SCRIBBLE"]], "genai.types.CountTokensConfig": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.CountTokensConfigDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.CountTokensResponse": [[0, 6, 1, "", "cached_content_token_count"], [0, 6, 1, "", "total_tokens"]], "genai.types.CountTokensResponseDict": [[0, 4, 1, "", "cached_content_token_count"], [0, 4, 1, "", "total_tokens"]], "genai.types.CreateBatchJobConfig": [[0, 6, 1, "", "dest"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"]], "genai.types.CreateBatchJobConfigDict": [[0, 4, 1, "", "dest"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"]], "genai.types.CreateCachedContentConfig": [[0, 6, 1, "", "contents"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "expire_time"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tool_config"], [0, 6, 1, "", "tools"], [0, 6, 1, "", "ttl"]], "genai.types.CreateCachedContentConfigDict": [[0, 4, 1, "", "contents"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "expire_time"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tool_config"], [0, 4, 1, "", "tools"], [0, 4, 1, "", "ttl"]], "genai.types.CreateFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.CreateFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.CreateFileResponse": [[0, 6, 1, "", "http_headers"]], "genai.types.CreateFileResponseDict": [[0, 4, 1, "", "http_headers"]], "genai.types.CreateTuningJobConfig": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "batch_size"], [0, 6, 1, "", "description"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "learning_rate"], [0, 6, 1, "", "learning_rate_multiplier"], [0, 6, 1, "", "tuned_model_display_name"], [0, 6, 1, "", "validation_dataset"]], "genai.types.CreateTuningJobConfigDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "batch_size"], [0, 4, 1, "", "description"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "learning_rate"], [0, 4, 1, "", "learning_rate_multiplier"], [0, 4, 1, "", "tuned_model_display_name"], [0, 4, 1, "", "validation_dataset"]], "genai.types.DatasetDistribution": [[0, 6, 1, "", "buckets"], [0, 6, 1, "", "max"], [0, 6, 1, "", "mean"], [0, 6, 1, "", "median"], [0, 6, 1, "", "min"], [0, 6, 1, "", "p5"], [0, 6, 1, "", "p95"], [0, 6, 1, "", "sum"]], "genai.types.DatasetDistributionDict": [[0, 4, 1, "", "buckets"], [0, 4, 1, "", "max"], [0, 4, 1, "", "mean"], [0, 4, 1, "", "median"], [0, 4, 1, "", "min"], [0, 4, 1, "", "p5"], [0, 4, 1, "", "p95"], [0, 4, 1, "", "sum"]], "genai.types.DatasetDistributionDistributionBucket": [[0, 6, 1, "", "count"], [0, 6, 1, "", "left"], [0, 6, 1, "", "right"]], "genai.types.DatasetDistributionDistributionBucketDict": [[0, 4, 1, "", "count"], [0, 4, 1, "", "left"], [0, 4, 1, "", "right"]], "genai.types.DatasetStats": [[0, 6, 1, "", "total_billable_character_count"], [0, 6, 1, "", "total_tuning_character_count"], [0, 6, 1, "", "tuning_dataset_example_count"], [0, 6, 1, "", "tuning_step_count"], [0, 6, 1, "", "user_dataset_examples"], [0, 6, 1, "", "user_input_token_distribution"], [0, 6, 1, "", "user_message_per_example_distribution"], [0, 6, 1, "", "user_output_token_distribution"]], "genai.types.DatasetStatsDict": [[0, 4, 1, "", "total_billable_character_count"], [0, 4, 1, "", "total_tuning_character_count"], [0, 4, 1, "", "tuning_dataset_example_count"], [0, 4, 1, "", "tuning_step_count"], [0, 4, 1, "", "user_dataset_examples"], [0, 4, 1, "", "user_input_token_distribution"], [0, 4, 1, "", "user_message_per_example_distribution"], [0, 4, 1, "", "user_output_token_distribution"]], "genai.types.DeleteBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteCachedContentConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteCachedContentConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteModelConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteModelConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteResourceJob": [[0, 6, 1, "", "done"], [0, 6, 1, "", "error"], [0, 6, 1, "", "name"]], "genai.types.DeleteResourceJobDict": [[0, 4, 1, "", "done"], [0, 4, 1, "", "error"], [0, 4, 1, "", "name"]], "genai.types.DeploymentResourcesType": [[0, 4, 1, "", "AUTOMATIC_RESOURCES"], [0, 4, 1, "", "DEDICATED_RESOURCES"], [0, 4, 1, "", "DEPLOYMENT_RESOURCES_TYPE_UNSPECIFIED"], [0, 4, 1, "", "SHARED_RESOURCES"]], "genai.types.DistillationDataStats": [[0, 6, 1, "", "training_dataset_stats"]], "genai.types.DistillationDataStatsDict": [[0, 4, 1, "", "training_dataset_stats"]], "genai.types.DistillationHyperParameters": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "learning_rate_multiplier"]], "genai.types.DistillationHyperParametersDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "learning_rate_multiplier"]], "genai.types.DistillationSpec": [[0, 6, 1, "", "base_teacher_model"], [0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "pipeline_root_directory"], [0, 6, 1, "", "student_model"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "tuned_teacher_model_source"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.DistillationSpecDict": [[0, 4, 1, "", "base_teacher_model"], [0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "pipeline_root_directory"], [0, 4, 1, "", "student_model"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "tuned_teacher_model_source"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.DownloadFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DownloadFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DynamicRetrievalConfig": [[0, 6, 1, "", "dynamic_threshold"], [0, 6, 1, "", "mode"]], "genai.types.DynamicRetrievalConfigDict": [[0, 4, 1, "", "dynamic_threshold"], [0, 4, 1, "", "mode"]], "genai.types.DynamicRetrievalConfigMode": [[0, 4, 1, "", "MODE_DYNAMIC"], [0, 4, 1, "", "MODE_UNSPECIFIED"]], "genai.types.EditImageConfig": [[0, 6, 1, "", "edit_mode"], [0, 6, 1, "", "guidance_scale"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "include_safety_attributes"], [0, 6, 1, "", "language"], [0, 6, 1, "", "negative_prompt"], [0, 6, 1, "", "number_of_images"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_gcs_uri"], [0, 6, 1, "", "output_mime_type"], [0, 6, 1, "", "person_generation"], [0, 6, 1, "", "safety_filter_level"], [0, 6, 1, "", "seed"]], "genai.types.EditImageConfigDict": [[0, 4, 1, "", "edit_mode"], [0, 4, 1, "", "guidance_scale"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "include_safety_attributes"], [0, 4, 1, "", "language"], [0, 4, 1, "", "negative_prompt"], [0, 4, 1, "", "number_of_images"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_gcs_uri"], [0, 4, 1, "", "output_mime_type"], [0, 4, 1, "", "person_generation"], [0, 4, 1, "", "safety_filter_level"], [0, 4, 1, "", "seed"]], "genai.types.EditImageResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.EditImageResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.EditMode": [[0, 4, 1, "", "EDIT_MODE_BGSWAP"], [0, 4, 1, "", "EDIT_MODE_CONTROLLED_EDITING"], [0, 4, 1, "", "EDIT_MODE_DEFAULT"], [0, 4, 1, "", "EDIT_MODE_INPAINT_INSERTION"], [0, 4, 1, "", "EDIT_MODE_INPAINT_REMOVAL"], [0, 4, 1, "", "EDIT_MODE_OUTPAINT"], [0, 4, 1, "", "EDIT_MODE_PRODUCT_IMAGE"], [0, 4, 1, "", "EDIT_MODE_STYLE"]], "genai.types.EmbedContentConfig": [[0, 6, 1, "", "auto_truncate"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "output_dimensionality"], [0, 6, 1, "", "task_type"], [0, 6, 1, "", "title"]], "genai.types.EmbedContentConfigDict": [[0, 4, 1, "", "auto_truncate"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "output_dimensionality"], [0, 4, 1, "", "task_type"], [0, 4, 1, "", "title"]], "genai.types.EmbedContentMetadata": [[0, 6, 1, "", "billable_character_count"]], "genai.types.EmbedContentMetadataDict": [[0, 4, 1, "", "billable_character_count"]], "genai.types.EmbedContentResponse": [[0, 6, 1, "", "embeddings"], [0, 6, 1, "", "metadata"]], "genai.types.EmbedContentResponseDict": [[0, 4, 1, "", "embeddings"], [0, 4, 1, "", "metadata"]], "genai.types.EncryptionSpec": [[0, 6, 1, "", "kms_key_name"]], "genai.types.EncryptionSpecDict": [[0, 4, 1, "", "kms_key_name"]], "genai.types.Endpoint": [[0, 6, 1, "", "deployed_model_id"], [0, 6, 1, "", "name"]], "genai.types.EndpointDict": [[0, 4, 1, "", "deployed_model_id"], [0, 4, 1, "", "name"]], "genai.types.ExecutableCode": [[0, 6, 1, "", "code"], [0, 6, 1, "", "language"]], "genai.types.ExecutableCodeDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "language"]], "genai.types.FetchPredictOperationConfig": [[0, 6, 1, "", "http_options"]], "genai.types.FetchPredictOperationConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.File": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "download_uri"], [0, 6, 1, "", "error"], [0, 6, 1, "", "expiration_time"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "name"], [0, 6, 1, "", "sha256_hash"], [0, 6, 1, "", "size_bytes"], [0, 6, 1, "", "source"], [0, 6, 1, "", "state"], [0, 6, 1, "", "update_time"], [0, 6, 1, "", "uri"], [0, 6, 1, "", "video_metadata"]], "genai.types.FileData": [[0, 6, 1, "", "file_uri"], [0, 6, 1, "", "mime_type"]], "genai.types.FileDataDict": [[0, 4, 1, "", "file_uri"], [0, 4, 1, "", "mime_type"]], "genai.types.FileDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "download_uri"], [0, 4, 1, "", "error"], [0, 4, 1, "", "expiration_time"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "name"], [0, 4, 1, "", "sha256_hash"], [0, 4, 1, "", "size_bytes"], [0, 4, 1, "", "source"], [0, 4, 1, "", "state"], [0, 4, 1, "", "update_time"], [0, 4, 1, "", "uri"], [0, 4, 1, "", "video_metadata"]], "genai.types.FileSource": [[0, 4, 1, "", "GENERATED"], [0, 4, 1, "", "SOURCE_UNSPECIFIED"], [0, 4, 1, "", "UPLOADED"]], "genai.types.FileState": [[0, 4, 1, "", "ACTIVE"], [0, 4, 1, "", "FAILED"], [0, 4, 1, "", "PROCESSING"], [0, 4, 1, "", "STATE_UNSPECIFIED"]], "genai.types.FileStatus": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.FileStatusDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.FinishReason": [[0, 4, 1, "", "BLOCKLIST"], [0, 4, 1, "", "FINISH_REASON_UNSPECIFIED"], [0, 4, 1, "", "MALFORMED_FUNCTION_CALL"], [0, 4, 1, "", "MAX_TOKENS"], [0, 4, 1, "", "OTHER"], [0, 4, 1, "", "PROHIBITED_CONTENT"], [0, 4, 1, "", "RECITATION"], [0, 4, 1, "", "SAFETY"], [0, 4, 1, "", "SPII"], [0, 4, 1, "", "STOP"]], "genai.types.FunctionCall": [[0, 6, 1, "", "args"], [0, 6, 1, "", "id"], [0, 6, 1, "", "name"]], "genai.types.FunctionCallDict": [[0, 4, 1, "", "args"], [0, 4, 1, "", "id"], [0, 4, 1, "", "name"]], "genai.types.FunctionCallingConfig": [[0, 6, 1, "", "allowed_function_names"], [0, 6, 1, "", "mode"]], "genai.types.FunctionCallingConfigDict": [[0, 4, 1, "", "allowed_function_names"], [0, 4, 1, "", "mode"]], "genai.types.FunctionCallingConfigMode": [[0, 4, 1, "", "ANY"], [0, 4, 1, "", "AUTO"], [0, 4, 1, "", "MODE_UNSPECIFIED"], [0, 4, 1, "", "NONE"]], "genai.types.FunctionDeclaration": [[0, 6, 1, "", "description"], [0, 2, 1, "", "from_callable"], [0, 2, 1, "", "from_callable_with_api_option"], [0, 6, 1, "", "name"], [0, 6, 1, "", "parameters"], [0, 6, 1, "", "response"]], "genai.types.FunctionDeclarationDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "name"], [0, 4, 1, "", "parameters"], [0, 4, 1, "", "response"]], "genai.types.FunctionResponse": [[0, 6, 1, "", "id"], [0, 6, 1, "", "name"], [0, 6, 1, "", "response"]], "genai.types.FunctionResponseDict": [[0, 4, 1, "", "id"], [0, 4, 1, "", "name"], [0, 4, 1, "", "response"]], "genai.types.GenerateContentConfig": [[0, 6, 1, "", "audio_timestamp"], [0, 6, 1, "", "automatic_function_calling"], [0, 6, 1, "", "cached_content"], [0, 6, 1, "", "candidate_count"], [0, 6, 1, "", "frequency_penalty"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "logprobs"], [0, 6, 1, "", "max_output_tokens"], [0, 6, 1, "", "media_resolution"], [0, 6, 1, "", "presence_penalty"], [0, 6, 1, "", "response_logprobs"], [0, 6, 1, "", "response_mime_type"], [0, 6, 1, "", "response_modalities"], [0, 6, 1, "", "response_schema"], [0, 6, 1, "", "routing_config"], [0, 6, 1, "", "safety_settings"], [0, 6, 1, "", "seed"], [0, 6, 1, "", "speech_config"], [0, 6, 1, "", "stop_sequences"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "temperature"], [0, 6, 1, "", "thinking_config"], [0, 6, 1, "", "tool_config"], [0, 6, 1, "", "tools"], [0, 6, 1, "", "top_k"], [0, 6, 1, "", "top_p"]], "genai.types.GenerateContentConfigDict": [[0, 4, 1, "", "audio_timestamp"], [0, 4, 1, "", "automatic_function_calling"], [0, 4, 1, "", "cached_content"], [0, 4, 1, "", "candidate_count"], [0, 4, 1, "", "frequency_penalty"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "logprobs"], [0, 4, 1, "", "max_output_tokens"], [0, 4, 1, "", "media_resolution"], [0, 4, 1, "", "presence_penalty"], [0, 4, 1, "", "response_logprobs"], [0, 4, 1, "", "response_mime_type"], [0, 4, 1, "", "response_modalities"], [0, 4, 1, "", "response_schema"], [0, 4, 1, "", "routing_config"], [0, 4, 1, "", "safety_settings"], [0, 4, 1, "", "seed"], [0, 4, 1, "", "speech_config"], [0, 4, 1, "", "stop_sequences"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "temperature"], [0, 4, 1, "", "thinking_config"], [0, 4, 1, "", "tool_config"], [0, 4, 1, "", "tools"], [0, 4, 1, "", "top_k"], [0, 4, 1, "", "top_p"]], "genai.types.GenerateContentResponse": [[0, 6, 1, "", "automatic_function_calling_history"], [0, 6, 1, "", "candidates"], [0, 3, 1, "", "function_calls"], [0, 6, 1, "", "model_version"], [0, 6, 1, "", "parsed"], [0, 6, 1, "", "prompt_feedback"], [0, 3, 1, "", "text"], [0, 6, 1, "", "usage_metadata"]], "genai.types.GenerateContentResponseDict": [[0, 4, 1, "", "candidates"], [0, 4, 1, "", "model_version"], [0, 4, 1, "", "prompt_feedback"], [0, 4, 1, "", "usage_metadata"]], "genai.types.GenerateContentResponsePromptFeedback": [[0, 6, 1, "", "block_reason"], [0, 6, 1, "", "block_reason_message"], [0, 6, 1, "", "safety_ratings"]], "genai.types.GenerateContentResponsePromptFeedbackDict": [[0, 4, 1, "", "block_reason"], [0, 4, 1, "", "block_reason_message"], [0, 4, 1, "", "safety_ratings"]], "genai.types.GenerateContentResponseUsageMetadata": [[0, 6, 1, "", "cached_content_token_count"], [0, 6, 1, "", "candidates_token_count"], [0, 6, 1, "", "prompt_token_count"], [0, 6, 1, "", "total_token_count"]], "genai.types.GenerateContentResponseUsageMetadataDict": [[0, 4, 1, "", "cached_content_token_count"], [0, 4, 1, "", "candidates_token_count"], [0, 4, 1, "", "prompt_token_count"], [0, 4, 1, "", "total_token_count"]], "genai.types.GenerateImagesConfig": [[0, 6, 1, "", "add_watermark"], [0, 6, 1, "", "aspect_ratio"], [0, 6, 1, "", "enhance_prompt"], [0, 6, 1, "", "guidance_scale"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "include_safety_attributes"], [0, 6, 1, "", "language"], [0, 6, 1, "", "negative_prompt"], [0, 6, 1, "", "number_of_images"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_gcs_uri"], [0, 6, 1, "", "output_mime_type"], [0, 6, 1, "", "person_generation"], [0, 6, 1, "", "safety_filter_level"], [0, 6, 1, "", "seed"]], "genai.types.GenerateImagesConfigDict": [[0, 4, 1, "", "add_watermark"], [0, 4, 1, "", "aspect_ratio"], [0, 4, 1, "", "enhance_prompt"], [0, 4, 1, "", "guidance_scale"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "include_safety_attributes"], [0, 4, 1, "", "language"], [0, 4, 1, "", "negative_prompt"], [0, 4, 1, "", "number_of_images"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_gcs_uri"], [0, 4, 1, "", "output_mime_type"], [0, 4, 1, "", "person_generation"], [0, 4, 1, "", "safety_filter_level"], [0, 4, 1, "", "seed"]], "genai.types.GenerateImagesResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.GenerateImagesResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.GeneratedImage": [[0, 6, 1, "", "enhanced_prompt"], [0, 6, 1, "", "image"], [0, 6, 1, "", "rai_filtered_reason"]], "genai.types.GeneratedImageDict": [[0, 4, 1, "", "enhanced_prompt"], [0, 4, 1, "", "image"], [0, 4, 1, "", "rai_filtered_reason"]], "genai.types.GenerationConfig": [[0, 6, 1, "", "audio_timestamp"], [0, 6, 1, "", "candidate_count"], [0, 6, 1, "", "frequency_penalty"], [0, 6, 1, "", "logprobs"], [0, 6, 1, "", "max_output_tokens"], [0, 6, 1, "", "presence_penalty"], [0, 6, 1, "", "response_logprobs"], [0, 6, 1, "", "response_mime_type"], [0, 6, 1, "", "response_schema"], [0, 6, 1, "", "routing_config"], [0, 6, 1, "", "seed"], [0, 6, 1, "", "stop_sequences"], [0, 6, 1, "", "temperature"], [0, 6, 1, "", "top_k"], [0, 6, 1, "", "top_p"]], "genai.types.GenerationConfigDict": [[0, 4, 1, "", "audio_timestamp"], [0, 4, 1, "", "candidate_count"], [0, 4, 1, "", "frequency_penalty"], [0, 4, 1, "", "logprobs"], [0, 4, 1, "", "max_output_tokens"], [0, 4, 1, "", "presence_penalty"], [0, 4, 1, "", "response_logprobs"], [0, 4, 1, "", "response_mime_type"], [0, 4, 1, "", "response_schema"], [0, 4, 1, "", "routing_config"], [0, 4, 1, "", "seed"], [0, 4, 1, "", "stop_sequences"], [0, 4, 1, "", "temperature"], [0, 4, 1, "", "top_k"], [0, 4, 1, "", "top_p"]], "genai.types.GenerationConfigRoutingConfig": [[0, 6, 1, "", "auto_mode"], [0, 6, 1, "", "manual_mode"]], "genai.types.GenerationConfigRoutingConfigAutoRoutingMode": [[0, 6, 1, "", "model_routing_preference"]], "genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict": [[0, 4, 1, "", "model_routing_preference"]], "genai.types.GenerationConfigRoutingConfigDict": [[0, 4, 1, "", "auto_mode"], [0, 4, 1, "", "manual_mode"]], "genai.types.GenerationConfigRoutingConfigManualRoutingMode": [[0, 6, 1, "", "model_name"]], "genai.types.GenerationConfigRoutingConfigManualRoutingModeDict": [[0, 4, 1, "", "model_name"]], "genai.types.GetBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetCachedContentConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetCachedContentConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetModelConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetModelConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetOperationConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetOperationConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetTuningJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetTuningJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GoogleRpcStatus": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.GoogleRpcStatusDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.GoogleSearchRetrieval": [[0, 6, 1, "", "dynamic_retrieval_config"]], "genai.types.GoogleSearchRetrievalDict": [[0, 4, 1, "", "dynamic_retrieval_config"]], "genai.types.GoogleTypeDate": [[0, 6, 1, "", "day"], [0, 6, 1, "", "month"], [0, 6, 1, "", "year"]], "genai.types.GoogleTypeDateDict": [[0, 4, 1, "", "day"], [0, 4, 1, "", "month"], [0, 4, 1, "", "year"]], "genai.types.GroundingChunk": [[0, 6, 1, "", "retrieved_context"], [0, 6, 1, "", "web"]], "genai.types.GroundingChunkDict": [[0, 4, 1, "", "retrieved_context"], [0, 4, 1, "", "web"]], "genai.types.GroundingChunkRetrievedContext": [[0, 6, 1, "", "text"], [0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.GroundingChunkRetrievedContextDict": [[0, 4, 1, "", "text"], [0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.GroundingChunkWeb": [[0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.GroundingChunkWebDict": [[0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.GroundingMetadata": [[0, 6, 1, "", "grounding_chunks"], [0, 6, 1, "", "grounding_supports"], [0, 6, 1, "", "retrieval_metadata"], [0, 6, 1, "", "retrieval_queries"], [0, 6, 1, "", "search_entry_point"], [0, 6, 1, "", "web_search_queries"]], "genai.types.GroundingMetadataDict": [[0, 4, 1, "", "grounding_chunks"], [0, 4, 1, "", "grounding_supports"], [0, 4, 1, "", "retrieval_metadata"], [0, 4, 1, "", "retrieval_queries"], [0, 4, 1, "", "search_entry_point"], [0, 4, 1, "", "web_search_queries"]], "genai.types.GroundingSupport": [[0, 6, 1, "", "confidence_scores"], [0, 6, 1, "", "grounding_chunk_indices"], [0, 6, 1, "", "segment"]], "genai.types.GroundingSupportDict": [[0, 4, 1, "", "confidence_scores"], [0, 4, 1, "", "grounding_chunk_indices"], [0, 4, 1, "", "segment"]], "genai.types.HarmBlockMethod": [[0, 4, 1, "", "HARM_BLOCK_METHOD_UNSPECIFIED"], [0, 4, 1, "", "PROBABILITY"], [0, 4, 1, "", "SEVERITY"]], "genai.types.HarmBlockThreshold": [[0, 4, 1, "", "BLOCK_LOW_AND_ABOVE"], [0, 4, 1, "", "BLOCK_MEDIUM_AND_ABOVE"], [0, 4, 1, "", "BLOCK_NONE"], [0, 4, 1, "", "BLOCK_ONLY_HIGH"], [0, 4, 1, "", "HARM_BLOCK_THRESHOLD_UNSPECIFIED"], [0, 4, 1, "", "OFF"]], "genai.types.HarmCategory": [[0, 4, 1, "", "HARM_CATEGORY_CIVIC_INTEGRITY"], [0, 4, 1, "", "HARM_CATEGORY_DANGEROUS_CONTENT"], [0, 4, 1, "", "HARM_CATEGORY_HARASSMENT"], [0, 4, 1, "", "HARM_CATEGORY_HATE_SPEECH"], [0, 4, 1, "", "HARM_CATEGORY_SEXUALLY_EXPLICIT"], [0, 4, 1, "", "HARM_CATEGORY_UNSPECIFIED"]], "genai.types.HarmProbability": [[0, 4, 1, "", "HARM_PROBABILITY_UNSPECIFIED"], [0, 4, 1, "", "HIGH"], [0, 4, 1, "", "LOW"], [0, 4, 1, "", "MEDIUM"], [0, 4, 1, "", "NEGLIGIBLE"]], "genai.types.HarmSeverity": [[0, 4, 1, "", "HARM_SEVERITY_HIGH"], [0, 4, 1, "", "HARM_SEVERITY_LOW"], [0, 4, 1, "", "HARM_SEVERITY_MEDIUM"], [0, 4, 1, "", "HARM_SEVERITY_NEGLIGIBLE"], [0, 4, 1, "", "HARM_SEVERITY_UNSPECIFIED"]], "genai.types.HttpOptions": [[0, 6, 1, "", "api_version"], [0, 6, 1, "", "base_url"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "timeout"]], "genai.types.HttpOptionsDict": [[0, 4, 1, "", "api_version"], [0, 4, 1, "", "base_url"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "timeout"]], "genai.types.Image": [[0, 2, 1, "", "from_file"], [0, 6, 1, "", "gcs_uri"], [0, 6, 1, "", "image_bytes"], [0, 6, 1, "", "mime_type"], [0, 2, 1, "", "model_post_init"], [0, 2, 1, "", "save"], [0, 2, 1, "", "show"]], "genai.types.ImageDict": [[0, 4, 1, "", "gcs_uri"], [0, 4, 1, "", "image_bytes"], [0, 4, 1, "", "mime_type"]], "genai.types.ImagePromptLanguage": [[0, 4, 1, "", "auto"], [0, 4, 1, "", "en"], [0, 4, 1, "", "hi"], [0, 4, 1, "", "ja"], [0, 4, 1, "", "ko"]], "genai.types.JobError": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.JobErrorDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.JobState": [[0, 4, 1, "", "JOB_STATE_CANCELLED"], [0, 4, 1, "", "JOB_STATE_CANCELLING"], [0, 4, 1, "", "JOB_STATE_EXPIRED"], [0, 4, 1, "", "JOB_STATE_FAILED"], [0, 4, 1, "", "JOB_STATE_PARTIALLY_SUCCEEDED"], [0, 4, 1, "", "JOB_STATE_PAUSED"], [0, 4, 1, "", "JOB_STATE_PENDING"], [0, 4, 1, "", "JOB_STATE_QUEUED"], [0, 4, 1, "", "JOB_STATE_RUNNING"], [0, 4, 1, "", "JOB_STATE_SUCCEEDED"], [0, 4, 1, "", "JOB_STATE_UNSPECIFIED"], [0, 4, 1, "", "JOB_STATE_UPDATING"]], "genai.types.Language": [[0, 4, 1, "", "LANGUAGE_UNSPECIFIED"], [0, 4, 1, "", "PYTHON"]], "genai.types.ListBatchJobsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListBatchJobsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListBatchJobsResponse": [[0, 6, 1, "", "batch_jobs"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListBatchJobsResponseDict": [[0, 4, 1, "", "batch_jobs"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListCachedContentsConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListCachedContentsConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListCachedContentsResponse": [[0, 6, 1, "", "cached_contents"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListCachedContentsResponseDict": [[0, 4, 1, "", "cached_contents"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListFilesConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListFilesConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListFilesResponse": [[0, 6, 1, "", "files"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListFilesResponseDict": [[0, 4, 1, "", "files"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListModelsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"], [0, 6, 1, "", "query_base"]], "genai.types.ListModelsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"], [0, 4, 1, "", "query_base"]], "genai.types.ListModelsResponse": [[0, 6, 1, "", "models"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListModelsResponseDict": [[0, 4, 1, "", "models"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListTuningJobsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListTuningJobsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListTuningJobsResponse": [[0, 6, 1, "", "next_page_token"], [0, 6, 1, "", "tuning_jobs"]], "genai.types.ListTuningJobsResponseDict": [[0, 4, 1, "", "next_page_token"], [0, 4, 1, "", "tuning_jobs"]], "genai.types.LiveClientContent": [[0, 6, 1, "", "turn_complete"], [0, 6, 1, "", "turns"]], "genai.types.LiveClientContentDict": [[0, 4, 1, "", "turn_complete"], [0, 4, 1, "", "turns"]], "genai.types.LiveClientMessage": [[0, 6, 1, "", "client_content"], [0, 6, 1, "", "realtime_input"], [0, 6, 1, "", "setup"], [0, 6, 1, "", "tool_response"]], "genai.types.LiveClientMessageDict": [[0, 4, 1, "", "client_content"], [0, 4, 1, "", "realtime_input"], [0, 4, 1, "", "setup"], [0, 4, 1, "", "tool_response"]], "genai.types.LiveClientRealtimeInput": [[0, 6, 1, "", "media_chunks"]], "genai.types.LiveClientRealtimeInputDict": [[0, 4, 1, "", "media_chunks"]], "genai.types.LiveClientSetup": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "model"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.LiveClientSetupDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "model"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.LiveClientToolResponse": [[0, 6, 1, "", "function_responses"]], "genai.types.LiveClientToolResponseDict": [[0, 4, 1, "", "function_responses"]], "genai.types.LiveConnectConfig": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "response_modalities"], [0, 6, 1, "", "speech_config"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.LiveConnectConfigDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "response_modalities"], [0, 4, 1, "", "speech_config"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.LiveServerContent": [[0, 6, 1, "", "interrupted"], [0, 6, 1, "", "model_turn"], [0, 6, 1, "", "turn_complete"]], "genai.types.LiveServerContentDict": [[0, 4, 1, "", "interrupted"], [0, 4, 1, "", "model_turn"], [0, 4, 1, "", "turn_complete"]], "genai.types.LiveServerMessage": [[0, 3, 1, "", "data"], [0, 6, 1, "", "server_content"], [0, 6, 1, "", "setup_complete"], [0, 3, 1, "", "text"], [0, 6, 1, "", "tool_call"], [0, 6, 1, "", "tool_call_cancellation"]], "genai.types.LiveServerMessageDict": [[0, 4, 1, "", "server_content"], [0, 4, 1, "", "setup_complete"], [0, 4, 1, "", "tool_call"], [0, 4, 1, "", "tool_call_cancellation"]], "genai.types.LiveServerToolCall": [[0, 6, 1, "", "function_calls"]], "genai.types.LiveServerToolCallCancellation": [[0, 6, 1, "", "ids"]], "genai.types.LiveServerToolCallCancellationDict": [[0, 4, 1, "", "ids"]], "genai.types.LiveServerToolCallDict": [[0, 4, 1, "", "function_calls"]], "genai.types.LogprobsResult": [[0, 6, 1, "", "chosen_candidates"], [0, 6, 1, "", "top_candidates"]], "genai.types.LogprobsResultCandidate": [[0, 6, 1, "", "log_probability"], [0, 6, 1, "", "token"], [0, 6, 1, "", "token_id"]], "genai.types.LogprobsResultCandidateDict": [[0, 4, 1, "", "log_probability"], [0, 4, 1, "", "token"], [0, 4, 1, "", "token_id"]], "genai.types.LogprobsResultDict": [[0, 4, 1, "", "chosen_candidates"], [0, 4, 1, "", "top_candidates"]], "genai.types.LogprobsResultTopCandidates": [[0, 6, 1, "", "candidates"]], "genai.types.LogprobsResultTopCandidatesDict": [[0, 4, 1, "", "candidates"]], "genai.types.MaskReferenceConfig": [[0, 6, 1, "", "mask_dilation"], [0, 6, 1, "", "mask_mode"], [0, 6, 1, "", "segmentation_classes"]], "genai.types.MaskReferenceConfigDict": [[0, 4, 1, "", "mask_dilation"], [0, 4, 1, "", "mask_mode"], [0, 4, 1, "", "segmentation_classes"]], "genai.types.MaskReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "mask_image_config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.MaskReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.MaskReferenceMode": [[0, 4, 1, "", "MASK_MODE_BACKGROUND"], [0, 4, 1, "", "MASK_MODE_DEFAULT"], [0, 4, 1, "", "MASK_MODE_FOREGROUND"], [0, 4, 1, "", "MASK_MODE_SEMANTIC"], [0, 4, 1, "", "MASK_MODE_USER_PROVIDED"]], "genai.types.MediaResolution": [[0, 4, 1, "", "MEDIA_RESOLUTION_HIGH"], [0, 4, 1, "", "MEDIA_RESOLUTION_LOW"], [0, 4, 1, "", "MEDIA_RESOLUTION_MEDIUM"], [0, 4, 1, "", "MEDIA_RESOLUTION_UNSPECIFIED"]], "genai.types.Modality": [[0, 4, 1, "", "AUDIO"], [0, 4, 1, "", "IMAGE"], [0, 4, 1, "", "MODALITY_UNSPECIFIED"], [0, 4, 1, "", "TEXT"]], "genai.types.Mode": [[0, 4, 1, "", "MODE_DYNAMIC"], [0, 4, 1, "", "MODE_UNSPECIFIED"]], "genai.types.Model": [[0, 6, 1, "", "description"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "endpoints"], [0, 6, 1, "", "input_token_limit"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "name"], [0, 6, 1, "", "output_token_limit"], [0, 6, 1, "", "supported_actions"], [0, 6, 1, "", "tuned_model_info"], [0, 6, 1, "", "version"]], "genai.types.ModelDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "endpoints"], [0, 4, 1, "", "input_token_limit"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "name"], [0, 4, 1, "", "output_token_limit"], [0, 4, 1, "", "supported_actions"], [0, 4, 1, "", "tuned_model_info"], [0, 4, 1, "", "version"]], "genai.types.Operation": [[0, 6, 1, "", "done"], [0, 6, 1, "", "error"], [0, 6, 1, "", "metadata"], [0, 6, 1, "", "name"], [0, 6, 1, "", "response"]], "genai.types.OperationDict": [[0, 4, 1, "", "done"], [0, 4, 1, "", "error"], [0, 4, 1, "", "metadata"], [0, 4, 1, "", "name"], [0, 4, 1, "", "response"]], "genai.types.Outcome": [[0, 4, 1, "", "OUTCOME_DEADLINE_EXCEEDED"], [0, 4, 1, "", "OUTCOME_FAILED"], [0, 4, 1, "", "OUTCOME_OK"], [0, 4, 1, "", "OUTCOME_UNSPECIFIED"]], "genai.types.Part": [[0, 6, 1, "", "code_execution_result"], [0, 6, 1, "", "executable_code"], [0, 6, 1, "", "file_data"], [0, 2, 1, "", "from_bytes"], [0, 2, 1, "", "from_code_execution_result"], [0, 2, 1, "", "from_executable_code"], [0, 2, 1, "", "from_function_call"], [0, 2, 1, "", "from_function_response"], [0, 2, 1, "", "from_text"], [0, 2, 1, "", "from_uri"], [0, 2, 1, "", "from_video_metadata"], [0, 6, 1, "", "function_call"], [0, 6, 1, "", "function_response"], [0, 6, 1, "", "inline_data"], [0, 6, 1, "", "text"], [0, 6, 1, "", "thought"], [0, 6, 1, "", "video_metadata"]], "genai.types.PartDict": [[0, 4, 1, "", "code_execution_result"], [0, 4, 1, "", "executable_code"], [0, 4, 1, "", "file_data"], [0, 4, 1, "", "function_call"], [0, 4, 1, "", "function_response"], [0, 4, 1, "", "inline_data"], [0, 4, 1, "", "text"], [0, 4, 1, "", "thought"], [0, 4, 1, "", "video_metadata"]], "genai.types.PartnerModelTuningSpec": [[0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.PartnerModelTuningSpecDict": [[0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.PersonGeneration": [[0, 4, 1, "", "ALLOW_ADULT"], [0, 4, 1, "", "ALLOW_ALL"], [0, 4, 1, "", "DONT_ALLOW"]], "genai.types.PrebuiltVoiceConfig": [[0, 6, 1, "", "voice_name"]], "genai.types.PrebuiltVoiceConfigDict": [[0, 4, 1, "", "voice_name"]], "genai.types.RawReferenceImage": [[0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.RawReferenceImageDict": [[0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.ReplayFile": [[0, 6, 1, "", "interactions"], [0, 6, 1, "", "replay_id"]], "genai.types.ReplayFileDict": [[0, 4, 1, "", "interactions"], [0, 4, 1, "", "replay_id"]], "genai.types.ReplayInteraction": [[0, 6, 1, "", "request"], [0, 6, 1, "", "response"]], "genai.types.ReplayInteractionDict": [[0, 4, 1, "", "request"], [0, 4, 1, "", "response"]], "genai.types.ReplayRequest": [[0, 6, 1, "", "body_segments"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "method"], [0, 6, 1, "", "url"]], "genai.types.ReplayRequestDict": [[0, 4, 1, "", "body_segments"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "method"], [0, 4, 1, "", "url"]], "genai.types.ReplayResponse": [[0, 6, 1, "", "body_segments"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "sdk_response_segments"], [0, 6, 1, "", "status_code"]], "genai.types.ReplayResponseDict": [[0, 4, 1, "", "body_segments"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "sdk_response_segments"], [0, 4, 1, "", "status_code"]], "genai.types.Retrieval": [[0, 6, 1, "", "disable_attribution"], [0, 6, 1, "", "vertex_ai_search"], [0, 6, 1, "", "vertex_rag_store"]], "genai.types.RetrievalDict": [[0, 4, 1, "", "disable_attribution"], [0, 4, 1, "", "vertex_ai_search"], [0, 4, 1, "", "vertex_rag_store"]], "genai.types.RetrievalMetadata": [[0, 6, 1, "", "google_search_dynamic_retrieval_score"]], "genai.types.RetrievalMetadataDict": [[0, 4, 1, "", "google_search_dynamic_retrieval_score"]], "genai.types.SafetyFilterLevel": [[0, 4, 1, "", "BLOCK_LOW_AND_ABOVE"], [0, 4, 1, "", "BLOCK_MEDIUM_AND_ABOVE"], [0, 4, 1, "", "BLOCK_NONE"], [0, 4, 1, "", "BLOCK_ONLY_HIGH"]], "genai.types.SafetyRating": [[0, 6, 1, "", "blocked"], [0, 6, 1, "", "category"], [0, 6, 1, "", "probability"], [0, 6, 1, "", "probability_score"], [0, 6, 1, "", "severity"], [0, 6, 1, "", "severity_score"]], "genai.types.SafetyRatingDict": [[0, 4, 1, "", "blocked"], [0, 4, 1, "", "category"], [0, 4, 1, "", "probability"], [0, 4, 1, "", "probability_score"], [0, 4, 1, "", "severity"], [0, 4, 1, "", "severity_score"]], "genai.types.SafetySetting": [[0, 6, 1, "", "category"], [0, 6, 1, "", "method"], [0, 6, 1, "", "threshold"]], "genai.types.SafetySettingDict": [[0, 4, 1, "", "category"], [0, 4, 1, "", "method"], [0, 4, 1, "", "threshold"]], "genai.types.Schema": [[0, 6, 1, "", "any_of"], [0, 6, 1, "", "default"], [0, 6, 1, "", "description"], [0, 6, 1, "", "enum"], [0, 6, 1, "", "example"], [0, 6, 1, "", "format"], [0, 6, 1, "", "items"], [0, 6, 1, "", "max_items"], [0, 6, 1, "", "max_length"], [0, 6, 1, "", "max_properties"], [0, 6, 1, "", "maximum"], [0, 6, 1, "", "min_items"], [0, 6, 1, "", "min_length"], [0, 6, 1, "", "min_properties"], [0, 6, 1, "", "minimum"], [0, 6, 1, "", "nullable"], [0, 6, 1, "", "pattern"], [0, 6, 1, "", "properties"], [0, 6, 1, "", "property_ordering"], [0, 6, 1, "", "required"], [0, 6, 1, "", "title"], [0, 6, 1, "", "type"]], "genai.types.SchemaDict": [[0, 4, 1, "", "any_of"], [0, 4, 1, "", "default"], [0, 4, 1, "", "description"], [0, 4, 1, "", "enum"], [0, 4, 1, "", "example"], [0, 4, 1, "", "format"], [0, 4, 1, "", "max_items"], [0, 4, 1, "", "max_length"], [0, 4, 1, "", "max_properties"], [0, 4, 1, "", "maximum"], [0, 4, 1, "", "min_items"], [0, 4, 1, "", "min_length"], [0, 4, 1, "", "min_properties"], [0, 4, 1, "", "minimum"], [0, 4, 1, "", "nullable"], [0, 4, 1, "", "pattern"], [0, 4, 1, "", "properties"], [0, 4, 1, "", "property_ordering"], [0, 4, 1, "", "required"], [0, 4, 1, "", "title"], [0, 4, 1, "", "type"]], "genai.types.SearchEntryPoint": [[0, 6, 1, "", "rendered_content"], [0, 6, 1, "", "sdk_blob"]], "genai.types.SearchEntryPointDict": [[0, 4, 1, "", "rendered_content"], [0, 4, 1, "", "sdk_blob"]], "genai.types.Segment": [[0, 6, 1, "", "end_index"], [0, 6, 1, "", "part_index"], [0, 6, 1, "", "start_index"], [0, 6, 1, "", "text"]], "genai.types.SegmentDict": [[0, 4, 1, "", "end_index"], [0, 4, 1, "", "part_index"], [0, 4, 1, "", "start_index"], [0, 4, 1, "", "text"]], "genai.types.SpeechConfig": [[0, 6, 1, "", "voice_config"]], "genai.types.SpeechConfigDict": [[0, 4, 1, "", "voice_config"]], "genai.types.State": [[0, 4, 1, "", "ACTIVE"], [0, 4, 1, "", "ERROR"], [0, 4, 1, "", "STATE_UNSPECIFIED"]], "genai.types.StyleReferenceConfig": [[0, 6, 1, "", "style_description"]], "genai.types.StyleReferenceConfigDict": [[0, 4, 1, "", "style_description"]], "genai.types.StyleReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"], [0, 6, 1, "", "style_image_config"]], "genai.types.StyleReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.SubjectReferenceConfig": [[0, 6, 1, "", "subject_description"], [0, 6, 1, "", "subject_type"]], "genai.types.SubjectReferenceConfigDict": [[0, 4, 1, "", "subject_description"], [0, 4, 1, "", "subject_type"]], "genai.types.SubjectReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"], [0, 6, 1, "", "subject_image_config"]], "genai.types.SubjectReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.SubjectReferenceType": [[0, 4, 1, "", "SUBJECT_TYPE_ANIMAL"], [0, 4, 1, "", "SUBJECT_TYPE_DEFAULT"], [0, 4, 1, "", "SUBJECT_TYPE_PERSON"], [0, 4, 1, "", "SUBJECT_TYPE_PRODUCT"]], "genai.types.SupervisedHyperParameters": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "learning_rate_multiplier"]], "genai.types.SupervisedHyperParametersDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "learning_rate_multiplier"]], "genai.types.SupervisedTuningDataStats": [[0, 6, 1, "", "total_billable_character_count"], [0, 6, 1, "", "total_billable_token_count"], [0, 6, 1, "", "total_truncated_example_count"], [0, 6, 1, "", "total_tuning_character_count"], [0, 6, 1, "", "truncated_example_indices"], [0, 6, 1, "", "tuning_dataset_example_count"], [0, 6, 1, "", "tuning_step_count"], [0, 6, 1, "", "user_dataset_examples"], [0, 6, 1, "", "user_input_token_distribution"], [0, 6, 1, "", "user_message_per_example_distribution"], [0, 6, 1, "", "user_output_token_distribution"]], "genai.types.SupervisedTuningDataStatsDict": [[0, 4, 1, "", "total_billable_character_count"], [0, 4, 1, "", "total_billable_token_count"], [0, 4, 1, "", "total_truncated_example_count"], [0, 4, 1, "", "total_tuning_character_count"], [0, 4, 1, "", "truncated_example_indices"], [0, 4, 1, "", "tuning_dataset_example_count"], [0, 4, 1, "", "tuning_step_count"], [0, 4, 1, "", "user_dataset_examples"], [0, 4, 1, "", "user_input_token_distribution"], [0, 4, 1, "", "user_message_per_example_distribution"], [0, 4, 1, "", "user_output_token_distribution"]], "genai.types.SupervisedTuningDatasetDistribution": [[0, 6, 1, "", "billable_sum"], [0, 6, 1, "", "buckets"], [0, 6, 1, "", "max"], [0, 6, 1, "", "mean"], [0, 6, 1, "", "median"], [0, 6, 1, "", "min"], [0, 6, 1, "", "p5"], [0, 6, 1, "", "p95"], [0, 6, 1, "", "sum"]], "genai.types.SupervisedTuningDatasetDistributionDatasetBucket": [[0, 6, 1, "", "count"], [0, 6, 1, "", "left"], [0, 6, 1, "", "right"]], "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict": [[0, 4, 1, "", "count"], [0, 4, 1, "", "left"], [0, 4, 1, "", "right"]], "genai.types.SupervisedTuningDatasetDistributionDict": [[0, 4, 1, "", "billable_sum"], [0, 4, 1, "", "buckets"], [0, 4, 1, "", "max"], [0, 4, 1, "", "mean"], [0, 4, 1, "", "median"], [0, 4, 1, "", "min"], [0, 4, 1, "", "p5"], [0, 4, 1, "", "p95"], [0, 4, 1, "", "sum"]], "genai.types.SupervisedTuningSpec": [[0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.SupervisedTuningSpecDict": [[0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.TestTableFile": [[0, 6, 1, "", "comment"], [0, 6, 1, "", "parameter_names"], [0, 6, 1, "", "test_method"], [0, 6, 1, "", "test_table"]], "genai.types.TestTableFileDict": [[0, 4, 1, "", "comment"], [0, 4, 1, "", "parameter_names"], [0, 4, 1, "", "test_method"], [0, 4, 1, "", "test_table"]], "genai.types.TestTableItem": [[0, 6, 1, "", "exception_if_mldev"], [0, 6, 1, "", "exception_if_vertex"], [0, 6, 1, "", "has_union"], [0, 6, 1, "", "name"], [0, 6, 1, "", "override_replay_id"], [0, 6, 1, "", "parameters"], [0, 6, 1, "", "skip_in_api_mode"]], "genai.types.TestTableItemDict": [[0, 4, 1, "", "exception_if_mldev"], [0, 4, 1, "", "exception_if_vertex"], [0, 4, 1, "", "has_union"], [0, 4, 1, "", "name"], [0, 4, 1, "", "override_replay_id"], [0, 4, 1, "", "parameters"], [0, 4, 1, "", "skip_in_api_mode"]], "genai.types.ThinkingConfig": [[0, 6, 1, "", "include_thoughts"]], "genai.types.ThinkingConfigDict": [[0, 4, 1, "", "include_thoughts"]], "genai.types.TokensInfo": [[0, 6, 1, "", "role"], [0, 6, 1, "", "token_ids"], [0, 6, 1, "", "tokens"]], "genai.types.TokensInfoDict": [[0, 4, 1, "", "role"], [0, 4, 1, "", "token_ids"], [0, 4, 1, "", "tokens"]], "genai.types.Tool": [[0, 6, 1, "", "code_execution"], [0, 6, 1, "", "function_declarations"], [0, 6, 1, "", "google_search"], [0, 6, 1, "", "google_search_retrieval"], [0, 6, 1, "", "retrieval"]], "genai.types.ToolConfig": [[0, 6, 1, "", "function_calling_config"]], "genai.types.ToolConfigDict": [[0, 4, 1, "", "function_calling_config"]], "genai.types.ToolDict": [[0, 4, 1, "", "code_execution"], [0, 4, 1, "", "function_declarations"], [0, 4, 1, "", "google_search"], [0, 4, 1, "", "google_search_retrieval"], [0, 4, 1, "", "retrieval"]], "genai.types.TunedModel": [[0, 6, 1, "", "endpoint"], [0, 6, 1, "", "model"]], "genai.types.TunedModelDict": [[0, 4, 1, "", "endpoint"], [0, 4, 1, "", "model"]], "genai.types.TunedModelInfo": [[0, 6, 1, "", "base_model"], [0, 6, 1, "", "create_time"], [0, 6, 1, "", "update_time"]], "genai.types.TunedModelInfoDict": [[0, 4, 1, "", "base_model"], [0, 4, 1, "", "create_time"], [0, 4, 1, "", "update_time"]], "genai.types.TuningDataStats": [[0, 6, 1, "", "distillation_data_stats"], [0, 6, 1, "", "supervised_tuning_data_stats"]], "genai.types.TuningDataStatsDict": [[0, 4, 1, "", "distillation_data_stats"], [0, 4, 1, "", "supervised_tuning_data_stats"]], "genai.types.TuningDataset": [[0, 6, 1, "", "examples"], [0, 6, 1, "", "gcs_uri"]], "genai.types.TuningDatasetDict": [[0, 4, 1, "", "examples"], [0, 4, 1, "", "gcs_uri"]], "genai.types.TuningExample": [[0, 6, 1, "", "output"], [0, 6, 1, "", "text_input"]], "genai.types.TuningExampleDict": [[0, 4, 1, "", "output"], [0, 4, 1, "", "text_input"]], "genai.types.TuningJob": [[0, 6, 1, "", "base_model"], [0, 6, 1, "", "create_time"], [0, 6, 1, "", "description"], [0, 6, 1, "", "distillation_spec"], [0, 6, 1, "", "encryption_spec"], [0, 6, 1, "", "end_time"], [0, 6, 1, "", "error"], [0, 6, 1, "", "experiment"], [0, 3, 1, "", "has_ended"], [0, 3, 1, "", "has_succeeded"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "name"], [0, 6, 1, "", "partner_model_tuning_spec"], [0, 6, 1, "", "pipeline_job"], [0, 6, 1, "", "start_time"], [0, 6, 1, "", "state"], [0, 6, 1, "", "supervised_tuning_spec"], [0, 6, 1, "", "tuned_model"], [0, 6, 1, "", "tuned_model_display_name"], [0, 6, 1, "", "tuning_data_stats"], [0, 6, 1, "", "update_time"]], "genai.types.TuningJobDict": [[0, 4, 1, "", "base_model"], [0, 4, 1, "", "create_time"], [0, 4, 1, "", "description"], [0, 4, 1, "", "distillation_spec"], [0, 4, 1, "", "encryption_spec"], [0, 4, 1, "", "end_time"], [0, 4, 1, "", "error"], [0, 4, 1, "", "experiment"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "name"], [0, 4, 1, "", "partner_model_tuning_spec"], [0, 4, 1, "", "pipeline_job"], [0, 4, 1, "", "start_time"], [0, 4, 1, "", "state"], [0, 4, 1, "", "supervised_tuning_spec"], [0, 4, 1, "", "tuned_model"], [0, 4, 1, "", "tuned_model_display_name"], [0, 4, 1, "", "tuning_data_stats"], [0, 4, 1, "", "update_time"]], "genai.types.TuningValidationDataset": [[0, 6, 1, "", "gcs_uri"]], "genai.types.TuningValidationDatasetDict": [[0, 4, 1, "", "gcs_uri"]], "genai.types.Type": [[0, 4, 1, "", "ARRAY"], [0, 4, 1, "", "BOOLEAN"], [0, 4, 1, "", "INTEGER"], [0, 4, 1, "", "NUMBER"], [0, 4, 1, "", "OBJECT"], [0, 4, 1, "", "STRING"], [0, 4, 1, "", "TYPE_UNSPECIFIED"]], "genai.types.UpdateCachedContentConfig": [[0, 6, 1, "", "expire_time"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "ttl"]], "genai.types.UpdateCachedContentConfigDict": [[0, 4, 1, "", "expire_time"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "ttl"]], "genai.types.UpdateModelConfig": [[0, 6, 1, "", "description"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"]], "genai.types.UpdateModelConfigDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"]], "genai.types.UploadFileConfig": [[0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "name"]], "genai.types.UploadFileConfigDict": [[0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "name"]], "genai.types.UpscaleImageConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_mime_type"]], "genai.types.UpscaleImageConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_mime_type"]], "genai.types.UpscaleImageParameters": [[0, 6, 1, "", "config"], [0, 6, 1, "", "image"], [0, 6, 1, "", "model"], [0, 6, 1, "", "upscale_factor"]], "genai.types.UpscaleImageParametersDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "image"], [0, 4, 1, "", "model"], [0, 4, 1, "", "upscale_factor"]], "genai.types.UpscaleImageResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.UpscaleImageResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.VertexAISearch": [[0, 6, 1, "", "datastore"]], "genai.types.VertexAISearchDict": [[0, 4, 1, "", "datastore"]], "genai.types.VertexRagStore": [[0, 6, 1, "", "rag_corpora"], [0, 6, 1, "", "rag_resources"], [0, 6, 1, "", "similarity_top_k"], [0, 6, 1, "", "vector_distance_threshold"]], "genai.types.VertexRagStoreDict": [[0, 4, 1, "", "rag_corpora"], [0, 4, 1, "", "rag_resources"], [0, 4, 1, "", "similarity_top_k"], [0, 4, 1, "", "vector_distance_threshold"]], "genai.types.VertexRagStoreRagResource": [[0, 6, 1, "", "rag_corpus"], [0, 6, 1, "", "rag_file_ids"]], "genai.types.VertexRagStoreRagResourceDict": [[0, 4, 1, "", "rag_corpus"], [0, 4, 1, "", "rag_file_ids"]], "genai.types.VideoMetadata": [[0, 6, 1, "", "end_offset"], [0, 6, 1, "", "start_offset"]], "genai.types.VideoMetadataDict": [[0, 4, 1, "", "end_offset"], [0, 4, 1, "", "start_offset"]], "genai.types.VoiceConfig": [[0, 6, 1, "", "prebuilt_voice_config"]], "genai.types.VoiceConfigDict": [[0, 4, 1, "", "prebuilt_voice_config"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "pydantic_model", "Python model"], "6": ["py", "pydantic_field", "Python field"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:pydantic_model", "6": "py:pydantic_field"}, "terms": {"": [0, 1], "0": [0, 1], "0002": 0, "001": [0, 1], "002": [0, 1], "004": [0, 1], "006": [], "01": [], "03": 0, "05530": 1, "06": 0, "0930": 0, "1": [0, 1], "10": [0, 1], "100": 1, "101": 0, "11805v3": 1, "12": 0, "123": 0, "123456789": 0, "1234567890123456789": 0, "128": 0, "156": [], "16": 0, "1841": 0, "1_5": 1, "2": [0, 1], "20": 1, "201": 0, "2024": 0, "21": [], "2312": 1, "2403": 1, "256": 0, "2b": 0, "3": [0, 1], "30": 1, "300": 1, "301": 0, "31": 0, "3600": 1, "4": 0, "40": 0, "405b": 0, "456": 0, "5": [0, 1], "512": 0, "5th": 0, "64": 0, "7600": 0, "8": 0, "86400": 0, "9": 0, "95": 1, "95th": 0, "9999": 0, "A": 0, "And": 1, "By": 0, "FOR": 0, "For": [0, 1], "If": [0, 1], "In": 0, "It": [0, 1], "No": 0, "Not": 0, "One": 0, "The": [0, 1], "Then": [0, 1], "There": [0, 1], "These": 0, "To": 1, "Will": 0, "With": 0, "_": 0, "_api_cli": [], "_basechat": 0, "_convert_literal_to_enum": 0, "_uniongenericalia": 0, "a11": 1, "abl": 0, "about": [0, 1], "abov": 1, "accept": 0, "access": 0, "accumul": 0, "across": 0, "action": 0, "activ": [0, 1, 2], "ad": 0, "adapt": 0, "adapter_s": [0, 1, 2], "adapter_size_eight": [0, 1, 2], "adapter_size_four": [0, 1, 2], "adapter_size_on": [0, 1, 2], "adapter_size_sixteen": [0, 1, 2], "adapter_size_thirty_two": [0, 1, 2], "adapter_size_unspecifi": [0, 1, 2], "adapters": [0, 1, 2], "add": 0, "add_watermark": [0, 1, 2], "addit": 0, "addition": 0, "additionalproperti": 0, "addwatermark": 0, "adher": 0, "adjust": 0, "after": 1, "ag": 1, "against": 0, "agent": 0, "ai": 0, "aim": 0, "aio": [0, 1, 2], "alia": 0, "align": 0, "all": [0, 1], "allow": 0, "allow_adult": [0, 1, 2], "allow_al": [0, 1, 2], "allowed_function_nam": [0, 1, 2], "allowedfunctionnam": 0, "allowlist": 1, "alongsid": 0, "alphanumer": 0, "alreadi": 0, "also": [0, 1], "alwai": [0, 1], "amount": 0, "an": [0, 1], "analog": 1, "ani": [0, 1, 2], "anniversari": 0, "anoth": 0, "answer": 0, "any_of": [0, 1, 2], "anyof": 0, "apart": 0, "api": 0, "api_cli": 0, "api_client_": 0, "api_kei": [0, 1, 2], "api_opt": 0, "api_vers": [0, 1, 2], "apivers": 0, "app": 0, "appear": 0, "append": 0, "appli": 0, "applic": [0, 1], "appropri": 0, "ar": [0, 1], "area": 0, "arg": [0, 1, 2], "argument": 0, "arithmet": 0, "arrai": [0, 1, 2], "arrang": 0, "artifact": 0, "aspect": 0, "aspect_ratio": [0, 1, 2], "aspectratio": 0, "assign": 0, "assioci": [], "associ": 0, "assum": [0, 1], "async": 0, "async_pag": 1, "asyncbatch": [0, 1, 2], "asynccach": [0, 1, 2], "asyncchat": [0, 1, 2], "asynccli": [0, 1, 2], "asyncfil": [0, 1, 2], "asynchron": 0, "asynciter": 0, "asyncl": [0, 1, 2], "asyncmodel": [0, 1, 2], "asyncpag": 0, "asyncsess": [0, 1, 2], "asynctun": [0, 1, 2], "attempt": 0, "attribut": 0, "audio": [0, 1, 2], "audio_duration_second": [0, 1, 2], "audio_stream": 0, "audio_timestamp": [0, 1, 2], "audiodurationsecond": 0, "audiotimestamp": 0, "auth": 0, "authent": 0, "auto": [0, 1, 2], "auto_mod": [0, 1, 2], "auto_trunc": [0, 1, 2], "autom": 0, "automat": [0, 1], "automatic_function_cal": [0, 1, 2], "automatic_function_calling_histori": [0, 1, 2], "automatic_resourc": [0, 1, 2], "automaticfunctioncal": 0, "automaticfunctioncallingconfig": [0, 1, 2], "automaticfunctioncallingconfigdict": [0, 1, 2], "automaticfunctioncallinghistori": 0, "automod": 0, "autotrunc": 0, "avail": [0, 1], "averag": 0, "avg_logprob": [0, 1, 2], "avglogprob": 0, "await": [0, 1], "awiat": 0, "b": 0, "backend": 0, "background": 1, "bad": 1, "bagel": 0, "bake": 0, "balanc": 0, "base": 0, "base64": 0, "base64url": 0, "base_model": [0, 1, 2], "base_teacher_model": [0, 1, 2], "base_url": [0, 1, 2], "basemodel": [0, 1], "basemodul": 0, "baseteachermodel": 0, "baseurl": 0, "basic": 0, "batch": 2, "batch_job": [0, 1, 2], "batch_jobs_pag": 0, "batch_siz": [0, 1, 2], "batchjob": [0, 1, 2], "batchjobdestin": [0, 1, 2], "batchjobdestinationdict": [0, 1, 2], "batchjobdict": [0, 1, 2], "batchjobsourc": [0, 1, 2], "batchjobsourcedict": [0, 1, 2], "batchpredictionjob": 0, "batchsiz": 0, "becaus": 0, "been": 0, "befor": 0, "behav": [0, 1], "behavior": 0, "behind": 1, "being": 0, "belong": 0, "best": 0, "better": 0, "between": 0, "bidi": 0, "bidiclientcontentupd": [], "bidiclientcontentupdatedict": [], "bidiclientmessag": [], "bidiclientmessagedict": [], "bidiclientrealtimeuserinput": [], "bidiclientrealtimeuserinputdict": [], "bidiclientsetup": [], "bidiclientsetupdict": [], "bidiclienttoolrespons": [], "bidiclienttoolresponsedict": [], "bidiconnectconfig": [], "bidiconnectconfigdict": [], "bidigeneratecontentclientcont": [], "bidigeneratecontentclientmessag": [], "bidigeneratecontentrealtimeinput": [], "bidigeneratecontentservercont": [], "bidigeneratecontentservermessag": [], "bidigeneratecontentsetup": [], "bidigeneratecontentsetupcomplet": [], "bidigeneratecontenttoolcal": [], "bidigeneratecontenttoolcallcancel": [], "bidigeneratecontenttoolrespons": [], "bidiservercontentupd": [], "bidiservercontentupdatedict": [], "bidiservermessag": [], "bidiservermessagedict": [], "bidiserversetupcomplet": [], "bidiserversetupcompletedict": [], "bidiservertoolcal": [], "bidiservertoolcallcancel": [], "bidiservertoolcallcancellationdict": [], "bidiservertoolcalldict": [], "bigqueri": 0, "bigquery_uri": [0, 1, 2], "bigqueryuri": 0, "bill": 0, "billabl": 0, "billable_character_count": [0, 1, 2], "billable_sum": [0, 1, 2], "billablecharactercount": 0, "billablesum": 0, "binari": 0, "birthdai": 0, "blank": 0, "blob": [0, 1, 2], "blobdict": [0, 1, 2], "block": [0, 1, 2], "block_low_and_abov": [0, 1, 2], "block_medium_and_abov": [0, 1, 2], "block_non": [0, 1, 2], "block_only_high": [0, 1, 2], "block_reason": [0, 1, 2], "block_reason_messag": [0, 1, 2], "blocked_reason_unspecifi": [0, 1, 2], "blockedreason": [0, 1, 2], "blocklist": [0, 1, 2], "blockreason": 0, "blockreasonmessag": 0, "bloom": 0, "blue": [0, 1], "blueberri": 0, "body_seg": [0, 1, 2], "bodyseg": 0, "bool": 0, "boolean": [0, 1, 2], "boston": 1, "both": 0, "bound": 0, "boundari": 0, "bouquet": 0, "bq": [0, 1], "bqdatasetid": 0, "bqtableid": 0, "brass": 1, "break": 0, "bucket": [0, 1, 2], "buffer": 0, "builder": 0, "byte": [0, 1], "bytesio": [], "ca": 1, "cach": 2, "cached_cont": [0, 1, 2], "cached_content_token_count": [0, 1, 2], "cachedcont": [0, 1, 2], "cachedcontentdict": [0, 1, 2], "cachedcontenttokencount": 0, "cachedcontentusagemetadata": [0, 1, 2], "cachedcontentusagemetadatadict": [0, 1, 2], "calcul": 0, "calendar": 0, "call": 0, "callabl": 0, "can": [0, 1], "cancel": [0, 1, 2], "cancelbatchjobconfig": [0, 1, 2], "cancelbatchjobconfigdict": [0, 1, 2], "candid": [0, 1, 2], "candidate_count": [0, 1, 2], "candidatecount": 0, "candidatedict": [0, 1, 2], "candidates_token_count": [0, 1, 2], "candidatestokencount": 0, "cannot": 0, "capabl": [0, 1], "capit": 1, "card": 0, "carri": 0, "case": 0, "caseinsensitiveenum": 0, "cat": 0, "categori": [0, 1, 2], "cell": [], "central1": [0, 1], "chang": 0, "char": 0, "charact": 0, "charg": 0, "chat": 2, "check": 0, "choos": 0, "chosen": 0, "chosen_candid": [0, 1, 2], "chosencandid": 0, "chunk": [0, 1], "citat": [0, 1, 2], "citation_metadata": [0, 1, 2], "citationdict": [0, 1, 2], "citationmetadata": [0, 1, 2], "citationmetadatadict": [0, 1, 2], "citi": 1, "claim": 0, "class": [0, 1], "classic": 0, "classmethod": 0, "clear": 1, "client": 2, "client_cont": [0, 1, 2], "client_mod": [0, 1, 2], "clientcont": 0, "clientcontentupd": 0, "close": [0, 1, 2], "cloud": [0, 1], "code": [0, 1, 2], "code_execut": [0, 1, 2], "code_execution_result": [0, 1, 2], "codeexecut": 0, "codeexecutionresult": [0, 1, 2], "codeexecutionresultdict": [0, 1, 2], "codepoint": 0, "collect": 0, "color": 0, "com": [0, 1], "comment": [0, 1, 2], "commit": 0, "common": 0, "compar": 0, "compat": 0, "complet": 0, "completed_st": 1, "compress": 0, "compromis": 0, "comput": 0, "compute_token": [0, 1, 2], "computetokensconfig": [0, 1, 2], "computetokensconfigdict": [0, 1, 2], "computetokensrequest": 0, "computetokensrespons": [0, 1, 2], "computetokensresponsedict": [0, 1, 2], "concaten": 0, "concis": 0, "confid": 0, "confidence_scor": [0, 1, 2], "confidencescor": 0, "config": [0, 2], "configur": [0, 1], "connect": [0, 1, 2], "consid": 0, "consist": 0, "consol": 1, "constitut": 0, "constructor": 0, "consum": 0, "contain": [0, 1], "content": [0, 2], "contentdict": [0, 1, 2], "contentembed": [0, 1, 2], "contentembeddingdict": [0, 1, 2], "contentembeddingstatist": [0, 1, 2], "contentembeddingstatisticsdict": [0, 1, 2], "context": 0, "contin": 1, "continu": 0, "control": [0, 1], "control_image_config": [0, 1, 2], "control_reference_config": 0, "control_typ": [0, 1, 2], "control_type_canni": [0, 1, 2], "control_type_default": [0, 1, 2], "control_type_face_mesh": [0, 1, 2], "control_type_scribbl": [0, 1, 2], "controlimageconfig": 0, "controlreferenceconfig": [0, 1, 2], "controlreferenceconfigdict": [0, 1, 2], "controlreferenceimag": [0, 1, 2], "controlreferenceimagedict": [0, 1, 2], "controlreferencetyp": [0, 1, 2], "controltyp": 0, "convei": 0, "convers": [0, 1], "convert": 0, "core": 0, "corpora": 0, "corpu": 0, "correspond": 0, "could": [0, 1], "count": [0, 2], "count_token": [0, 1, 2], "countryinfo": 1, "counttokensconfig": [0, 1, 2], "counttokensconfigdict": [0, 1, 2], "counttokensrespons": [0, 1, 2], "counttokensresponsedict": [0, 1, 2], "cp": 1, "creat": [0, 2], "creatat": [], "create_batch_job_demo": [], "create_tim": [0, 1, 2], "createbatchjobconfig": [0, 1, 2], "createbatchjobconfigdict": [0, 1, 2], "createcachedcontentconfig": [0, 1, 2], "createcachedcontentconfigdict": [0, 1, 2], "createdistillationjobconfig": [], "createdistillationjobconfigdict": [], "createfileconfig": [0, 1, 2], "createfileconfigdict": [0, 1, 2], "createfilerespons": [0, 1, 2], "createfileresponsedict": [0, 1, 2], "createtim": 0, "createtuningjobconfig": [0, 1, 2], "createtuningjobconfigdict": [0, 1, 2], "creation": 0, "creativ": 0, "credenti": [0, 1, 2], "credit": 0, "cryptokei": 0, "current": [0, 1], "custom": 0, "d": 1, "dai": [0, 1, 2], "dash": 0, "data": [0, 1, 2], "dataset": [0, 1], "datasetdistribut": [0, 1, 2], "datasetdistributiondict": [0, 1, 2], "datasetdistributiondistributionbucket": [0, 1, 2], "datasetdistributiondistributionbucketdict": [0, 1, 2], "datasetstat": [0, 1, 2], "datasetstatsdict": [0, 1, 2], "datastor": [0, 1, 2], "datatyp": 0, "date": 0, "datetim": 0, "de": 0, "debug_config": [0, 1, 2], "debugconfig": [0, 1, 2], "decid": 0, "decim": 0, "declar": [0, 1], "decod": 0, "dedic": 0, "dedicated_resourc": [0, 1, 2], "def": [0, 1], "default": [0, 1, 2], "defin": 0, "definit": 0, "degre": 0, "delet": [0, 2], "delete_job": 1, "deletebatchjobconfig": [0, 1, 2], "deletebatchjobconfigdict": [0, 1, 2], "deletecachedcontentconfig": [0, 1, 2], "deletecachedcontentconfigdict": [0, 1, 2], "deletecachedcontentrespons": [0, 1, 2], "deletecachedcontentresponsedict": [0, 1, 2], "deletefileconfig": [0, 1, 2], "deletefileconfigdict": [0, 1, 2], "deletefilerespons": [0, 1, 2], "deletefileresponsedict": [0, 1, 2], "deletemodelconfig": [0, 1, 2], "deletemodelconfigdict": [0, 1, 2], "deletemodelrespons": [0, 1, 2], "deletemodelresponsedict": [0, 1, 2], "deleteresourcejob": [0, 1, 2], "deleteresourcejobdict": [0, 1, 2], "deliv": 0, "depend": 0, "deploi": 0, "deployed_model_id": [0, 1, 2], "deployedmodelid": 0, "deployment_resources_type_unspecifi": [0, 1, 2], "deploymentresourcestyp": [0, 1, 2], "deprec": 0, "deprecated_response_payload": 0, "deprecatedresponsepayload": [], "deriv": 0, "descend": 0, "describ": 0, "descript": [0, 1, 2], "design": 0, "dest": [0, 1, 2], "destin": [0, 1], "detail": [0, 1, 2], "determin": 0, "dev": [], "develop": [0, 1], "dict": 0, "dictionari": 1, "differ": [0, 1], "dilat": 0, "dimens": 0, "diplay_nam": 0, "direct": 0, "directli": [0, 1], "directori": 0, "disabl": [0, 1, 2], "disable_attribut": [0, 1, 2], "disableattribut": 0, "discourag": 0, "displai": [0, 1], "display_nam": [0, 1, 2], "displaynam": 0, "distanc": 0, "distial": [], "distil": 0, "distillation_data_stat": [0, 1, 2], "distillation_job": [], "distillation_pipeline_root": [], "distillation_spec": [0, 1, 2], "distillationdataset": [], "distillationdatasetdict": [], "distillationdatastat": [0, 1, 2], "distillationdatastatsdict": [0, 1, 2], "distillationhyperparamet": [0, 1, 2], "distillationhyperparametersdict": [0, 1, 2], "distillationspec": [0, 1, 2], "distillationspecdict": [0, 1, 2], "distillationvalidationdataset": [], "distillationvalidationdatasetdict": [], "distribut": 0, "divers": 0, "do": [0, 1], "doc": 0, "document": 0, "dog": 0, "don": [0, 1], "done": [0, 1, 2], "dont_allow": [0, 1, 2], "dot": 0, "doubl": 0, "down": 0, "download": [0, 1, 2], "download_uri": [0, 1, 2], "downloadfileconfig": [0, 1, 2], "downloadfileconfigdict": [0, 1, 2], "downloadfileconfigordict": 0, "downloaduri": 0, "dri": 0, "due": 0, "durat": 0, "dure": 0, "dynam": 0, "dynamic_retrieval_config": [0, 1, 2], "dynamic_threshold": [0, 1, 2], "dynamicretrievalconfig": [0, 1, 2], "dynamicretrievalconfigdict": [0, 1, 2], "dynamicretrievalconfigmod": [0, 1, 2], "dynamicthreshold": 0, "e": [0, 1], "each": 0, "earli": [], "earlier": 0, "east": 0, "edit": [0, 1], "edit_imag": [0, 1, 2], "edit_mod": [0, 1, 2], "edit_mode_bgswap": [0, 1, 2], "edit_mode_controlled_edit": [0, 1, 2], "edit_mode_default": [0, 1, 2], "edit_mode_inpaint_insert": [0, 1, 2], "edit_mode_inpaint_remov": [0, 1, 2], "edit_mode_outpaint": [0, 1, 2], "edit_mode_product_imag": [0, 1, 2], "edit_mode_styl": [0, 1, 2], "editimageconfig": [0, 1, 2], "editimageconfigdict": [0, 1, 2], "editimagerespons": [0, 1, 2], "editimageresponsedict": [0, 1, 2], "editmod": [0, 1, 2], "effect": 0, "effort": 0, "either": [0, 1], "eleg": 0, "element": 0, "els": [0, 1], "elsewher": 0, "email": 0, "emb": 0, "embed": [0, 1, 2], "embed_cont": [0, 1, 2], "embedcontentconfig": [0, 1, 2], "embedcontentconfigdict": [0, 1, 2], "embedcontentmetadata": [0, 1, 2], "embedcontentmetadatadict": [0, 1, 2], "embedcontentrespons": [0, 1, 2], "embedcontentresponsedict": [0, 1, 2], "empti": 0, "en": [0, 1, 2], "enabl": 0, "enable_control_image_comput": [0, 1, 2], "enablecontrolimagecomput": 0, "encapsul": 0, "encod": 0, "encount": 0, "encrypt": 0, "encryption_spec": [0, 1, 2], "encryptionspec": [0, 1, 2], "encryptionspecdict": [0, 1, 2], "end": [0, 1], "end_index": [0, 1, 2], "end_of_turn": 0, "end_offset": [0, 1, 2], "end_tim": [0, 1, 2], "endindex": 0, "endoffset": 0, "endpoint": [0, 1, 2], "endpointdict": [0, 1, 2], "endtim": 0, "english": 0, "enhanc": 0, "enhance_prompt": [0, 1, 2], "enhanced_prompt": [0, 1, 2], "enhancedprompt": 0, "enhanceprompt": 0, "enter": 0, "entir": 0, "entri": 0, "enum": [0, 2], "enumer": 0, "environ": 0, "epoch_count": [0, 1, 2], "epochcount": 0, "equal": 0, "error": [0, 1, 2], "etc": 0, "even": 0, "everlast": 0, "exactli": 0, "exampl": [0, 1, 2], "exce": 1, "except": [0, 1], "exception_if_mldev": [0, 1, 2], "exception_if_vertex": [0, 1, 2], "exceptionifmldev": 0, "exceptionifvertex": 0, "excess": 0, "exchang": 0, "exclud": 0, "exclus": 0, "execut": 0, "executable_cod": [0, 1, 2], "executablecod": [0, 1, 2], "executablecodedict": [0, 1, 2], "exist": 0, "exp": 0, "expect": 0, "experi": [0, 1, 2], "experiment": 0, "expir": 0, "expiration_tim": [0, 1, 2], "expirationtim": 0, "expire_tim": [0, 1, 2], "expiretim": 0, "explicitli": 0, "export": 0, "expos": 1, "express": 0, "extens": 0, "extern": 0, "extra": [], "f": [0, 1], "face": 0, "factor": 0, "fail": [0, 1, 2], "failur": 0, "fals": [0, 1], "fast": 0, "favorit": 0, "featur": 0, "feel": 1, "fetch": 0, "fetchpredictoperationconfig": [0, 1, 2], "fetchpredictoperationconfigdict": [0, 1, 2], "few": 0, "field": 0, "file": 2, "file1": 1, "file2": 1, "file3": 1, "file_data": [0, 1, 2], "file_uri": [0, 1, 2], "filedata": [0, 1, 2], "filedatadict": [0, 1, 2], "filedict": [0, 1, 2], "filesourc": [0, 1, 2], "filest": [0, 1, 2], "filestatu": [0, 1, 2], "filestatusdict": [0, 1, 2], "fileuri": 0, "fill": 0, "filter": [0, 1, 2], "final": 0, "find": 0, "fine": [0, 1], "finish_messag": [0, 1, 2], "finish_reason": [0, 1, 2], "finish_reason_unspecifi": [0, 1, 2], "finishmessag": 0, "finishreason": [0, 1, 2], "first": 0, "fix": 0, "flag": 0, "flash": [0, 1], "flat": 0, "float": 0, "floral": 0, "flow": 0, "flower": 0, "foe": 0, "follow": [0, 1], "foreground": 1, "form": 0, "format": [0, 1, 2], "found": 0, "francisco": 1, "free": 1, "french": 0, "frequenc": 0, "frequency_penalti": [0, 1, 2], "frequencypenalti": 0, "freshli": 0, "from": [0, 1], "from_byt": [0, 1, 2], "from_cal": [0, 1, 2], "from_callable_with_api_opt": [0, 1, 2], "from_code_execution_result": [0, 1, 2], "from_executable_cod": [0, 1, 2], "from_fil": [0, 1, 2], "from_funct": [], "from_function_cal": [0, 1, 2], "from_function_respons": [0, 1, 2], "from_function_with_opt": [], "from_text": [0, 1, 2], "from_uri": [0, 1, 2], "from_video_metadata": [0, 1, 2], "fuction": [], "full": 0, "fulli": 0, "func": [], "function": 0, "function_cal": [0, 1, 2], "function_call_cont": 1, "function_call_part": 1, "function_calling_config": [0, 1, 2], "function_declar": [0, 1, 2], "function_repons": [], "function_respons": [0, 1, 2], "function_response_cont": 1, "function_response_part": 1, "function_result": 1, "functioncal": [0, 1, 2], "functioncalldict": [0, 1, 2], "functioncallingconfig": [0, 1, 2], "functioncallingconfigdict": [0, 1, 2], "functioncallingconfigmod": [0, 1, 2], "functiondeclar": [0, 1, 2], "functiondeclarationdict": [0, 1, 2], "functionparamet": [], "functionrespons": [0, 1, 2], "functionresponsedict": [0, 1, 2], "fune": [], "further": 0, "futur": 0, "g": [0, 1], "gc": [0, 1], "gcs_uri": [0, 1, 2], "gcsuri": 0, "gdp": 1, "gemini": 0, "gemini_api": 0, "gemini_api_kei": 1, "gemma": 0, "genai": [1, 2], "genai__types__tuningexampl": 0, "gener": [0, 2], "generate_cont": [0, 1, 2], "generate_content_request": [], "generate_content_respons": [], "generate_content_stream": [0, 1, 2], "generate_imag": [0, 1, 2], "generatecont": 0, "generatecontentconfig": [0, 1, 2], "generatecontentconfigdict": [0, 1, 2], "generatecontentrespons": [0, 1, 2], "generatecontentresponsedict": [0, 1, 2], "generatecontentresponsepromptfeedback": [0, 1, 2], "generatecontentresponsepromptfeedbackdict": [0, 1, 2], "generatecontentresponseusagemetadata": [0, 1, 2], "generatecontentresponseusagemetadatadict": [0, 1, 2], "generated_imag": [0, 1, 2], "generatedimag": [0, 1, 2], "generatedimagedict": [0, 1, 2], "generateimageconfig": [], "generateimageconfigdict": [], "generateimagerespons": [], "generateimageresponsedict": [], "generateimagesconfig": [0, 1, 2], "generateimagesconfigdict": [0, 1, 2], "generateimagesrespons": [0, 1, 2], "generateimagesresponsedict": [0, 1, 2], "generation_config": [0, 1, 2], "generationconfig": [0, 1, 2], "generationconfigdict": [0, 1, 2], "generationconfigroutingconfig": [0, 1, 2], "generationconfigroutingconfigautoroutingmod": [0, 1, 2], "generationconfigroutingconfigautoroutingmodedict": [0, 1, 2], "generationconfigroutingconfigdict": [0, 1, 2], "generationconfigroutingconfigmanualroutingmod": [0, 1, 2], "generationconfigroutingconfigmanualroutingmodedict": [0, 1, 2], "generative_ai": 1, "generativeai": [0, 1], "genericalia": 0, "get": [0, 2], "get_current_weath": 1, "getbatchjobconfig": [0, 1, 2], "getbatchjobconfigdict": [0, 1, 2], "getcachedcontentconfig": [0, 1, 2], "getcachedcontentconfigdict": [0, 1, 2], "getfileconfig": [0, 1, 2], "getfileconfigdict": [0, 1, 2], "getmodelconfig": [0, 1, 2], "getmodelconfigdict": [0, 1, 2], "getoperationconfig": [0, 1, 2], "getoperationconfigdict": [0, 1, 2], "getter": 1, "gettuningjobconfig": [0, 1, 2], "gettuningjobconfigdict": [0, 1, 2], "github": [0, 1], "give": 1, "given": [0, 1], "gl": 0, "goo": 0, "good": 0, "googl": 0, "google_ai": [], "google_cloud_project": 0, "google_search": [0, 1, 2], "google_search_dynamic_retrieval_scor": [0, 1, 2], "google_search_retriev": [0, 1, 2], "googleapi": 1, "googlerpcstatu": [0, 1, 2], "googlerpcstatusdict": [0, 1, 2], "googlesearch": [0, 1, 2], "googlesearchdict": [0, 1, 2], "googlesearchdynamicretrievalscor": 0, "googlesearchretriev": [0, 1, 2], "googlesearchretrievaldict": [0, 1, 2], "googletyped": [0, 1, 2], "googletypedatedict": [0, 1, 2], "green": 0, "gregorian": 0, "ground": 0, "grounding_chunk": [0, 1, 2], "grounding_chunk_indic": [0, 1, 2], "grounding_metadata": [0, 1, 2], "grounding_support": [0, 1, 2], "groundingchunk": [0, 1, 2], "groundingchunkdict": [0, 1, 2], "groundingchunkindic": 0, "groundingchunkretrievedcontext": [0, 1, 2], "groundingchunkretrievedcontextdict": [0, 1, 2], "groundingchunkweb": [0, 1, 2], "groundingchunkwebdict": [0, 1, 2], "groundingmetadata": [0, 1, 2], "groundingmetadatadict": [0, 1, 2], "groundingsupport": [0, 1, 2], "groundingsupportdict": [0, 1, 2], "grpc": 0, "gsutil": 1, "guarante": 0, "guid": 0, "guidance_scal": [0, 1, 2], "guidancescal": 0, "ha": 0, "handl": [0, 1], "happen": 0, "harm": 0, "harm_block_method_unspecifi": [0, 1, 2], "harm_block_threshold_unspecifi": [0, 1, 2], "harm_category_civic_integr": [0, 1, 2], "harm_category_dangerous_cont": [0, 1, 2], "harm_category_harass": [0, 1, 2], "harm_category_hate_speech": [0, 1, 2], "harm_category_sexually_explicit": [0, 1, 2], "harm_category_unspecifi": [0, 1, 2], "harm_probability_unspecifi": [0, 1, 2], "harm_severity_high": [0, 1, 2], "harm_severity_low": [0, 1, 2], "harm_severity_medium": [0, 1, 2], "harm_severity_neglig": [0, 1, 2], "harm_severity_unspecifi": [0, 1, 2], "harmblockmethod": [0, 1, 2], "harmblockthreshold": [0, 1, 2], "harmcategori": [0, 1, 2], "harmprob": [0, 1, 2], "harmsever": [0, 1, 2], "has_end": [0, 1, 2], "has_succeed": [0, 1, 2], "has_union": [0, 1, 2], "hash": 0, "hasunion": 0, "have": 0, "header": [0, 1, 2], "hello": 0, "help": 0, "here": 0, "hi": [0, 1, 2], "high": [0, 1, 2], "higher": 0, "highest": 0, "histogram": 0, "histori": 0, "hold": [], "how": 0, "http": [0, 1], "http_header": [0, 1, 2], "http_option": [0, 1, 2], "httpheader": 0, "httpoption": [0, 1, 2], "httpoptionsdict": [0, 1, 2], "human": [0, 1], "hyper_paramet": [0, 1, 2], "hyperparamet": 0, "i": [0, 1], "iana": 0, "id": [0, 1, 2], "ident": 1, "identifi": 0, "ignor": 0, "ignore_call_histori": [0, 1, 2], "ignorecallhistori": 0, "imag": [0, 1, 2], "image_byt": [0, 1, 2], "image_count": [0, 1, 2], "image_file_path": 0, "imagebyt": 0, "imagecount": 0, "imagedict": [0, 1, 2], "imagegener": [], "imagen": 0, "imagepromptlanguag": [0, 1, 2], "implement": 0, "import": 0, "includ": 0, "include_rai_reason": [0, 1, 2], "include_safety_attribut": [0, 1, 2], "include_thought": [0, 1, 2], "includeraireason": 0, "includesafetyattribut": 0, "includethought": 0, "inclus": 0, "increas": 0, "increment": 0, "index": [0, 1, 2], "indic": 0, "individu": 0, "infer": 0, "inferenc": 1, "info": 0, "inform": [0, 1], "initi": [0, 1], "initialis": 0, "inlin": [0, 1], "inline_data": [0, 1, 2], "inlinedata": 0, "inpaint": [], "input": [0, 1], "input__1": 0, "input_token_limit": [0, 1, 2], "inputtokenlimit": 0, "insert": [], "insignific": 0, "instanc": [0, 1], "instead": [0, 1], "instruct": 0, "instrument": 1, "instrumentenum": 1, "int": [0, 1], "int32": 0, "int64": 0, "integ": [0, 1, 2], "integr": 1, "interact": [0, 1, 2], "interfac": 1, "interleav": 0, "intern": 0, "interrupt": [0, 1, 2], "invalid": 0, "invalid_argu": 0, "invoc": 1, "invok": 1, "iobas": 0, "isn": 0, "issu": 0, "item": [0, 1, 2], "iter": 0, "its": 0, "itself": 0, "j": 0, "ja": [0, 1, 2], "job": 0, "job_state_cancel": [0, 1, 2], "job_state_expir": [0, 1, 2], "job_state_fail": [0, 1, 2], "job_state_partially_succeed": [0, 1, 2], "job_state_paus": [0, 1, 2], "job_state_pend": [0, 1, 2], "job_state_queu": [0, 1, 2], "job_state_run": [0, 1, 2], "job_state_succeed": [0, 1, 2], "job_state_unspecifi": [0, 1, 2], "job_state_upd": [0, 1, 2], "joberror": [0, 1, 2], "joberrordict": [0, 1, 2], "jobstat": [0, 1, 2], "jpeg": [0, 1], "jpg": [0, 1], "json": 0, "jsonl": [0, 1], "k": 0, "kei": 0, "keyboard": 1, "keyr": 0, "keyword": 0, "km": 0, "kms_key_nam": [0, 1, 2], "kmskeynam": 0, "know": 0, "knowledg": 0, "ko": [0, 1, 2], "kr": 0, "label": [0, 1, 2], "lai": 0, "languag": [0, 1, 2], "language_unspecifi": [0, 1, 2], "larg": 0, "last": 0, "latest": 0, "latter": 0, "lazi": 0, "le": 0, "lead": 0, "learn": 0, "learning_r": [0, 1, 2], "learning_rate_multipli": [0, 1, 2], "learningr": 0, "learningratemultipli": 0, "least": 0, "left": [0, 1, 2], "len": 0, "length": 0, "less": 0, "let": 1, "letter": 0, "level": 0, "librari": 1, "licens": [0, 1, 2], "lifecycl": 0, "like": [0, 1], "likelihood": 0, "list": [0, 2], "listbatchjobconfig": [], "listbatchjobconfigdict": [], "listbatchjobrespons": [], "listbatchjobresponsedict": [], "listbatchjobsconfig": [0, 1, 2], "listbatchjobsconfigdict": [0, 1, 2], "listbatchjobsrespons": [0, 1, 2], "listbatchjobsresponsedict": [0, 1, 2], "listcachedcontentsconfig": [0, 1, 2], "listcachedcontentsconfigdict": [0, 1, 2], "listcachedcontentsrespons": [0, 1, 2], "listcachedcontentsresponsedict": [0, 1, 2], "listfilesconfig": [0, 1, 2], "listfilesconfigdict": [0, 1, 2], "listfilesrespons": [0, 1, 2], "listfilesresponsedict": [0, 1, 2], "listmodelsconfig": [0, 1, 2], "listmodelsconfigdict": [0, 1, 2], "listmodelsconfigordict": 0, "listmodelsrespons": [0, 1, 2], "listmodelsresponsedict": [0, 1, 2], "listtuningjobsconfig": [0, 1, 2], "listtuningjobsconfigdict": [0, 1, 2], "listtuningjobsrequest": 0, "listtuningjobsrespons": [0, 1, 2], "listtuningjobsresponsedict": [0, 1, 2], "liter": 0, "live": [1, 2], "liveclientcont": [0, 1, 2], "liveclientcontentdict": [0, 1, 2], "liveclientcontentupd": [], "liveclientcontentupdatedict": [], "liveclientmessag": [0, 1, 2], "liveclientmessagedict": [0, 1, 2], "liveclientrealtimeinput": [0, 1, 2], "liveclientrealtimeinputdict": [0, 1, 2], "liveclientrealtimeupd": [], "liveclientrealtimeupdatedict": [], "liveclientsetup": [0, 1, 2], "liveclientsetupdict": [0, 1, 2], "liveclienttoolrespons": [0, 1, 2], "liveclienttoolresponsedict": [0, 1, 2], "liveconnectconfig": [0, 1, 2], "liveconnectconfigdict": [0, 1, 2], "livegeneratecontentsetup": 0, "liveservercont": [0, 1, 2], "liveservercontentdict": [0, 1, 2], "liveservercontentupd": [], "liveservercontentupdatedict": [], "liveservermessag": [0, 1, 2], "liveservermessagedict": [0, 1, 2], "liveserversetupcomplet": [0, 1, 2], "liveserversetupcompletedict": [0, 1, 2], "liveservertoolcal": [0, 1, 2], "liveservertoolcallcancel": [0, 1, 2], "liveservertoolcallcancellationdict": [0, 1, 2], "liveservertoolcalldict": [0, 1, 2], "llama": 0, "llm": 0, "load": 0, "local": [0, 1], "locat": [0, 1, 2], "log": 0, "log_prob": [0, 1, 2], "logic": 0, "logit": 0, "logprob": [0, 1, 2], "logprobs_result": [0, 1, 2], "logprobsresult": [0, 1, 2], "logprobsresultcandid": [0, 1, 2], "logprobsresultcandidatedict": [0, 1, 2], "logprobsresultdict": [0, 1, 2], "logprobsresulttopcandid": [0, 1, 2], "logprobsresulttopcandidatesdict": [0, 1, 2], "long": 0, "longer": 0, "lookup": 0, "low": [0, 1, 2], "lower": 0, "lowercas": 0, "maa": 0, "machin": 0, "made": [], "mai": 0, "main": 0, "make": 0, "malformed_function_cal": [0, 1, 2], "man": 0, "manag": 0, "mani": 0, "manual": [0, 1], "manual_mod": [0, 1, 2], "manualmod": 0, "map": 0, "mask": [0, 1], "mask_dil": [0, 1, 2], "mask_image_config": [0, 1, 2], "mask_mod": [0, 1, 2], "mask_mode_background": [0, 1, 2], "mask_mode_default": [0, 1, 2], "mask_mode_foreground": [0, 1, 2], "mask_mode_semant": [0, 1, 2], "mask_mode_user_provid": [0, 1, 2], "mask_ref_imag": [0, 1], "mask_reference_config": 0, "mask_typ": [], "maskdil": 0, "maskimageconfig": 0, "maskmod": 0, "maskreferenceconfig": [0, 1, 2], "maskreferenceconfigdict": [0, 1, 2], "maskreferenceimag": [0, 1, 2], "maskreferenceimagedict": [0, 1, 2], "maskreferencemod": [0, 1, 2], "match": 0, "max": [0, 1, 2], "max_item": [0, 1, 2], "max_length": [0, 1, 2], "max_output_token": [0, 1, 2], "max_properti": [0, 1, 2], "max_token": [0, 1, 2], "maximum": [0, 1, 2], "maximum_remote_cal": [0, 1, 2], "maximumremotecal": 0, "maxitem": 0, "maxlength": 0, "maxoutputtoken": 0, "maxproperti": 0, "me": [0, 1], "mean": [0, 1, 2], "meaning": 0, "meant": 0, "measur": 0, "media": 0, "media_chunk": [0, 1, 2], "media_resolut": [0, 1, 2], "media_resolution_high": [0, 1, 2], "media_resolution_low": [0, 1, 2], "media_resolution_medium": [0, 1, 2], "media_resolution_unspecifi": [0, 1, 2], "mediachunk": 0, "median": [0, 1, 2], "mediaresolut": [0, 1, 2], "medium": [0, 1, 2], "member": 0, "messag": [0, 2], "meta": 0, "metadata": [0, 1, 2], "method": [0, 1, 2], "might": 0, "millisecond": 0, "mime": 0, "mime_typ": [0, 1, 2], "mimetyp": 0, "min": [0, 1, 2], "min_item": [0, 1, 2], "min_length": [0, 1, 2], "min_properti": [0, 1, 2], "minimum": [0, 1, 2], "minitem": 0, "minlength": 0, "minproperti": 0, "mission": 0, "mix": 0, "mldev": 0, "modal": [0, 1, 2], "modality_unspecifi": [0, 1, 2], "mode": [0, 1, 2], "mode_dynam": [0, 1, 2], "mode_unspecifi": [0, 1, 2], "model": 2, "model_nam": [0, 1, 2], "model_post_init": [0, 1, 2], "model_routing_prefer": [0, 1, 2], "model_turn": [0, 1, 2], "model_vers": [0, 1, 2], "modeldict": [0, 1, 2], "modelnam": 0, "modelroutingprefer": 0, "modelturn": 0, "modelvers": 0, "modul": [1, 2], "month": [0, 1, 2], "more": [0, 1], "most": 0, "much": 0, "multi": [0, 1], "multimod": 0, "multipl": [0, 1], "multipli": 0, "must": 0, "my": [0, 1], "my_model": 0, "n": 0, "n3": 0, "na": 0, "naccess": 0, "naddition": 0, "nall": 0, "nalwai": 0, "name": [0, 1, 2], "nattribut": 0, "natur": [], "nbe": 0, "nby": 0, "ncall": 0, "ncontent": 0, "ncontrol": 0, "ndai": 0, "ndesign": 0, "ndimens": 0, "need": 0, "negative_prompt": [0, 1, 2], "negativeprompt": 0, "neglig": [0, 1, 2], "nenable_control_image_comput": 0, "nenumer": 0, "network": 0, "new": [0, 1], "newer": 0, "nexactli": 0, "nexampl": 0, "next": 0, "next_pag": [0, 1], "next_page_token": [0, 1, 2], "nextpagetoken": 0, "nfind": 0, "nfor": 0, "ngener": 0, "ngeneratecont": 0, "ngoogl": 0, "nhistori": 0, "nif": 0, "night": 1, "nimag": 0, "nindividu": 0, "ninsignific": 0, "ninstanc": 0, "nit": 0, "nmai": 0, "nmessag": 0, "nmethod": 0, "nmodel": 0, "nnot": 0, "nnote": 0, "nof": 0, "non": 0, "none": [0, 1, 2], "normal": 0, "north": 0, "note": [0, 1], "notebook": 0, "notif": 0, "now": 0, "npredict": [], "nrepres": 0, "nsee": 0, "nserver": 0, "nspecifi": 0, "nthe": 0, "nthi": 0, "nthree": 0, "nto": 0, "nucleu": 0, "null": 0, "nullabl": [0, 1, 2], "number": [0, 1, 2], "number_of_imag": [0, 1, 2], "numberofimag": 0, "numer": 0, "nunion": [], "nwith": 0, "oa": 0, "object": [0, 1, 2], "objection": 0, "obtain": 0, "occur": 0, "off": [0, 1, 2], "official_languag": 1, "offset": 0, "ok": 0, "onc": 1, "one": [0, 1], "onli": 0, "open": [0, 1], "openapi": 0, "oper": [0, 1, 2], "operationdict": [0, 1, 2], "optim": 0, "option": 0, "order": 0, "org": 0, "organ": 0, "origin": 0, "other": [0, 2], "otherwis": 0, "out": 0, "outcom": [0, 1, 2], "outcome_deadline_exceed": [0, 1, 2], "outcome_fail": [0, 1, 2], "outcome_ok": [0, 1, 2], "outcome_unspecifi": [0, 1, 2], "output": [0, 1, 2], "output_compression_qu": [0, 1, 2], "output_dimension": [0, 1, 2], "output_gcs_uri": [0, 1, 2], "output_mime_typ": [0, 1, 2], "output_token_limit": [0, 1, 2], "outputcompressionqu": 0, "outputdimension": 0, "outputgcsuri": 0, "outputmimetyp": 0, "outputtokenlimit": 0, "outsid": 0, "over": 0, "overrid": 0, "override_replay_id": [0, 1, 2], "overridereplayid": 0, "overs": 0, "own": 0, "p5": [0, 1, 2], "p95": [0, 1, 2], "page": 0, "page_s": [0, 1, 2], "page_token": [0, 1, 2], "pager": [0, 1], "pages": 0, "pagetoken": 0, "pai": 0, "pair": 0, "paragraph": 0, "param1": 0, "param2": 0, "paramet": [0, 1, 2], "parameter_nam": [0, 1, 2], "parameternam": 0, "parametertyp": [], "parent": 0, "pars": [0, 1, 2], "part": [0, 1, 2], "part_index": [0, 1, 2], "partdict": [0, 1, 2], "parti": 0, "partial": 0, "partindex": 0, "partner": 0, "partner_model_tuning_spec": [0, 1, 2], "partnermodeltuningspec": [0, 1, 2], "partnermodeltuningspecdict": [0, 1, 2], "pass": [0, 1], "path": [0, 1], "pattern": [0, 1, 2], "payload": [], "pcm": 0, "pdf": [0, 1], "penal": 0, "penalti": 0, "pend": 0, "peopl": 0, "per": 0, "percentag": 0, "percentil": 0, "percuss": 1, "perform": [0, 1], "person_gener": [0, 1, 2], "persongener": [0, 1, 2], "petal": 0, "pictur": 1, "piec": 0, "pil": 0, "pip": 1, "pipelin": 0, "pipeline_job": [0, 1, 2], "pipeline_root_directori": [0, 1, 2], "pipelinejob": 0, "pipelinerootdirectori": 0, "plai": [0, 1], "plain": 0, "plane": 1, "platform": [0, 1], "play_audio_chunk": 0, "playback": [], "pleas": [0, 1], "png": 0, "point": 0, "popul": [0, 1], "posit": 0, "possibl": 0, "power": 0, "prebuilt": 0, "prebuilt_voice_config": [0, 1, 2], "prebuiltvoiceconfig": [0, 1, 2], "prebuiltvoiceconfigdict": [0, 1, 2], "predict": 0, "predictionservic": 0, "predictor": 0, "prefer": [0, 1], "prefix": 0, "prefixitem": [], "presence_penalti": [0, 1, 2], "presencepenalti": 0, "present": 0, "pretrain": 0, "preview": 0, "previous": 0, "primit": 0, "print": [0, 1], "prioritize_cost": 0, "prioritize_qu": 0, "privat": 0, "pro": [0, 1], "probability_scor": [0, 1, 2], "probabilityscor": 0, "probabl": [0, 1, 2], "process": [0, 1, 2], "produc": 0, "product": 0, "product_posit": [], "program": 0, "progress": 0, "prohibited_cont": [0, 1, 2], "project": [0, 1, 2], "projectid": 0, "prompt": [0, 1], "prompt_feedback": [0, 1, 2], "prompt_token_count": [0, 1, 2], "promptfeedback": 0, "prompttokencount": 0, "properti": [0, 1, 2], "property_ord": [0, 1, 2], "propertyord": 0, "protect": 0, "proto": [], "protobuf": 0, "provid": [0, 1], "public": 0, "publication_d": [0, 1, 2], "publicationd": 0, "publish": 0, "purpos": 0, "pydant": [0, 1], "pydantic_cor": 0, "python": [0, 1, 2], "q": 1, "qualifi": 0, "qualiti": 0, "qualnam": 0, "queri": 0, "query_bas": [0, 1, 2], "querybas": 0, "queue": 0, "quickli": 0, "quot": [0, 1], "quota": 0, "rag": 0, "rag_corpora": [0, 1, 2], "rag_corpu": [0, 1, 2], "rag_file_id": [0, 1, 2], "rag_resourc": [0, 1, 2], "ragcorpora": 0, "ragcorpu": 0, "ragfil": 0, "ragfileid": 0, "ragresourc": 0, "rai_filtered_reason": [0, 1, 2], "raifilteredreason": 0, "raini": 1, "rais": [0, 1], "random": 0, "rang": [0, 1], "rate": 0, "rather": 0, "ratio": 0, "raw": 0, "raw_ref_imag": [0, 1], "rawreferenceimag": [0, 1, 2], "rawreferenceimagedict": [0, 1, 2], "rb": 1, "re": 0, "read": 1, "read_audio": 0, "readabl": 0, "real": 0, "realtim": 0, "realtime_input": [0, 1, 2], "realtime_upd": [], "realtimeinput": 0, "realtimeupd": 0, "reason": 0, "receiv": [0, 1, 2], "recent": 0, "recit": [0, 1, 2], "recommend": 1, "record": 0, "red": 0, "reduc": 0, "ref": 0, "refer": 0, "reference_id": [0, 1, 2], "reference_imag": [0, 1, 2], "reference_typ": [0, 1, 2], "referenceid": 0, "referenceimag": 0, "referencetyp": 0, "reflect": 0, "region": 0, "regular": 0, "rel": 0, "relat": 0, "releas": [], "remap": [], "remot": [0, 1], "rendered_cont": [0, 1, 2], "renderedcont": 0, "repeat": 0, "repeatedli": 0, "replai": 0, "replay_id": [0, 1, 2], "replayfil": [0, 1, 2], "replayfiledict": [0, 1, 2], "replayid": 0, "replayinteract": [0, 1, 2], "replayinteractiondict": [0, 1, 2], "replayrequest": [0, 1, 2], "replayrequestdict": [0, 1, 2], "replayrespons": [0, 1, 2], "replayresponsedict": [0, 1, 2], "replays_directori": [0, 1, 2], "report": 0, "reposit": [], "repositori": 0, "repres": 0, "represent": 0, "reproduc": 0, "request": [0, 1, 2], "requir": [0, 1, 2], "resolut": 0, "resolv": [], "resourc": [0, 1], "respect": 0, "respond": 1, "respons": [0, 2], "response1": 1, "response2": 1, "response3": 1, "response_logprob": [0, 1, 2], "response_mime_typ": [0, 1, 2], "response_mod": [0, 1, 2], "response_payload": 0, "response_schema": [0, 1, 2], "responselogprob": 0, "responsemimetyp": 0, "responsemod": 0, "responseschema": 0, "rest": 0, "restrict": 0, "result": [0, 1], "retain": 0, "retriev": [0, 1, 2], "retrieval_docu": 0, "retrieval_metadata": [0, 1, 2], "retrieval_queri": [0, 1, 2], "retrievaldict": [0, 1, 2], "retrievalmetadata": [0, 1, 2], "retrievalmetadatadict": [0, 1, 2], "retrievalqueri": 0, "retrieved_context": [0, 1, 2], "retrievedcontext": 0, "return": [0, 1], "rewrit": 0, "rewritten": 0, "right": [0, 1, 2], "robot": [], "role": [0, 1, 2], "root": 0, "rout": 0, "router": 0, "routing_config": [0, 1, 2], "routingconfig": 0, "rpc": 0, "rtype": 0, "run": [0, 1], "running_st": 1, "safeti": [0, 2], "safety_filter_level": [0, 1, 2], "safety_r": [0, 1, 2], "safety_set": [0, 1, 2], "safetyfilterlevel": [0, 1, 2], "safetyr": [0, 1, 2], "safetyratingdict": [0, 1, 2], "safetyset": [0, 1, 2], "safetysettingdict": [0, 1, 2], "sai": 1, "same": 0, "sampl": [0, 1], "san": 1, "save": [0, 1, 2], "schema": [0, 2], "schemadict": [0, 1, 2], "scone": [0, 1], "scope": 0, "score": 0, "sdk": 0, "sdk_blob": [0, 1, 2], "sdk_response_seg": [0, 1, 2], "sdkblob": 0, "sdkresponseseg": 0, "search": 0, "search_entry_point": [0, 1, 2], "searchentrypoint": [0, 1, 2], "searchentrypointdict": [0, 1, 2], "second": 0, "see": [0, 1], "seed": [0, 1, 2], "seek": 0, "seekabl": 0, "segment": [0, 1, 2], "segmentation_class": [0, 1, 2], "segmentationclass": 0, "segmentdict": [0, 1, 2], "select": 0, "self": 0, "sell": 0, "semant": 0, "send": [0, 2], "send_messag": [0, 1, 2], "send_message_stream": [0, 1, 2], "sensit": 0, "sent": 0, "separ": [0, 1], "sequenc": 0, "server": 0, "server_cont": [0, 1, 2], "server_content_mod": [], "servercont": 0, "servic": [0, 1], "session": [0, 1], "set": 0, "setup": [0, 1, 2], "setup_complet": [0, 1, 2], "setupcomplet": 0, "sever": [0, 1, 2], "severity_scor": [0, 1, 2], "severityscor": 0, "sft": 0, "sft_train_data": 1, "sha": 0, "sha256_hash": [0, 1, 2], "sha256hash": 0, "share": 0, "shared_resourc": [0, 1, 2], "shop": 0, "should": 0, "show": [0, 1, 2], "shown": [0, 1], "side": 0, "signal": 0, "signific": 0, "silent": 0, "similar": 0, "similarity_top_k": [0, 1, 2], "similaritytopk": 0, "simpl": [0, 1], "sinc": 0, "singl": [0, 1], "size": 0, "size_byt": [0, 1, 2], "sizebyt": 0, "skateboard": [], "sketch": 0, "skip": 0, "skip_in_api_mod": [0, 1, 2], "skipinapimod": 0, "sky": 1, "sleep": 1, "smaller": 0, "snippet": 0, "some": [0, 1], "someth": 1, "sort": 0, "sourc": [0, 1, 2], "source_unspecifi": [0, 1, 2], "south": 0, "space": 0, "speaker": 0, "spec": 0, "special": 0, "specif": 0, "specifi": [0, 1], "speech": 0, "speech_config": [0, 1, 2], "speechconfig": [0, 1, 2], "speechconfigdict": [0, 1, 2], "spii": [0, 1, 2], "src": [0, 1, 2], "stage": [], "stai": [], "standard": 0, "start": [0, 1], "start_index": [0, 1, 2], "start_offset": [0, 1, 2], "start_stream": [0, 1, 2], "start_tim": [0, 1, 2], "startindex": 0, "startoffset": 0, "starttim": 0, "stat": 0, "state": [0, 1, 2], "state_unspecifi": [0, 1, 2], "static": [], "statist": [0, 1, 2], "statu": 0, "status_cod": [0, 1, 2], "statuscod": 0, "stderr": 0, "stdout": 0, "steer": 0, "step": 0, "still": 0, "stop": [0, 1, 2], "stop_sequ": [0, 1, 2], "stopsequ": 0, "storag": [0, 1], "store": [0, 1], "stori": [0, 1], "str": [0, 1], "stream": 0, "string": [0, 1, 2], "structur": 0, "student": 0, "student_model": [0, 1, 2], "studentmodel": 0, "style": 0, "style_descript": [0, 1, 2], "style_image_config": [0, 1, 2], "style_reference_config": 0, "styledescript": 0, "styleimageconfig": 0, "stylereferenceconfig": [0, 1, 2], "stylereferenceconfigdict": [0, 1, 2], "stylereferenceimag": [0, 1, 2], "stylereferenceimagedict": [0, 1, 2], "subject": 0, "subject_descript": [0, 1, 2], "subject_image_config": [0, 1, 2], "subject_reference_config": 0, "subject_typ": [0, 1, 2], "subject_type_anim": [0, 1, 2], "subject_type_default": [0, 1, 2], "subject_type_person": [0, 1, 2], "subject_type_product": [0, 1, 2], "subjectdescript": 0, "subjectimageconfig": 0, "subjectreferenceconfig": [0, 1, 2], "subjectreferenceconfigdict": [0, 1, 2], "subjectreferenceimag": [0, 1, 2], "subjectreferenceimagedict": [0, 1, 2], "subjectreferencetyp": [0, 1, 2], "subjecttyp": 0, "submodul": [1, 2], "subschema": 0, "subsequ": 0, "subset": 0, "succeed": 0, "success": 0, "suitabl": 0, "sum": [0, 1, 2], "summar": 1, "sunlight": 1, "sunni": 1, "supervis": [0, 1], "supervised_tuning_data_stat": [0, 1, 2], "supervised_tuning_spec": [0, 1, 2], "supervisedhyperparamet": [0, 1, 2], "supervisedhyperparametersdict": [0, 1, 2], "supervisedtuningdatasetdistribut": [0, 1, 2], "supervisedtuningdatasetdistributiondatasetbucket": [0, 1, 2], "supervisedtuningdatasetdistributiondatasetbucketdict": [0, 1, 2], "supervisedtuningdatasetdistributiondict": [0, 1, 2], "supervisedtuningdatastat": [0, 1, 2], "supervisedtuningdatastatsdict": [0, 1, 2], "supervisedtuningspec": [0, 1, 2], "supervisedtuningspecdict": [0, 1, 2], "suppli": [], "support": [0, 1], "supported_act": [0, 1, 2], "supportedact": 0, "surfboard": [], "switch": 1, "synchron": 0, "system": 0, "system_instruct": [0, 1, 2], "systeminstruct": 0, "t": [0, 1], "tabl": [0, 1], "take": 0, "task": 0, "task_typ": [0, 1, 2], "tasktyp": 0, "tcompleted_st": [], "teacher": 0, "teacher_model": [], "technic": 0, "tell": [0, 1], "temperatur": [0, 1, 2], "term": 0, "termin": 0, "test": [0, 1], "test_dataset_exampl": 1, "test_method": [0, 1, 2], "test_tabl": [0, 1, 2], "testmethod": 0, "testtabl": 0, "testtablefil": [0, 1, 2], "testtablefiledict": [0, 1, 2], "testtableitem": [0, 1, 2], "testtableitemdict": [0, 1, 2], "text": [0, 2], "text_count": [0, 1, 2], "text_input": [0, 1, 2], "textcount": 0, "textinput": 0, "than": [0, 1], "thei": 0, "them": 0, "thi": [0, 1], "thing": 1, "think": 0, "thinking_config": [0, 1, 2], "thinkingconfig": [0, 1, 2], "thinkingconfigdict": [0, 1, 2], "third": 0, "those": [0, 1], "thought": [0, 1, 2], "three": 0, "threshold": [0, 1, 2], "through": 1, "time": [0, 1], "timeless": 0, "timeofdai": 0, "timeout": [0, 1, 2], "timestamp": 0, "titl": [0, 1, 2], "tmp": [], "token": [0, 2], "token_count": [0, 1, 2], "token_id": [0, 1, 2], "tokencount": 0, "tokenid": 0, "tokens_info": [0, 1, 2], "tokensinfo": [0, 1, 2], "tokensinfodict": [0, 1, 2], "tool": [0, 1, 2], "tool_cal": [0, 1, 2], "tool_call_cancel": [0, 1, 2], "tool_config": [0, 1, 2], "tool_respons": [0, 1, 2], "toolcal": 0, "toolcallcancel": 0, "toolcallmessag": 0, "toolcodeexecut": [0, 1, 2], "toolcodeexecutiondict": [0, 1, 2], "toolconfig": [0, 1, 2], "toolconfigdict": [0, 1, 2], "tooldict": [0, 1, 2], "toolrespons": 0, "top": 0, "top_candid": [0, 1, 2], "top_k": [0, 1, 2], "top_p": [0, 1, 2], "topcandid": 0, "topk": 0, "topp": 0, "total": 0, "total_area_sq_mi": 1, "total_billable_character_count": [0, 1, 2], "total_billable_token_count": [0, 1, 2], "total_token": [0, 1, 2], "total_token_count": [0, 1, 2], "total_truncated_example_count": [0, 1, 2], "total_tuning_character_count": [0, 1, 2], "totalbillablecharactercount": 0, "totalbillabletokencount": 0, "totaltoken": 0, "totaltokencount": 0, "totaltruncatedexamplecount": 0, "totaltuningcharactercount": 0, "toward": 0, "tradit": 0, "train": 0, "training_dataset": [0, 1], "training_dataset_stat": [0, 1, 2], "training_dataset_uri": [0, 1, 2], "trainingdatasetstat": 0, "trainingdataseturi": 0, "translat": 0, "treat": 0, "trigger": 0, "true": [0, 1], "truncat": [0, 1, 2], "truncated_example_indic": [0, 1, 2], "truncatedexampleindic": 0, "try": 1, "ttl": [0, 1, 2], "tune": 2, "tuned_model": [0, 1, 2], "tuned_model_display_nam": [0, 1, 2], "tuned_model_info": [0, 1, 2], "tuned_teacher_model_sourc": [0, 1, 2], "tunedmodel": [0, 1, 2], "tunedmodeldict": [0, 1, 2], "tunedmodeldisplaynam": 0, "tunedmodelinfo": [0, 1, 2], "tunedmodelinfodict": [0, 1, 2], "tunedteachermodelsourc": 0, "tuning_data_stat": [0, 1, 2], "tuning_dataset_example_count": [0, 1, 2], "tuning_job": [0, 1, 2], "tuning_step_count": [0, 1, 2], "tuningdataset": [0, 1, 2], "tuningdatasetdict": [0, 1, 2], "tuningdatasetexamplecount": 0, "tuningdatastat": [0, 1, 2], "tuningdatastatsdict": [0, 1, 2], "tuningexampl": [0, 1, 2], "tuningexampledict": [0, 1, 2], "tuningjob": [0, 1, 2], "tuningjobdict": [0, 1, 2], "tuningjoboroper": [], "tuningjoboroperationdict": [], "tuningstepcount": 0, "tuningvalidationdataset": [0, 1, 2], "tuningvalidationdatasetdict": [0, 1, 2], "tupl": 0, "turn": [0, 1, 2], "turn_complet": [0, 1, 2], "turncomplet": 0, "two": [0, 1], "txt": 1, "type": 2, "type_unspecifi": [0, 1, 2], "typeddict": [0, 1], "typic": 0, "u": [0, 1], "umbrella": 1, "unari": 0, "uncondition": 0, "undefin": 0, "under": [0, 1], "underscor": 0, "undo": 0, "unicod": 0, "unified_genai_tests_batch": [], "union": 0, "uniontyp": 0, "uniqu": 0, "unique_id": 0, "unit": 1, "unknown": 0, "unless": 0, "unsaf": 0, "unset": 0, "unsupport": 0, "until": [0, 1], "up": 0, "updat": [0, 2], "update_tim": [0, 1, 2], "updatecachedcontentconfig": [0, 1, 2], "updatecachedcontentconfigdict": [0, 1, 2], "updatemodelconfig": [0, 1, 2], "updatemodelconfigdict": [0, 1, 2], "updatetim": 0, "upload": [0, 2], "uploadfileconfig": [0, 1, 2], "uploadfileconfigdict": [0, 1, 2], "upscal": [0, 1], "upscale_factor": [0, 1, 2], "upscale_imag": [0, 1, 2], "upscalefactor": 0, "upscaleimageconfig": [0, 1, 2], "upscaleimageconfigdict": [0, 1, 2], "upscaleimageparamet": [0, 1, 2], "upscaleimageparametersdict": [0, 1, 2], "upscaleimagerespons": [0, 1, 2], "upscaleimageresponsedict": [0, 1, 2], "uri": [0, 1, 2], "url": [0, 1, 2], "us": [0, 1], "usag": 0, "usage_metadata": [0, 1, 2], "usagemetadata": 0, "user": [0, 1], "user_dataset_exampl": [0, 1, 2], "user_input_token_distribut": [0, 1, 2], "user_message_per_example_distribut": [0, 1, 2], "user_output_token_distribut": [0, 1, 2], "user_prompt_cont": 1, "userdatasetexampl": 0, "userinputtokendistribut": 0, "usermessageperexampledistribut": 0, "useroutputtokendistribut": 0, "utc": 0, "utf": 0, "util": 0, "v1": 1, "v1alpha": 1, "v3": 0, "valid": 0, "validation_dataset": [0, 1, 2], "validation_dataset_uri": [0, 1, 2], "validationdataset": 0, "validationdataseturi": 0, "validationerror": 0, "valu": [0, 1, 2], "valueerror": 0, "variabl": 0, "variant": [], "variat": 0, "vector": 0, "vector_distance_threshold": [0, 1, 2], "vectordistancethreshold": 0, "version": [0, 1, 2], "vertex": [0, 1], "vertex_ai": 0, "vertex_ai_search": [0, 1, 2], "vertex_rag_stor": [0, 1, 2], "vertexai": [0, 1, 2], "vertexaisearch": [0, 1, 2], "vertexaisearchdict": [0, 1, 2], "vertexragdataservic": 0, "vertexragstor": [0, 1, 2], "vertexragstoredict": [0, 1, 2], "vertexragstoreragresourc": [0, 1, 2], "vertexragstoreragresourcedict": [0, 1, 2], "via": 0, "video": 0, "video_duration_second": [0, 1, 2], "video_metadata": [0, 1, 2], "videodurationsecond": 0, "videometadata": [0, 1, 2], "videometadatadict": [0, 1, 2], "violat": 0, "voic": 0, "voice_config": [0, 1, 2], "voice_nam": [0, 1, 2], "voiceconfig": [0, 1, 2], "voiceconfigdict": [0, 1, 2], "voicenam": 0, "wa": 0, "wai": [0, 1], "wait": 0, "want": [0, 1], "watermark": 0, "we": 0, "weather": 1, "web": [0, 1, 2], "web_search_queri": [0, 1, 2], "websearchqueri": 0, "websit": 0, "websocket": 0, "webview": 0, "welcom": 0, "well": 1, "were": 0, "west": 0, "wget": 1, "what": [0, 1], "when": [0, 1], "where": 0, "whether": 0, "which": 0, "while": [0, 1], "whole": 0, "whose": 0, "why": [0, 1], "winter": 1, "within": 0, "without": 0, "woodwind": 1, "word": [0, 1], "work": 0, "world": 0, "would": 0, "x": 1, "x2": [0, 1], "x4": 0, "xmqnxf": 0, "year": [0, 1, 2], "yellow": [], "yield": 0, "york": 1, "you": [0, 1], "your": [0, 1], "your_api_kei": [], "your_image_mime_typ": 1, "your_image_path": 1, "yourself": [], "z": 0, "zero": 0, "zone": 0}, "titles": ["Submodules", "Google Gen AI SDK", "google"], "titleterms": {"ai": 1, "api": 1, "async": 1, "automat": [], "base": 1, "batch": [0, 1], "cach": [0, 1], "call": 1, "chat": [0, 1], "client": [0, 1], "comput": 1, "config": 1, "content": 1, "count": 1, "creat": 1, "delet": 1, "distil": [], "edit": [], "emb": 1, "enum": 1, "file": [0, 1], "function": 1, "gemini": 1, "gen": 1, "genai": 0, "gener": 1, "get": 1, "googl": [1, 2], "how": 1, "imag": [], "imagen": 1, "import": 1, "instal": 1, "instruct": 1, "job": 1, "json": 1, "list": 1, "live": 0, "messag": 1, "model": [0, 1], "modul": 0, "onli": 1, "other": 1, "predict": 1, "pydant": [], "python": [], "refer": 1, "respons": 1, "safeti": 1, "schema": 1, "sdk": 1, "send": 1, "set": 1, "stream": 1, "structur": 1, "submodul": 0, "support": [], "system": 1, "text": 1, "think": [], "token": 1, "tune": [0, 1], "type": [0, 1], "updat": 1, "upload": 1, "upscal": [], "us": []}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"API Selection": [[1, "api-selection"]], "Async": [[1, "async"], [1, "id4"], [1, "id6"]], "Async Streaming": [[1, "async-streaming"]], "Batch Prediction": [[1, "batch-prediction"]], "Caches": [[1, "caches"]], "Chats": [[1, "chats"]], "Count Tokens and Compute Tokens": [[1, "count-tokens-and-compute-tokens"]], "Create": [[1, "create"], [1, "id9"]], "Create a client": [[1, "create-a-client"]], "Delete": [[1, "delete"], [1, "id10"]], "Embed Content": [[1, "embed-content"]], "Enum Response Schema": [[1, "enum-response-schema"]], "Files": [[1, "files"]], "Function Calling": [[1, "function-calling"]], "Generate Content": [[1, "generate-content"], [1, "id8"]], "Get": [[1, "get"], [1, "id7"]], "Get Tuned Model": [[1, "get-tuned-model"]], "Get Tuning Job": [[1, "get-tuning-job"]], "Google Gen AI SDK": [[1, null]], "How to structure contents": [[1, "how-to-structure-contents"]], "Imagen": [[1, "imagen"]], "Imports": [[1, "imports"]], "Installation": [[1, "installation"]], "JSON Response Schema": [[1, "json-response-schema"]], "List": [[1, "list"]], "List Base Models": [[1, "list-base-models"]], "List Tuned Models": [[1, "list-tuned-models"]], "List Tuning Jobs": [[1, "list-tuning-jobs"]], "Models": [[1, "models"]], "Reference": [[1, "reference"]], "Safety Settings": [[1, "safety-settings"]], "Send Message": [[1, "send-message"]], "Streaming": [[1, "streaming"], [1, "id3"], [1, "id5"]], "Submodules": [[0, null]], "System Instructions and Other Configs": [[1, "system-instructions-and-other-configs"]], "Tune": [[1, "tune"]], "Tunings": [[1, "tunings"]], "Typed Config": [[1, "typed-config"]], "Types": [[1, "types"]], "Update Tuned Model": [[1, "update-tuned-model"]], "Upload": [[1, "upload"]], "genai.batches module": [[0, "module-genai.batches"]], "genai.caches module": [[0, "module-genai.caches"]], "genai.chats module": [[0, "module-genai.chats"]], "genai.client module": [[0, "module-genai.client"]], "genai.files module": [[0, "module-genai.files"]], "genai.live module": [[0, "module-genai.live"]], "genai.models module": [[0, "module-genai.models"]], "genai.tunings module": [[0, "module-genai.tunings"]], "genai.types module": [[0, "module-genai.types"]], "google": [[2, null]], "with text content": [[1, "with-text-content"]], "with uploaded file (Gemini API only)": [[1, "with-uploaded-file-gemini-api-only"]]}, "docnames": ["genai", "index", "modules"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["genai.rst", "index.rst", "modules.rst"], "indexentries": {"active (genai.types.filestate attribute)": [[0, "genai.types.FileState.ACTIVE", false]], "active (genai.types.state attribute)": [[0, "genai.types.State.ACTIVE", false]], "adapter_size (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.adapter_size", false]], "adapter_size (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.adapter_size", false]], "adapter_size (genai.types.distillationhyperparameters attribute)": [[0, "genai.types.DistillationHyperParameters.adapter_size", false]], "adapter_size (genai.types.distillationhyperparametersdict attribute)": [[0, "genai.types.DistillationHyperParametersDict.adapter_size", false]], "adapter_size (genai.types.supervisedhyperparameters attribute)": [[0, "genai.types.SupervisedHyperParameters.adapter_size", false]], "adapter_size (genai.types.supervisedhyperparametersdict attribute)": [[0, "genai.types.SupervisedHyperParametersDict.adapter_size", false]], "adapter_size_eight (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_EIGHT", false]], "adapter_size_four (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_FOUR", false]], "adapter_size_one (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_ONE", false]], "adapter_size_sixteen (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_SIXTEEN", false]], "adapter_size_thirty_two (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_THIRTY_TWO", false]], "adapter_size_unspecified (genai.types.adaptersize attribute)": [[0, "genai.types.AdapterSize.ADAPTER_SIZE_UNSPECIFIED", false]], "adaptersize (class in genai.types)": [[0, "genai.types.AdapterSize", false]], "add_watermark (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.add_watermark", false]], "add_watermark (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.add_watermark", false]], "aio (genai.client.client property)": [[0, "genai.client.Client.aio", false]], "allow_adult (genai.types.persongeneration attribute)": [[0, "genai.types.PersonGeneration.ALLOW_ADULT", false]], "allow_all (genai.types.persongeneration attribute)": [[0, "genai.types.PersonGeneration.ALLOW_ALL", false]], "allowed_function_names (genai.types.functioncallingconfig attribute)": [[0, "genai.types.FunctionCallingConfig.allowed_function_names", false]], "allowed_function_names (genai.types.functioncallingconfigdict attribute)": [[0, "genai.types.FunctionCallingConfigDict.allowed_function_names", false]], "any (genai.types.functioncallingconfigmode attribute)": [[0, "genai.types.FunctionCallingConfigMode.ANY", false]], "any_of (genai.types.schema attribute)": [[0, "genai.types.Schema.any_of", false]], "any_of (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.any_of", false]], "api_key (genai.client.client attribute)": [[0, "genai.client.Client.api_key", false]], "api_version (genai.types.httpoptions attribute)": [[0, "genai.types.HttpOptions.api_version", false]], "api_version (genai.types.httpoptionsdict attribute)": [[0, "genai.types.HttpOptionsDict.api_version", false]], "args (genai.types.functioncall attribute)": [[0, "genai.types.FunctionCall.args", false]], "args (genai.types.functioncalldict attribute)": [[0, "genai.types.FunctionCallDict.args", false]], "array (genai.types.type attribute)": [[0, "genai.types.Type.ARRAY", false]], "aspect_ratio (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.aspect_ratio", false]], "aspect_ratio (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.aspect_ratio", false]], "asyncbatches (class in genai.batches)": [[0, "genai.batches.AsyncBatches", false]], "asynccaches (class in genai.caches)": [[0, "genai.caches.AsyncCaches", false]], "asyncchat (class in genai.chats)": [[0, "genai.chats.AsyncChat", false]], "asyncchats (class in genai.chats)": [[0, "genai.chats.AsyncChats", false]], "asyncclient (class in genai.client)": [[0, "genai.client.AsyncClient", false]], "asyncfiles (class in genai.files)": [[0, "genai.files.AsyncFiles", false]], "asynclive (class in genai.live)": [[0, "genai.live.AsyncLive", false]], "asyncmodels (class in genai.models)": [[0, "genai.models.AsyncModels", false]], "asyncsession (class in genai.live)": [[0, "genai.live.AsyncSession", false]], "asynctunings (class in genai.tunings)": [[0, "genai.tunings.AsyncTunings", false]], "audio (genai.types.modality attribute)": [[0, "genai.types.Modality.AUDIO", false]], "audio_duration_seconds (genai.types.cachedcontentusagemetadata attribute)": [[0, "genai.types.CachedContentUsageMetadata.audio_duration_seconds", false]], "audio_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)": [[0, "genai.types.CachedContentUsageMetadataDict.audio_duration_seconds", false]], "audio_timestamp (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.audio_timestamp", false]], "audio_timestamp (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.audio_timestamp", false]], "audio_timestamp (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.audio_timestamp", false]], "audio_timestamp (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.audio_timestamp", false]], "auto (genai.types.functioncallingconfigmode attribute)": [[0, "genai.types.FunctionCallingConfigMode.AUTO", false]], "auto (genai.types.imagepromptlanguage attribute)": [[0, "genai.types.ImagePromptLanguage.auto", false]], "auto_mode (genai.types.generationconfigroutingconfig attribute)": [[0, "genai.types.GenerationConfigRoutingConfig.auto_mode", false]], "auto_mode (genai.types.generationconfigroutingconfigdict attribute)": [[0, "genai.types.GenerationConfigRoutingConfigDict.auto_mode", false]], "auto_truncate (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.auto_truncate", false]], "auto_truncate (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.auto_truncate", false]], "automatic_function_calling (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.automatic_function_calling", false]], "automatic_function_calling (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.automatic_function_calling", false]], "automatic_function_calling_history (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.automatic_function_calling_history", false]], "automatic_resources (genai.types.deploymentresourcestype attribute)": [[0, "genai.types.DeploymentResourcesType.AUTOMATIC_RESOURCES", false]], "automaticfunctioncallingconfigdict (class in genai.types)": [[0, "genai.types.AutomaticFunctionCallingConfigDict", false]], "avg_logprobs (genai.types.candidate attribute)": [[0, "genai.types.Candidate.avg_logprobs", false]], "avg_logprobs (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.avg_logprobs", false]], "base_model (genai.types.tunedmodelinfo attribute)": [[0, "genai.types.TunedModelInfo.base_model", false]], "base_model (genai.types.tunedmodelinfodict attribute)": [[0, "genai.types.TunedModelInfoDict.base_model", false]], "base_model (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.base_model", false]], "base_model (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.base_model", false]], "base_teacher_model (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.base_teacher_model", false]], "base_teacher_model (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.base_teacher_model", false]], "base_url (genai.types.httpoptions attribute)": [[0, "genai.types.HttpOptions.base_url", false]], "base_url (genai.types.httpoptionsdict attribute)": [[0, "genai.types.HttpOptionsDict.base_url", false]], "batch_jobs (genai.types.listbatchjobsresponse attribute)": [[0, "genai.types.ListBatchJobsResponse.batch_jobs", false]], "batch_jobs (genai.types.listbatchjobsresponsedict attribute)": [[0, "genai.types.ListBatchJobsResponseDict.batch_jobs", false]], "batch_size (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.batch_size", false]], "batch_size (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.batch_size", false]], "batches (class in genai.batches)": [[0, "genai.batches.Batches", false]], "batches (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.batches", false]], "batches (genai.client.client property)": [[0, "genai.client.Client.batches", false]], "batchjobdestinationdict (class in genai.types)": [[0, "genai.types.BatchJobDestinationDict", false]], "batchjobdict (class in genai.types)": [[0, "genai.types.BatchJobDict", false]], "batchjobsourcedict (class in genai.types)": [[0, "genai.types.BatchJobSourceDict", false]], "bigquery_uri (genai.types.batchjobdestination attribute)": [[0, "genai.types.BatchJobDestination.bigquery_uri", false]], "bigquery_uri (genai.types.batchjobdestinationdict attribute)": [[0, "genai.types.BatchJobDestinationDict.bigquery_uri", false]], "bigquery_uri (genai.types.batchjobsource attribute)": [[0, "genai.types.BatchJobSource.bigquery_uri", false]], "bigquery_uri (genai.types.batchjobsourcedict attribute)": [[0, "genai.types.BatchJobSourceDict.bigquery_uri", false]], "billable_character_count (genai.types.embedcontentmetadata attribute)": [[0, "genai.types.EmbedContentMetadata.billable_character_count", false]], "billable_character_count (genai.types.embedcontentmetadatadict attribute)": [[0, "genai.types.EmbedContentMetadataDict.billable_character_count", false]], "billable_sum (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.billable_sum", false]], "billable_sum (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.billable_sum", false]], "blobdict (class in genai.types)": [[0, "genai.types.BlobDict", false]], "block_low_and_above (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.BLOCK_LOW_AND_ABOVE", false]], "block_low_and_above (genai.types.safetyfilterlevel attribute)": [[0, "genai.types.SafetyFilterLevel.BLOCK_LOW_AND_ABOVE", false]], "block_medium_and_above (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE", false]], "block_medium_and_above (genai.types.safetyfilterlevel attribute)": [[0, "genai.types.SafetyFilterLevel.BLOCK_MEDIUM_AND_ABOVE", false]], "block_none (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.BLOCK_NONE", false]], "block_none (genai.types.safetyfilterlevel attribute)": [[0, "genai.types.SafetyFilterLevel.BLOCK_NONE", false]], "block_only_high (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.BLOCK_ONLY_HIGH", false]], "block_only_high (genai.types.safetyfilterlevel attribute)": [[0, "genai.types.SafetyFilterLevel.BLOCK_ONLY_HIGH", false]], "block_reason (genai.types.generatecontentresponsepromptfeedback attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedback.block_reason", false]], "block_reason (genai.types.generatecontentresponsepromptfeedbackdict attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedbackDict.block_reason", false]], "block_reason_message (genai.types.generatecontentresponsepromptfeedback attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedback.block_reason_message", false]], "block_reason_message (genai.types.generatecontentresponsepromptfeedbackdict attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedbackDict.block_reason_message", false]], "blocked (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.blocked", false]], "blocked (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.blocked", false]], "blocked_reason_unspecified (genai.types.blockedreason attribute)": [[0, "genai.types.BlockedReason.BLOCKED_REASON_UNSPECIFIED", false]], "blockedreason (class in genai.types)": [[0, "genai.types.BlockedReason", false]], "blocklist (genai.types.blockedreason attribute)": [[0, "genai.types.BlockedReason.BLOCKLIST", false]], "blocklist (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.BLOCKLIST", false]], "body_segments (genai.types.replayrequest attribute)": [[0, "genai.types.ReplayRequest.body_segments", false]], "body_segments (genai.types.replayrequestdict attribute)": [[0, "genai.types.ReplayRequestDict.body_segments", false]], "body_segments (genai.types.replayresponse attribute)": [[0, "genai.types.ReplayResponse.body_segments", false]], "body_segments (genai.types.replayresponsedict attribute)": [[0, "genai.types.ReplayResponseDict.body_segments", false]], "boolean (genai.types.type attribute)": [[0, "genai.types.Type.BOOLEAN", false]], "buckets (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.buckets", false]], "buckets (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.buckets", false]], "buckets (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.buckets", false]], "buckets (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.buckets", false]], "cached_content (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.cached_content", false]], "cached_content (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.cached_content", false]], "cached_content_token_count (genai.types.counttokensresponse attribute)": [[0, "genai.types.CountTokensResponse.cached_content_token_count", false]], "cached_content_token_count (genai.types.counttokensresponsedict attribute)": [[0, "genai.types.CountTokensResponseDict.cached_content_token_count", false]], "cached_content_token_count (genai.types.generatecontentresponseusagemetadata attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadata.cached_content_token_count", false]], "cached_content_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadataDict.cached_content_token_count", false]], "cached_contents (genai.types.listcachedcontentsresponse attribute)": [[0, "genai.types.ListCachedContentsResponse.cached_contents", false]], "cached_contents (genai.types.listcachedcontentsresponsedict attribute)": [[0, "genai.types.ListCachedContentsResponseDict.cached_contents", false]], "cachedcontentdict (class in genai.types)": [[0, "genai.types.CachedContentDict", false]], "cachedcontentusagemetadatadict (class in genai.types)": [[0, "genai.types.CachedContentUsageMetadataDict", false]], "caches (class in genai.caches)": [[0, "genai.caches.Caches", false]], "caches (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.caches", false]], "caches (genai.client.client property)": [[0, "genai.client.Client.caches", false]], "cancel() (genai.batches.asyncbatches method)": [[0, "genai.batches.AsyncBatches.cancel", false]], "cancel() (genai.batches.batches method)": [[0, "genai.batches.Batches.cancel", false]], "cancelbatchjobconfigdict (class in genai.types)": [[0, "genai.types.CancelBatchJobConfigDict", false]], "candidate_count (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.candidate_count", false]], "candidate_count (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.candidate_count", false]], "candidate_count (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.candidate_count", false]], "candidate_count (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.candidate_count", false]], "candidatedict (class in genai.types)": [[0, "genai.types.CandidateDict", false]], "candidates (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.candidates", false]], "candidates (genai.types.generatecontentresponsedict attribute)": [[0, "genai.types.GenerateContentResponseDict.candidates", false]], "candidates (genai.types.logprobsresulttopcandidates attribute)": [[0, "genai.types.LogprobsResultTopCandidates.candidates", false]], "candidates (genai.types.logprobsresulttopcandidatesdict attribute)": [[0, "genai.types.LogprobsResultTopCandidatesDict.candidates", false]], "candidates_token_count (genai.types.generatecontentresponseusagemetadata attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadata.candidates_token_count", false]], "candidates_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadataDict.candidates_token_count", false]], "category (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.category", false]], "category (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.category", false]], "category (genai.types.safetysetting attribute)": [[0, "genai.types.SafetySetting.category", false]], "category (genai.types.safetysettingdict attribute)": [[0, "genai.types.SafetySettingDict.category", false]], "chat (class in genai.chats)": [[0, "genai.chats.Chat", false]], "chats (class in genai.chats)": [[0, "genai.chats.Chats", false]], "chats (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.chats", false]], "chats (genai.client.client property)": [[0, "genai.client.Client.chats", false]], "chosen_candidates (genai.types.logprobsresult attribute)": [[0, "genai.types.LogprobsResult.chosen_candidates", false]], "chosen_candidates (genai.types.logprobsresultdict attribute)": [[0, "genai.types.LogprobsResultDict.chosen_candidates", false]], "citation_metadata (genai.types.candidate attribute)": [[0, "genai.types.Candidate.citation_metadata", false]], "citation_metadata (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.citation_metadata", false]], "citationdict (class in genai.types)": [[0, "genai.types.CitationDict", false]], "citationmetadatadict (class in genai.types)": [[0, "genai.types.CitationMetadataDict", false]], "citations (genai.types.citationmetadata attribute)": [[0, "genai.types.CitationMetadata.citations", false]], "citations (genai.types.citationmetadatadict attribute)": [[0, "genai.types.CitationMetadataDict.citations", false]], "client (class in genai.client)": [[0, "genai.client.Client", false]], "client_content (genai.types.liveclientmessage attribute)": [[0, "genai.types.LiveClientMessage.client_content", false]], "client_content (genai.types.liveclientmessagedict attribute)": [[0, "genai.types.LiveClientMessageDict.client_content", false]], "client_mode (genai.client.debugconfig attribute)": [[0, "genai.client.DebugConfig.client_mode", false]], "close() (genai.live.asyncsession method)": [[0, "genai.live.AsyncSession.close", false]], "code (genai.types.executablecode attribute)": [[0, "genai.types.ExecutableCode.code", false]], "code (genai.types.executablecodedict attribute)": [[0, "genai.types.ExecutableCodeDict.code", false]], "code (genai.types.filestatus attribute)": [[0, "genai.types.FileStatus.code", false]], "code (genai.types.filestatusdict attribute)": [[0, "genai.types.FileStatusDict.code", false]], "code (genai.types.googlerpcstatus attribute)": [[0, "genai.types.GoogleRpcStatus.code", false]], "code (genai.types.googlerpcstatusdict attribute)": [[0, "genai.types.GoogleRpcStatusDict.code", false]], "code (genai.types.joberror attribute)": [[0, "genai.types.JobError.code", false]], "code (genai.types.joberrordict attribute)": [[0, "genai.types.JobErrorDict.code", false]], "code_execution (genai.types.tool attribute)": [[0, "genai.types.Tool.code_execution", false]], "code_execution (genai.types.tooldict attribute)": [[0, "genai.types.ToolDict.code_execution", false]], "code_execution_result (genai.types.part attribute)": [[0, "genai.types.Part.code_execution_result", false]], "code_execution_result (genai.types.partdict attribute)": [[0, "genai.types.PartDict.code_execution_result", false]], "codeexecutionresultdict (class in genai.types)": [[0, "genai.types.CodeExecutionResultDict", false]], "comment (genai.types.testtablefile attribute)": [[0, "genai.types.TestTableFile.comment", false]], "comment (genai.types.testtablefiledict attribute)": [[0, "genai.types.TestTableFileDict.comment", false]], "compute_tokens() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.compute_tokens", false]], "compute_tokens() (genai.models.models method)": [[0, "genai.models.Models.compute_tokens", false]], "computetokensconfigdict (class in genai.types)": [[0, "genai.types.ComputeTokensConfigDict", false]], "computetokensresponsedict (class in genai.types)": [[0, "genai.types.ComputeTokensResponseDict", false]], "confidence_scores (genai.types.groundingsupport attribute)": [[0, "genai.types.GroundingSupport.confidence_scores", false]], "confidence_scores (genai.types.groundingsupportdict attribute)": [[0, "genai.types.GroundingSupportDict.confidence_scores", false]], "config (genai.types.controlreferenceimage attribute)": [[0, "genai.types.ControlReferenceImage.config", false]], "config (genai.types.controlreferenceimagedict attribute)": [[0, "genai.types.ControlReferenceImageDict.config", false]], "config (genai.types.maskreferenceimage attribute)": [[0, "genai.types.MaskReferenceImage.config", false]], "config (genai.types.maskreferenceimagedict attribute)": [[0, "genai.types.MaskReferenceImageDict.config", false]], "config (genai.types.stylereferenceimage attribute)": [[0, "genai.types.StyleReferenceImage.config", false]], "config (genai.types.stylereferenceimagedict attribute)": [[0, "genai.types.StyleReferenceImageDict.config", false]], "config (genai.types.subjectreferenceimage attribute)": [[0, "genai.types.SubjectReferenceImage.config", false]], "config (genai.types.subjectreferenceimagedict attribute)": [[0, "genai.types.SubjectReferenceImageDict.config", false]], "config (genai.types.upscaleimageparameters attribute)": [[0, "genai.types.UpscaleImageParameters.config", false]], "config (genai.types.upscaleimageparametersdict attribute)": [[0, "genai.types.UpscaleImageParametersDict.config", false]], "connect() (genai.live.asynclive method)": [[0, "genai.live.AsyncLive.connect", false]], "content (genai.types.candidate attribute)": [[0, "genai.types.Candidate.content", false]], "content (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.content", false]], "contentdict (class in genai.types)": [[0, "genai.types.ContentDict", false]], "contentembeddingdict (class in genai.types)": [[0, "genai.types.ContentEmbeddingDict", false]], "contentembeddingstatisticsdict (class in genai.types)": [[0, "genai.types.ContentEmbeddingStatisticsDict", false]], "contents (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.contents", false]], "contents (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.contents", false]], "control_image_config (genai.types.controlreferenceimage attribute)": [[0, "genai.types.ControlReferenceImage.control_image_config", false]], "control_type (genai.types.controlreferenceconfig attribute)": [[0, "genai.types.ControlReferenceConfig.control_type", false]], "control_type (genai.types.controlreferenceconfigdict attribute)": [[0, "genai.types.ControlReferenceConfigDict.control_type", false]], "control_type_canny (genai.types.controlreferencetype attribute)": [[0, "genai.types.ControlReferenceType.CONTROL_TYPE_CANNY", false]], "control_type_default (genai.types.controlreferencetype attribute)": [[0, "genai.types.ControlReferenceType.CONTROL_TYPE_DEFAULT", false]], "control_type_face_mesh (genai.types.controlreferencetype attribute)": [[0, "genai.types.ControlReferenceType.CONTROL_TYPE_FACE_MESH", false]], "control_type_scribble (genai.types.controlreferencetype attribute)": [[0, "genai.types.ControlReferenceType.CONTROL_TYPE_SCRIBBLE", false]], "controlreferenceconfigdict (class in genai.types)": [[0, "genai.types.ControlReferenceConfigDict", false]], "controlreferenceimagedict (class in genai.types)": [[0, "genai.types.ControlReferenceImageDict", false]], "controlreferencetype (class in genai.types)": [[0, "genai.types.ControlReferenceType", false]], "count (genai.types.datasetdistributiondistributionbucket attribute)": [[0, "genai.types.DatasetDistributionDistributionBucket.count", false]], "count (genai.types.datasetdistributiondistributionbucketdict attribute)": [[0, "genai.types.DatasetDistributionDistributionBucketDict.count", false]], "count (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucket.count", false]], "count (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.count", false]], "count_tokens() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.count_tokens", false]], "count_tokens() (genai.models.models method)": [[0, "genai.models.Models.count_tokens", false]], "counttokensconfigdict (class in genai.types)": [[0, "genai.types.CountTokensConfigDict", false]], "counttokensresponsedict (class in genai.types)": [[0, "genai.types.CountTokensResponseDict", false]], "create() (genai.batches.asyncbatches method)": [[0, "genai.batches.AsyncBatches.create", false]], "create() (genai.batches.batches method)": [[0, "genai.batches.Batches.create", false]], "create() (genai.caches.asynccaches method)": [[0, "genai.caches.AsyncCaches.create", false]], "create() (genai.caches.caches method)": [[0, "genai.caches.Caches.create", false]], "create() (genai.chats.asyncchats method)": [[0, "genai.chats.AsyncChats.create", false]], "create() (genai.chats.chats method)": [[0, "genai.chats.Chats.create", false]], "create_time (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.create_time", false]], "create_time (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.create_time", false]], "create_time (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.create_time", false]], "create_time (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.create_time", false]], "create_time (genai.types.file attribute)": [[0, "genai.types.File.create_time", false]], "create_time (genai.types.filedict attribute)": [[0, "genai.types.FileDict.create_time", false]], "create_time (genai.types.tunedmodelinfo attribute)": [[0, "genai.types.TunedModelInfo.create_time", false]], "create_time (genai.types.tunedmodelinfodict attribute)": [[0, "genai.types.TunedModelInfoDict.create_time", false]], "create_time (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.create_time", false]], "create_time (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.create_time", false]], "createbatchjobconfigdict (class in genai.types)": [[0, "genai.types.CreateBatchJobConfigDict", false]], "createcachedcontentconfigdict (class in genai.types)": [[0, "genai.types.CreateCachedContentConfigDict", false]], "createfileconfigdict (class in genai.types)": [[0, "genai.types.CreateFileConfigDict", false]], "createfileresponsedict (class in genai.types)": [[0, "genai.types.CreateFileResponseDict", false]], "createtuningjobconfigdict (class in genai.types)": [[0, "genai.types.CreateTuningJobConfigDict", false]], "credentials (genai.client.client attribute)": [[0, "genai.client.Client.credentials", false]], "data (genai.types.blob attribute)": [[0, "genai.types.Blob.data", false]], "data (genai.types.blobdict attribute)": [[0, "genai.types.BlobDict.data", false]], "data (genai.types.liveservermessage property)": [[0, "genai.types.LiveServerMessage.data", false]], "datasetdistributiondict (class in genai.types)": [[0, "genai.types.DatasetDistributionDict", false]], "datasetdistributiondistributionbucketdict (class in genai.types)": [[0, "genai.types.DatasetDistributionDistributionBucketDict", false]], "datasetstatsdict (class in genai.types)": [[0, "genai.types.DatasetStatsDict", false]], "datastore (genai.types.vertexaisearch attribute)": [[0, "genai.types.VertexAISearch.datastore", false]], "datastore (genai.types.vertexaisearchdict attribute)": [[0, "genai.types.VertexAISearchDict.datastore", false]], "day (genai.types.googletypedate attribute)": [[0, "genai.types.GoogleTypeDate.day", false]], "day (genai.types.googletypedatedict attribute)": [[0, "genai.types.GoogleTypeDateDict.day", false]], "debug_config (genai.client.client attribute)": [[0, "genai.client.Client.debug_config", false]], "dedicated_resources (genai.types.deploymentresourcestype attribute)": [[0, "genai.types.DeploymentResourcesType.DEDICATED_RESOURCES", false]], "default (genai.types.schema attribute)": [[0, "genai.types.Schema.default", false]], "default (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.default", false]], "delete() (genai.batches.asyncbatches method)": [[0, "genai.batches.AsyncBatches.delete", false]], "delete() (genai.batches.batches method)": [[0, "genai.batches.Batches.delete", false]], "delete() (genai.caches.asynccaches method)": [[0, "genai.caches.AsyncCaches.delete", false]], "delete() (genai.caches.caches method)": [[0, "genai.caches.Caches.delete", false]], "delete() (genai.files.asyncfiles method)": [[0, "genai.files.AsyncFiles.delete", false]], "delete() (genai.files.files method)": [[0, "genai.files.Files.delete", false]], "delete() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.delete", false]], "delete() (genai.models.models method)": [[0, "genai.models.Models.delete", false]], "deletebatchjobconfigdict (class in genai.types)": [[0, "genai.types.DeleteBatchJobConfigDict", false]], "deletecachedcontentconfigdict (class in genai.types)": [[0, "genai.types.DeleteCachedContentConfigDict", false]], "deletecachedcontentresponsedict (class in genai.types)": [[0, "genai.types.DeleteCachedContentResponseDict", false]], "deletefileconfigdict (class in genai.types)": [[0, "genai.types.DeleteFileConfigDict", false]], "deletefileresponsedict (class in genai.types)": [[0, "genai.types.DeleteFileResponseDict", false]], "deletemodelconfigdict (class in genai.types)": [[0, "genai.types.DeleteModelConfigDict", false]], "deletemodelresponsedict (class in genai.types)": [[0, "genai.types.DeleteModelResponseDict", false]], "deleteresourcejobdict (class in genai.types)": [[0, "genai.types.DeleteResourceJobDict", false]], "deployed_model_id (genai.types.endpoint attribute)": [[0, "genai.types.Endpoint.deployed_model_id", false]], "deployed_model_id (genai.types.endpointdict attribute)": [[0, "genai.types.EndpointDict.deployed_model_id", false]], "deployment_resources_type_unspecified (genai.types.deploymentresourcestype attribute)": [[0, "genai.types.DeploymentResourcesType.DEPLOYMENT_RESOURCES_TYPE_UNSPECIFIED", false]], "deploymentresourcestype (class in genai.types)": [[0, "genai.types.DeploymentResourcesType", false]], "description (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.description", false]], "description (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.description", false]], "description (genai.types.functiondeclaration attribute)": [[0, "genai.types.FunctionDeclaration.description", false]], "description (genai.types.functiondeclarationdict attribute)": [[0, "genai.types.FunctionDeclarationDict.description", false]], "description (genai.types.model attribute)": [[0, "genai.types.Model.description", false]], "description (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.description", false]], "description (genai.types.schema attribute)": [[0, "genai.types.Schema.description", false]], "description (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.description", false]], "description (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.description", false]], "description (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.description", false]], "description (genai.types.updatemodelconfig attribute)": [[0, "genai.types.UpdateModelConfig.description", false]], "description (genai.types.updatemodelconfigdict attribute)": [[0, "genai.types.UpdateModelConfigDict.description", false]], "dest (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.dest", false]], "dest (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.dest", false]], "dest (genai.types.createbatchjobconfig attribute)": [[0, "genai.types.CreateBatchJobConfig.dest", false]], "dest (genai.types.createbatchjobconfigdict attribute)": [[0, "genai.types.CreateBatchJobConfigDict.dest", false]], "details (genai.types.filestatus attribute)": [[0, "genai.types.FileStatus.details", false]], "details (genai.types.filestatusdict attribute)": [[0, "genai.types.FileStatusDict.details", false]], "details (genai.types.googlerpcstatus attribute)": [[0, "genai.types.GoogleRpcStatus.details", false]], "details (genai.types.googlerpcstatusdict attribute)": [[0, "genai.types.GoogleRpcStatusDict.details", false]], "details (genai.types.joberror attribute)": [[0, "genai.types.JobError.details", false]], "details (genai.types.joberrordict attribute)": [[0, "genai.types.JobErrorDict.details", false]], "disable (genai.types.automaticfunctioncallingconfig attribute)": [[0, "genai.types.AutomaticFunctionCallingConfig.disable", false]], "disable (genai.types.automaticfunctioncallingconfigdict attribute)": [[0, "genai.types.AutomaticFunctionCallingConfigDict.disable", false]], "disable_attribution (genai.types.retrieval attribute)": [[0, "genai.types.Retrieval.disable_attribution", false]], "disable_attribution (genai.types.retrievaldict attribute)": [[0, "genai.types.RetrievalDict.disable_attribution", false]], "display_name (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.display_name", false]], "display_name (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.display_name", false]], "display_name (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.display_name", false]], "display_name (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.display_name", false]], "display_name (genai.types.createbatchjobconfig attribute)": [[0, "genai.types.CreateBatchJobConfig.display_name", false]], "display_name (genai.types.createbatchjobconfigdict attribute)": [[0, "genai.types.CreateBatchJobConfigDict.display_name", false]], "display_name (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.display_name", false]], "display_name (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.display_name", false]], "display_name (genai.types.file attribute)": [[0, "genai.types.File.display_name", false]], "display_name (genai.types.filedict attribute)": [[0, "genai.types.FileDict.display_name", false]], "display_name (genai.types.model attribute)": [[0, "genai.types.Model.display_name", false]], "display_name (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.display_name", false]], "display_name (genai.types.updatemodelconfig attribute)": [[0, "genai.types.UpdateModelConfig.display_name", false]], "display_name (genai.types.updatemodelconfigdict attribute)": [[0, "genai.types.UpdateModelConfigDict.display_name", false]], "display_name (genai.types.uploadfileconfig attribute)": [[0, "genai.types.UploadFileConfig.display_name", false]], "display_name (genai.types.uploadfileconfigdict attribute)": [[0, "genai.types.UploadFileConfigDict.display_name", false]], "distillation_data_stats (genai.types.tuningdatastats attribute)": [[0, "genai.types.TuningDataStats.distillation_data_stats", false]], "distillation_data_stats (genai.types.tuningdatastatsdict attribute)": [[0, "genai.types.TuningDataStatsDict.distillation_data_stats", false]], "distillation_spec (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.distillation_spec", false]], "distillation_spec (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.distillation_spec", false]], "distillationdatastatsdict (class in genai.types)": [[0, "genai.types.DistillationDataStatsDict", false]], "distillationhyperparametersdict (class in genai.types)": [[0, "genai.types.DistillationHyperParametersDict", false]], "distillationspecdict (class in genai.types)": [[0, "genai.types.DistillationSpecDict", false]], "done (genai.types.deleteresourcejob attribute)": [[0, "genai.types.DeleteResourceJob.done", false]], "done (genai.types.deleteresourcejobdict attribute)": [[0, "genai.types.DeleteResourceJobDict.done", false]], "done (genai.types.operation attribute)": [[0, "genai.types.Operation.done", false]], "done (genai.types.operationdict attribute)": [[0, "genai.types.OperationDict.done", false]], "dont_allow (genai.types.persongeneration attribute)": [[0, "genai.types.PersonGeneration.DONT_ALLOW", false]], "download() (genai.files.asyncfiles method)": [[0, "genai.files.AsyncFiles.download", false]], "download() (genai.files.files method)": [[0, "genai.files.Files.download", false]], "download_uri (genai.types.file attribute)": [[0, "genai.types.File.download_uri", false]], "download_uri (genai.types.filedict attribute)": [[0, "genai.types.FileDict.download_uri", false]], "downloadfileconfigdict (class in genai.types)": [[0, "genai.types.DownloadFileConfigDict", false]], "dynamic_retrieval_config (genai.types.googlesearchretrieval attribute)": [[0, "genai.types.GoogleSearchRetrieval.dynamic_retrieval_config", false]], "dynamic_retrieval_config (genai.types.googlesearchretrievaldict attribute)": [[0, "genai.types.GoogleSearchRetrievalDict.dynamic_retrieval_config", false]], "dynamic_threshold (genai.types.dynamicretrievalconfig attribute)": [[0, "genai.types.DynamicRetrievalConfig.dynamic_threshold", false]], "dynamic_threshold (genai.types.dynamicretrievalconfigdict attribute)": [[0, "genai.types.DynamicRetrievalConfigDict.dynamic_threshold", false]], "dynamicretrievalconfigdict (class in genai.types)": [[0, "genai.types.DynamicRetrievalConfigDict", false]], "dynamicretrievalconfigmode (class in genai.types)": [[0, "genai.types.DynamicRetrievalConfigMode", false]], "edit_image() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.edit_image", false]], "edit_image() (genai.models.models method)": [[0, "genai.models.Models.edit_image", false]], "edit_mode (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.edit_mode", false]], "edit_mode (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.edit_mode", false]], "edit_mode_bgswap (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_BGSWAP", false]], "edit_mode_controlled_editing (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_CONTROLLED_EDITING", false]], "edit_mode_default (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_DEFAULT", false]], "edit_mode_inpaint_insertion (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_INPAINT_INSERTION", false]], "edit_mode_inpaint_removal (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_INPAINT_REMOVAL", false]], "edit_mode_outpaint (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_OUTPAINT", false]], "edit_mode_product_image (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_PRODUCT_IMAGE", false]], "edit_mode_style (genai.types.editmode attribute)": [[0, "genai.types.EditMode.EDIT_MODE_STYLE", false]], "editimageconfigdict (class in genai.types)": [[0, "genai.types.EditImageConfigDict", false]], "editimageresponsedict (class in genai.types)": [[0, "genai.types.EditImageResponseDict", false]], "editmode (class in genai.types)": [[0, "genai.types.EditMode", false]], "embed_content() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.embed_content", false]], "embed_content() (genai.models.models method)": [[0, "genai.models.Models.embed_content", false]], "embedcontentconfigdict (class in genai.types)": [[0, "genai.types.EmbedContentConfigDict", false]], "embedcontentmetadatadict (class in genai.types)": [[0, "genai.types.EmbedContentMetadataDict", false]], "embedcontentresponsedict (class in genai.types)": [[0, "genai.types.EmbedContentResponseDict", false]], "embeddings (genai.types.embedcontentresponse attribute)": [[0, "genai.types.EmbedContentResponse.embeddings", false]], "embeddings (genai.types.embedcontentresponsedict attribute)": [[0, "genai.types.EmbedContentResponseDict.embeddings", false]], "en (genai.types.imagepromptlanguage attribute)": [[0, "genai.types.ImagePromptLanguage.en", false]], "enable_control_image_computation (genai.types.controlreferenceconfig attribute)": [[0, "genai.types.ControlReferenceConfig.enable_control_image_computation", false]], "enable_control_image_computation (genai.types.controlreferenceconfigdict attribute)": [[0, "genai.types.ControlReferenceConfigDict.enable_control_image_computation", false]], "encryption_spec (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.encryption_spec", false]], "encryption_spec (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.encryption_spec", false]], "encryptionspecdict (class in genai.types)": [[0, "genai.types.EncryptionSpecDict", false]], "end_index (genai.types.citation attribute)": [[0, "genai.types.Citation.end_index", false]], "end_index (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.end_index", false]], "end_index (genai.types.segment attribute)": [[0, "genai.types.Segment.end_index", false]], "end_index (genai.types.segmentdict attribute)": [[0, "genai.types.SegmentDict.end_index", false]], "end_offset (genai.types.videometadata attribute)": [[0, "genai.types.VideoMetadata.end_offset", false]], "end_offset (genai.types.videometadatadict attribute)": [[0, "genai.types.VideoMetadataDict.end_offset", false]], "end_time (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.end_time", false]], "end_time (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.end_time", false]], "end_time (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.end_time", false]], "end_time (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.end_time", false]], "endpoint (genai.types.tunedmodel attribute)": [[0, "genai.types.TunedModel.endpoint", false]], "endpoint (genai.types.tunedmodeldict attribute)": [[0, "genai.types.TunedModelDict.endpoint", false]], "endpointdict (class in genai.types)": [[0, "genai.types.EndpointDict", false]], "endpoints (genai.types.model attribute)": [[0, "genai.types.Model.endpoints", false]], "endpoints (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.endpoints", false]], "enhance_prompt (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.enhance_prompt", false]], "enhance_prompt (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.enhance_prompt", false]], "enhanced_prompt (genai.types.generatedimage attribute)": [[0, "genai.types.GeneratedImage.enhanced_prompt", false]], "enhanced_prompt (genai.types.generatedimagedict attribute)": [[0, "genai.types.GeneratedImageDict.enhanced_prompt", false]], "enum (genai.types.schema attribute)": [[0, "genai.types.Schema.enum", false]], "enum (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.enum", false]], "epoch_count (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.epoch_count", false]], "epoch_count (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.epoch_count", false]], "epoch_count (genai.types.distillationhyperparameters attribute)": [[0, "genai.types.DistillationHyperParameters.epoch_count", false]], "epoch_count (genai.types.distillationhyperparametersdict attribute)": [[0, "genai.types.DistillationHyperParametersDict.epoch_count", false]], "epoch_count (genai.types.supervisedhyperparameters attribute)": [[0, "genai.types.SupervisedHyperParameters.epoch_count", false]], "epoch_count (genai.types.supervisedhyperparametersdict attribute)": [[0, "genai.types.SupervisedHyperParametersDict.epoch_count", false]], "error (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.error", false]], "error (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.error", false]], "error (genai.types.deleteresourcejob attribute)": [[0, "genai.types.DeleteResourceJob.error", false]], "error (genai.types.deleteresourcejobdict attribute)": [[0, "genai.types.DeleteResourceJobDict.error", false]], "error (genai.types.file attribute)": [[0, "genai.types.File.error", false]], "error (genai.types.filedict attribute)": [[0, "genai.types.FileDict.error", false]], "error (genai.types.operation attribute)": [[0, "genai.types.Operation.error", false]], "error (genai.types.operationdict attribute)": [[0, "genai.types.OperationDict.error", false]], "error (genai.types.state attribute)": [[0, "genai.types.State.ERROR", false]], "error (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.error", false]], "error (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.error", false]], "example (genai.types.schema attribute)": [[0, "genai.types.Schema.example", false]], "example (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.example", false]], "examples (genai.types.tuningdataset attribute)": [[0, "genai.types.TuningDataset.examples", false]], "examples (genai.types.tuningdatasetdict attribute)": [[0, "genai.types.TuningDatasetDict.examples", false]], "exception_if_mldev (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.exception_if_mldev", false]], "exception_if_mldev (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.exception_if_mldev", false]], "exception_if_vertex (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.exception_if_vertex", false]], "exception_if_vertex (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.exception_if_vertex", false]], "executable_code (genai.types.part attribute)": [[0, "genai.types.Part.executable_code", false]], "executable_code (genai.types.partdict attribute)": [[0, "genai.types.PartDict.executable_code", false]], "executablecodedict (class in genai.types)": [[0, "genai.types.ExecutableCodeDict", false]], "experiment (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.experiment", false]], "experiment (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.experiment", false]], "expiration_time (genai.types.file attribute)": [[0, "genai.types.File.expiration_time", false]], "expiration_time (genai.types.filedict attribute)": [[0, "genai.types.FileDict.expiration_time", false]], "expire_time (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.expire_time", false]], "expire_time (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.expire_time", false]], "expire_time (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.expire_time", false]], "expire_time (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.expire_time", false]], "expire_time (genai.types.updatecachedcontentconfig attribute)": [[0, "genai.types.UpdateCachedContentConfig.expire_time", false]], "expire_time (genai.types.updatecachedcontentconfigdict attribute)": [[0, "genai.types.UpdateCachedContentConfigDict.expire_time", false]], "failed (genai.types.filestate attribute)": [[0, "genai.types.FileState.FAILED", false]], "fetchpredictoperationconfigdict (class in genai.types)": [[0, "genai.types.FetchPredictOperationConfigDict", false]], "file_data (genai.types.part attribute)": [[0, "genai.types.Part.file_data", false]], "file_data (genai.types.partdict attribute)": [[0, "genai.types.PartDict.file_data", false]], "file_uri (genai.types.filedata attribute)": [[0, "genai.types.FileData.file_uri", false]], "file_uri (genai.types.filedatadict attribute)": [[0, "genai.types.FileDataDict.file_uri", false]], "filedatadict (class in genai.types)": [[0, "genai.types.FileDataDict", false]], "filedict (class in genai.types)": [[0, "genai.types.FileDict", false]], "files (class in genai.files)": [[0, "genai.files.Files", false]], "files (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.files", false]], "files (genai.client.client property)": [[0, "genai.client.Client.files", false]], "files (genai.types.listfilesresponse attribute)": [[0, "genai.types.ListFilesResponse.files", false]], "files (genai.types.listfilesresponsedict attribute)": [[0, "genai.types.ListFilesResponseDict.files", false]], "filesource (class in genai.types)": [[0, "genai.types.FileSource", false]], "filestate (class in genai.types)": [[0, "genai.types.FileState", false]], "filestatusdict (class in genai.types)": [[0, "genai.types.FileStatusDict", false]], "filter (genai.types.listbatchjobsconfig attribute)": [[0, "genai.types.ListBatchJobsConfig.filter", false]], "filter (genai.types.listbatchjobsconfigdict attribute)": [[0, "genai.types.ListBatchJobsConfigDict.filter", false]], "filter (genai.types.listmodelsconfig attribute)": [[0, "genai.types.ListModelsConfig.filter", false]], "filter (genai.types.listmodelsconfigdict attribute)": [[0, "genai.types.ListModelsConfigDict.filter", false]], "filter (genai.types.listtuningjobsconfig attribute)": [[0, "genai.types.ListTuningJobsConfig.filter", false]], "filter (genai.types.listtuningjobsconfigdict attribute)": [[0, "genai.types.ListTuningJobsConfigDict.filter", false]], "finish_message (genai.types.candidate attribute)": [[0, "genai.types.Candidate.finish_message", false]], "finish_message (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.finish_message", false]], "finish_reason (genai.types.candidate attribute)": [[0, "genai.types.Candidate.finish_reason", false]], "finish_reason (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.finish_reason", false]], "finish_reason_unspecified (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.FINISH_REASON_UNSPECIFIED", false]], "finishreason (class in genai.types)": [[0, "genai.types.FinishReason", false]], "format (genai.types.batchjobdestination attribute)": [[0, "genai.types.BatchJobDestination.format", false]], "format (genai.types.batchjobdestinationdict attribute)": [[0, "genai.types.BatchJobDestinationDict.format", false]], "format (genai.types.batchjobsource attribute)": [[0, "genai.types.BatchJobSource.format", false]], "format (genai.types.batchjobsourcedict attribute)": [[0, "genai.types.BatchJobSourceDict.format", false]], "format (genai.types.schema attribute)": [[0, "genai.types.Schema.format", false]], "format (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.format", false]], "frequency_penalty (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.frequency_penalty", false]], "frequency_penalty (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.frequency_penalty", false]], "frequency_penalty (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.frequency_penalty", false]], "frequency_penalty (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.frequency_penalty", false]], "from_bytes() (genai.types.part class method)": [[0, "genai.types.Part.from_bytes", false]], "from_callable() (genai.types.functiondeclaration class method)": [[0, "genai.types.FunctionDeclaration.from_callable", false]], "from_callable_with_api_option() (genai.types.functiondeclaration class method)": [[0, "genai.types.FunctionDeclaration.from_callable_with_api_option", false]], "from_code_execution_result() (genai.types.part class method)": [[0, "genai.types.Part.from_code_execution_result", false]], "from_executable_code() (genai.types.part class method)": [[0, "genai.types.Part.from_executable_code", false]], "from_file() (genai.types.image class method)": [[0, "genai.types.Image.from_file", false]], "from_function_call() (genai.types.part class method)": [[0, "genai.types.Part.from_function_call", false]], "from_function_response() (genai.types.part class method)": [[0, "genai.types.Part.from_function_response", false]], "from_text() (genai.types.part class method)": [[0, "genai.types.Part.from_text", false]], "from_uri() (genai.types.part class method)": [[0, "genai.types.Part.from_uri", false]], "from_video_metadata() (genai.types.part class method)": [[0, "genai.types.Part.from_video_metadata", false]], "function_call (genai.types.part attribute)": [[0, "genai.types.Part.function_call", false]], "function_call (genai.types.partdict attribute)": [[0, "genai.types.PartDict.function_call", false]], "function_calling_config (genai.types.toolconfig attribute)": [[0, "genai.types.ToolConfig.function_calling_config", false]], "function_calling_config (genai.types.toolconfigdict attribute)": [[0, "genai.types.ToolConfigDict.function_calling_config", false]], "function_calls (genai.types.generatecontentresponse property)": [[0, "genai.types.GenerateContentResponse.function_calls", false]], "function_calls (genai.types.liveservertoolcall attribute)": [[0, "genai.types.LiveServerToolCall.function_calls", false]], "function_calls (genai.types.liveservertoolcalldict attribute)": [[0, "genai.types.LiveServerToolCallDict.function_calls", false]], "function_declarations (genai.types.tool attribute)": [[0, "genai.types.Tool.function_declarations", false]], "function_declarations (genai.types.tooldict attribute)": [[0, "genai.types.ToolDict.function_declarations", false]], "function_response (genai.types.part attribute)": [[0, "genai.types.Part.function_response", false]], "function_response (genai.types.partdict attribute)": [[0, "genai.types.PartDict.function_response", false]], "function_responses (genai.types.liveclienttoolresponse attribute)": [[0, "genai.types.LiveClientToolResponse.function_responses", false]], "function_responses (genai.types.liveclienttoolresponsedict attribute)": [[0, "genai.types.LiveClientToolResponseDict.function_responses", false]], "functioncalldict (class in genai.types)": [[0, "genai.types.FunctionCallDict", false]], "functioncallingconfigdict (class in genai.types)": [[0, "genai.types.FunctionCallingConfigDict", false]], "functioncallingconfigmode (class in genai.types)": [[0, "genai.types.FunctionCallingConfigMode", false]], "functiondeclarationdict (class in genai.types)": [[0, "genai.types.FunctionDeclarationDict", false]], "functionresponsedict (class in genai.types)": [[0, "genai.types.FunctionResponseDict", false]], "gcs_uri (genai.types.batchjobdestination attribute)": [[0, "genai.types.BatchJobDestination.gcs_uri", false]], "gcs_uri (genai.types.batchjobdestinationdict attribute)": [[0, "genai.types.BatchJobDestinationDict.gcs_uri", false]], "gcs_uri (genai.types.batchjobsource attribute)": [[0, "genai.types.BatchJobSource.gcs_uri", false]], "gcs_uri (genai.types.batchjobsourcedict attribute)": [[0, "genai.types.BatchJobSourceDict.gcs_uri", false]], "gcs_uri (genai.types.image attribute)": [[0, "genai.types.Image.gcs_uri", false]], "gcs_uri (genai.types.imagedict attribute)": [[0, "genai.types.ImageDict.gcs_uri", false]], "gcs_uri (genai.types.tuningdataset attribute)": [[0, "genai.types.TuningDataset.gcs_uri", false]], "gcs_uri (genai.types.tuningdatasetdict attribute)": [[0, "genai.types.TuningDatasetDict.gcs_uri", false]], "gcs_uri (genai.types.tuningvalidationdataset attribute)": [[0, "genai.types.TuningValidationDataset.gcs_uri", false]], "gcs_uri (genai.types.tuningvalidationdatasetdict attribute)": [[0, "genai.types.TuningValidationDatasetDict.gcs_uri", false]], "genai.batches": [[0, "module-genai.batches", false]], "genai.caches": [[0, "module-genai.caches", false]], "genai.chats": [[0, "module-genai.chats", false]], "genai.client": [[0, "module-genai.client", false]], "genai.files": [[0, "module-genai.files", false]], "genai.live": [[0, "module-genai.live", false]], "genai.models": [[0, "module-genai.models", false]], "genai.tunings": [[0, "module-genai.tunings", false]], "genai.types": [[0, "module-genai.types", false]], "generate_content() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.generate_content", false]], "generate_content() (genai.models.models method)": [[0, "genai.models.Models.generate_content", false]], "generate_content_stream() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.generate_content_stream", false]], "generate_content_stream() (genai.models.models method)": [[0, "genai.models.Models.generate_content_stream", false]], "generate_images() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.generate_images", false]], "generate_images() (genai.models.models method)": [[0, "genai.models.Models.generate_images", false]], "generatecontentconfigdict (class in genai.types)": [[0, "genai.types.GenerateContentConfigDict", false]], "generatecontentresponsedict (class in genai.types)": [[0, "genai.types.GenerateContentResponseDict", false]], "generatecontentresponsepromptfeedbackdict (class in genai.types)": [[0, "genai.types.GenerateContentResponsePromptFeedbackDict", false]], "generatecontentresponseusagemetadatadict (class in genai.types)": [[0, "genai.types.GenerateContentResponseUsageMetadataDict", false]], "generated (genai.types.filesource attribute)": [[0, "genai.types.FileSource.GENERATED", false]], "generated_images (genai.types.editimageresponse attribute)": [[0, "genai.types.EditImageResponse.generated_images", false]], "generated_images (genai.types.editimageresponsedict attribute)": [[0, "genai.types.EditImageResponseDict.generated_images", false]], "generated_images (genai.types.generateimagesresponse attribute)": [[0, "genai.types.GenerateImagesResponse.generated_images", false]], "generated_images (genai.types.generateimagesresponsedict attribute)": [[0, "genai.types.GenerateImagesResponseDict.generated_images", false]], "generated_images (genai.types.upscaleimageresponse attribute)": [[0, "genai.types.UpscaleImageResponse.generated_images", false]], "generated_images (genai.types.upscaleimageresponsedict attribute)": [[0, "genai.types.UpscaleImageResponseDict.generated_images", false]], "generatedimagedict (class in genai.types)": [[0, "genai.types.GeneratedImageDict", false]], "generateimagesconfigdict (class in genai.types)": [[0, "genai.types.GenerateImagesConfigDict", false]], "generateimagesresponsedict (class in genai.types)": [[0, "genai.types.GenerateImagesResponseDict", false]], "generation_config (genai.types.counttokensconfig attribute)": [[0, "genai.types.CountTokensConfig.generation_config", false]], "generation_config (genai.types.counttokensconfigdict attribute)": [[0, "genai.types.CountTokensConfigDict.generation_config", false]], "generation_config (genai.types.liveclientsetup attribute)": [[0, "genai.types.LiveClientSetup.generation_config", false]], "generation_config (genai.types.liveclientsetupdict attribute)": [[0, "genai.types.LiveClientSetupDict.generation_config", false]], "generation_config (genai.types.liveconnectconfig attribute)": [[0, "genai.types.LiveConnectConfig.generation_config", false]], "generation_config (genai.types.liveconnectconfigdict attribute)": [[0, "genai.types.LiveConnectConfigDict.generation_config", false]], "generationconfigdict (class in genai.types)": [[0, "genai.types.GenerationConfigDict", false]], "generationconfigroutingconfigautoroutingmodedict (class in genai.types)": [[0, "genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict", false]], "generationconfigroutingconfigdict (class in genai.types)": [[0, "genai.types.GenerationConfigRoutingConfigDict", false]], "generationconfigroutingconfigmanualroutingmodedict (class in genai.types)": [[0, "genai.types.GenerationConfigRoutingConfigManualRoutingModeDict", false]], "get() (genai.batches.asyncbatches method)": [[0, "genai.batches.AsyncBatches.get", false]], "get() (genai.batches.batches method)": [[0, "genai.batches.Batches.get", false]], "get() (genai.caches.asynccaches method)": [[0, "genai.caches.AsyncCaches.get", false]], "get() (genai.caches.caches method)": [[0, "genai.caches.Caches.get", false]], "get() (genai.files.asyncfiles method)": [[0, "genai.files.AsyncFiles.get", false]], "get() (genai.files.files method)": [[0, "genai.files.Files.get", false]], "get() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.get", false]], "get() (genai.models.models method)": [[0, "genai.models.Models.get", false]], "get() (genai.tunings.asynctunings method)": [[0, "genai.tunings.AsyncTunings.get", false]], "get() (genai.tunings.tunings method)": [[0, "genai.tunings.Tunings.get", false]], "getbatchjobconfigdict (class in genai.types)": [[0, "genai.types.GetBatchJobConfigDict", false]], "getcachedcontentconfigdict (class in genai.types)": [[0, "genai.types.GetCachedContentConfigDict", false]], "getfileconfigdict (class in genai.types)": [[0, "genai.types.GetFileConfigDict", false]], "getmodelconfigdict (class in genai.types)": [[0, "genai.types.GetModelConfigDict", false]], "getoperationconfigdict (class in genai.types)": [[0, "genai.types.GetOperationConfigDict", false]], "gettuningjobconfigdict (class in genai.types)": [[0, "genai.types.GetTuningJobConfigDict", false]], "google_search (genai.types.tool attribute)": [[0, "genai.types.Tool.google_search", false]], "google_search (genai.types.tooldict attribute)": [[0, "genai.types.ToolDict.google_search", false]], "google_search_dynamic_retrieval_score (genai.types.retrievalmetadata attribute)": [[0, "genai.types.RetrievalMetadata.google_search_dynamic_retrieval_score", false]], "google_search_dynamic_retrieval_score (genai.types.retrievalmetadatadict attribute)": [[0, "genai.types.RetrievalMetadataDict.google_search_dynamic_retrieval_score", false]], "google_search_retrieval (genai.types.tool attribute)": [[0, "genai.types.Tool.google_search_retrieval", false]], "google_search_retrieval (genai.types.tooldict attribute)": [[0, "genai.types.ToolDict.google_search_retrieval", false]], "googlerpcstatusdict (class in genai.types)": [[0, "genai.types.GoogleRpcStatusDict", false]], "googlesearchdict (class in genai.types)": [[0, "genai.types.GoogleSearchDict", false]], "googlesearchretrievaldict (class in genai.types)": [[0, "genai.types.GoogleSearchRetrievalDict", false]], "googletypedatedict (class in genai.types)": [[0, "genai.types.GoogleTypeDateDict", false]], "grounding_chunk_indices (genai.types.groundingsupport attribute)": [[0, "genai.types.GroundingSupport.grounding_chunk_indices", false]], "grounding_chunk_indices (genai.types.groundingsupportdict attribute)": [[0, "genai.types.GroundingSupportDict.grounding_chunk_indices", false]], "grounding_chunks (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.grounding_chunks", false]], "grounding_chunks (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.grounding_chunks", false]], "grounding_metadata (genai.types.candidate attribute)": [[0, "genai.types.Candidate.grounding_metadata", false]], "grounding_metadata (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.grounding_metadata", false]], "grounding_supports (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.grounding_supports", false]], "grounding_supports (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.grounding_supports", false]], "groundingchunkdict (class in genai.types)": [[0, "genai.types.GroundingChunkDict", false]], "groundingchunkretrievedcontextdict (class in genai.types)": [[0, "genai.types.GroundingChunkRetrievedContextDict", false]], "groundingchunkwebdict (class in genai.types)": [[0, "genai.types.GroundingChunkWebDict", false]], "groundingmetadatadict (class in genai.types)": [[0, "genai.types.GroundingMetadataDict", false]], "groundingsupportdict (class in genai.types)": [[0, "genai.types.GroundingSupportDict", false]], "guidance_scale (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.guidance_scale", false]], "guidance_scale (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.guidance_scale", false]], "guidance_scale (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.guidance_scale", false]], "guidance_scale (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.guidance_scale", false]], "harm_block_method_unspecified (genai.types.harmblockmethod attribute)": [[0, "genai.types.HarmBlockMethod.HARM_BLOCK_METHOD_UNSPECIFIED", false]], "harm_block_threshold_unspecified (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.HARM_BLOCK_THRESHOLD_UNSPECIFIED", false]], "harm_category_civic_integrity (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_CIVIC_INTEGRITY", false]], "harm_category_dangerous_content (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT", false]], "harm_category_harassment (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_HARASSMENT", false]], "harm_category_hate_speech (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_HATE_SPEECH", false]], "harm_category_sexually_explicit (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT", false]], "harm_category_unspecified (genai.types.harmcategory attribute)": [[0, "genai.types.HarmCategory.HARM_CATEGORY_UNSPECIFIED", false]], "harm_probability_unspecified (genai.types.harmprobability attribute)": [[0, "genai.types.HarmProbability.HARM_PROBABILITY_UNSPECIFIED", false]], "harm_severity_high (genai.types.harmseverity attribute)": [[0, "genai.types.HarmSeverity.HARM_SEVERITY_HIGH", false]], "harm_severity_low (genai.types.harmseverity attribute)": [[0, "genai.types.HarmSeverity.HARM_SEVERITY_LOW", false]], "harm_severity_medium (genai.types.harmseverity attribute)": [[0, "genai.types.HarmSeverity.HARM_SEVERITY_MEDIUM", false]], "harm_severity_negligible (genai.types.harmseverity attribute)": [[0, "genai.types.HarmSeverity.HARM_SEVERITY_NEGLIGIBLE", false]], "harm_severity_unspecified (genai.types.harmseverity attribute)": [[0, "genai.types.HarmSeverity.HARM_SEVERITY_UNSPECIFIED", false]], "harmblockmethod (class in genai.types)": [[0, "genai.types.HarmBlockMethod", false]], "harmblockthreshold (class in genai.types)": [[0, "genai.types.HarmBlockThreshold", false]], "harmcategory (class in genai.types)": [[0, "genai.types.HarmCategory", false]], "harmprobability (class in genai.types)": [[0, "genai.types.HarmProbability", false]], "harmseverity (class in genai.types)": [[0, "genai.types.HarmSeverity", false]], "has_ended (genai.types.tuningjob property)": [[0, "genai.types.TuningJob.has_ended", false]], "has_succeeded (genai.types.tuningjob property)": [[0, "genai.types.TuningJob.has_succeeded", false]], "has_union (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.has_union", false]], "has_union (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.has_union", false]], "headers (genai.types.httpoptions attribute)": [[0, "genai.types.HttpOptions.headers", false]], "headers (genai.types.httpoptionsdict attribute)": [[0, "genai.types.HttpOptionsDict.headers", false]], "headers (genai.types.replayrequest attribute)": [[0, "genai.types.ReplayRequest.headers", false]], "headers (genai.types.replayrequestdict attribute)": [[0, "genai.types.ReplayRequestDict.headers", false]], "headers (genai.types.replayresponse attribute)": [[0, "genai.types.ReplayResponse.headers", false]], "headers (genai.types.replayresponsedict attribute)": [[0, "genai.types.ReplayResponseDict.headers", false]], "hi (genai.types.imagepromptlanguage attribute)": [[0, "genai.types.ImagePromptLanguage.hi", false]], "high (genai.types.harmprobability attribute)": [[0, "genai.types.HarmProbability.HIGH", false]], "http_headers (genai.types.createfileresponse attribute)": [[0, "genai.types.CreateFileResponse.http_headers", false]], "http_headers (genai.types.createfileresponsedict attribute)": [[0, "genai.types.CreateFileResponseDict.http_headers", false]], "http_options (genai.client.client attribute)": [[0, "genai.client.Client.http_options", false]], "http_options (genai.types.cancelbatchjobconfig attribute)": [[0, "genai.types.CancelBatchJobConfig.http_options", false]], "http_options (genai.types.cancelbatchjobconfigdict attribute)": [[0, "genai.types.CancelBatchJobConfigDict.http_options", false]], "http_options (genai.types.computetokensconfig attribute)": [[0, "genai.types.ComputeTokensConfig.http_options", false]], "http_options (genai.types.computetokensconfigdict attribute)": [[0, "genai.types.ComputeTokensConfigDict.http_options", false]], "http_options (genai.types.counttokensconfig attribute)": [[0, "genai.types.CountTokensConfig.http_options", false]], "http_options (genai.types.counttokensconfigdict attribute)": [[0, "genai.types.CountTokensConfigDict.http_options", false]], "http_options (genai.types.createbatchjobconfig attribute)": [[0, "genai.types.CreateBatchJobConfig.http_options", false]], "http_options (genai.types.createbatchjobconfigdict attribute)": [[0, "genai.types.CreateBatchJobConfigDict.http_options", false]], "http_options (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.http_options", false]], "http_options (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.http_options", false]], "http_options (genai.types.createfileconfig attribute)": [[0, "genai.types.CreateFileConfig.http_options", false]], "http_options (genai.types.createfileconfigdict attribute)": [[0, "genai.types.CreateFileConfigDict.http_options", false]], "http_options (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.http_options", false]], "http_options (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.http_options", false]], "http_options (genai.types.deletebatchjobconfig attribute)": [[0, "genai.types.DeleteBatchJobConfig.http_options", false]], "http_options (genai.types.deletebatchjobconfigdict attribute)": [[0, "genai.types.DeleteBatchJobConfigDict.http_options", false]], "http_options (genai.types.deletecachedcontentconfig attribute)": [[0, "genai.types.DeleteCachedContentConfig.http_options", false]], "http_options (genai.types.deletecachedcontentconfigdict attribute)": [[0, "genai.types.DeleteCachedContentConfigDict.http_options", false]], "http_options (genai.types.deletefileconfig attribute)": [[0, "genai.types.DeleteFileConfig.http_options", false]], "http_options (genai.types.deletefileconfigdict attribute)": [[0, "genai.types.DeleteFileConfigDict.http_options", false]], "http_options (genai.types.deletemodelconfig attribute)": [[0, "genai.types.DeleteModelConfig.http_options", false]], "http_options (genai.types.deletemodelconfigdict attribute)": [[0, "genai.types.DeleteModelConfigDict.http_options", false]], "http_options (genai.types.downloadfileconfig attribute)": [[0, "genai.types.DownloadFileConfig.http_options", false]], "http_options (genai.types.downloadfileconfigdict attribute)": [[0, "genai.types.DownloadFileConfigDict.http_options", false]], "http_options (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.http_options", false]], "http_options (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.http_options", false]], "http_options (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.http_options", false]], "http_options (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.http_options", false]], "http_options (genai.types.fetchpredictoperationconfig attribute)": [[0, "genai.types.FetchPredictOperationConfig.http_options", false]], "http_options (genai.types.fetchpredictoperationconfigdict attribute)": [[0, "genai.types.FetchPredictOperationConfigDict.http_options", false]], "http_options (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.http_options", false]], "http_options (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.http_options", false]], "http_options (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.http_options", false]], "http_options (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.http_options", false]], "http_options (genai.types.getbatchjobconfig attribute)": [[0, "genai.types.GetBatchJobConfig.http_options", false]], "http_options (genai.types.getbatchjobconfigdict attribute)": [[0, "genai.types.GetBatchJobConfigDict.http_options", false]], "http_options (genai.types.getcachedcontentconfig attribute)": [[0, "genai.types.GetCachedContentConfig.http_options", false]], "http_options (genai.types.getcachedcontentconfigdict attribute)": [[0, "genai.types.GetCachedContentConfigDict.http_options", false]], "http_options (genai.types.getfileconfig attribute)": [[0, "genai.types.GetFileConfig.http_options", false]], "http_options (genai.types.getfileconfigdict attribute)": [[0, "genai.types.GetFileConfigDict.http_options", false]], "http_options (genai.types.getmodelconfig attribute)": [[0, "genai.types.GetModelConfig.http_options", false]], "http_options (genai.types.getmodelconfigdict attribute)": [[0, "genai.types.GetModelConfigDict.http_options", false]], "http_options (genai.types.getoperationconfig attribute)": [[0, "genai.types.GetOperationConfig.http_options", false]], "http_options (genai.types.getoperationconfigdict attribute)": [[0, "genai.types.GetOperationConfigDict.http_options", false]], "http_options (genai.types.gettuningjobconfig attribute)": [[0, "genai.types.GetTuningJobConfig.http_options", false]], "http_options (genai.types.gettuningjobconfigdict attribute)": [[0, "genai.types.GetTuningJobConfigDict.http_options", false]], "http_options (genai.types.listbatchjobsconfig attribute)": [[0, "genai.types.ListBatchJobsConfig.http_options", false]], "http_options (genai.types.listbatchjobsconfigdict attribute)": [[0, "genai.types.ListBatchJobsConfigDict.http_options", false]], "http_options (genai.types.listcachedcontentsconfig attribute)": [[0, "genai.types.ListCachedContentsConfig.http_options", false]], "http_options (genai.types.listcachedcontentsconfigdict attribute)": [[0, "genai.types.ListCachedContentsConfigDict.http_options", false]], "http_options (genai.types.listfilesconfig attribute)": [[0, "genai.types.ListFilesConfig.http_options", false]], "http_options (genai.types.listfilesconfigdict attribute)": [[0, "genai.types.ListFilesConfigDict.http_options", false]], "http_options (genai.types.listmodelsconfig attribute)": [[0, "genai.types.ListModelsConfig.http_options", false]], "http_options (genai.types.listmodelsconfigdict attribute)": [[0, "genai.types.ListModelsConfigDict.http_options", false]], "http_options (genai.types.listtuningjobsconfig attribute)": [[0, "genai.types.ListTuningJobsConfig.http_options", false]], "http_options (genai.types.listtuningjobsconfigdict attribute)": [[0, "genai.types.ListTuningJobsConfigDict.http_options", false]], "http_options (genai.types.updatecachedcontentconfig attribute)": [[0, "genai.types.UpdateCachedContentConfig.http_options", false]], "http_options (genai.types.updatecachedcontentconfigdict attribute)": [[0, "genai.types.UpdateCachedContentConfigDict.http_options", false]], "http_options (genai.types.updatemodelconfig attribute)": [[0, "genai.types.UpdateModelConfig.http_options", false]], "http_options (genai.types.updatemodelconfigdict attribute)": [[0, "genai.types.UpdateModelConfigDict.http_options", false]], "http_options (genai.types.uploadfileconfig attribute)": [[0, "genai.types.UploadFileConfig.http_options", false]], "http_options (genai.types.uploadfileconfigdict attribute)": [[0, "genai.types.UploadFileConfigDict.http_options", false]], "http_options (genai.types.upscaleimageconfig attribute)": [[0, "genai.types.UpscaleImageConfig.http_options", false]], "http_options (genai.types.upscaleimageconfigdict attribute)": [[0, "genai.types.UpscaleImageConfigDict.http_options", false]], "httpoptionsdict (class in genai.types)": [[0, "genai.types.HttpOptionsDict", false]], "hyper_parameters (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.hyper_parameters", false]], "hyper_parameters (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.hyper_parameters", false]], "hyper_parameters (genai.types.partnermodeltuningspec attribute)": [[0, "genai.types.PartnerModelTuningSpec.hyper_parameters", false]], "hyper_parameters (genai.types.partnermodeltuningspecdict attribute)": [[0, "genai.types.PartnerModelTuningSpecDict.hyper_parameters", false]], "hyper_parameters (genai.types.supervisedtuningspec attribute)": [[0, "genai.types.SupervisedTuningSpec.hyper_parameters", false]], "hyper_parameters (genai.types.supervisedtuningspecdict attribute)": [[0, "genai.types.SupervisedTuningSpecDict.hyper_parameters", false]], "id (genai.types.functioncall attribute)": [[0, "genai.types.FunctionCall.id", false]], "id (genai.types.functioncalldict attribute)": [[0, "genai.types.FunctionCallDict.id", false]], "id (genai.types.functionresponse attribute)": [[0, "genai.types.FunctionResponse.id", false]], "id (genai.types.functionresponsedict attribute)": [[0, "genai.types.FunctionResponseDict.id", false]], "ids (genai.types.liveservertoolcallcancellation attribute)": [[0, "genai.types.LiveServerToolCallCancellation.ids", false]], "ids (genai.types.liveservertoolcallcancellationdict attribute)": [[0, "genai.types.LiveServerToolCallCancellationDict.ids", false]], "ignore_call_history (genai.types.automaticfunctioncallingconfig attribute)": [[0, "genai.types.AutomaticFunctionCallingConfig.ignore_call_history", false]], "ignore_call_history (genai.types.automaticfunctioncallingconfigdict attribute)": [[0, "genai.types.AutomaticFunctionCallingConfigDict.ignore_call_history", false]], "image (genai.types.generatedimage attribute)": [[0, "genai.types.GeneratedImage.image", false]], "image (genai.types.generatedimagedict attribute)": [[0, "genai.types.GeneratedImageDict.image", false]], "image (genai.types.modality attribute)": [[0, "genai.types.Modality.IMAGE", false]], "image (genai.types.upscaleimageparameters attribute)": [[0, "genai.types.UpscaleImageParameters.image", false]], "image (genai.types.upscaleimageparametersdict attribute)": [[0, "genai.types.UpscaleImageParametersDict.image", false]], "image_bytes (genai.types.image attribute)": [[0, "genai.types.Image.image_bytes", false]], "image_bytes (genai.types.imagedict attribute)": [[0, "genai.types.ImageDict.image_bytes", false]], "image_count (genai.types.cachedcontentusagemetadata attribute)": [[0, "genai.types.CachedContentUsageMetadata.image_count", false]], "image_count (genai.types.cachedcontentusagemetadatadict attribute)": [[0, "genai.types.CachedContentUsageMetadataDict.image_count", false]], "imagedict (class in genai.types)": [[0, "genai.types.ImageDict", false]], "imagepromptlanguage (class in genai.types)": [[0, "genai.types.ImagePromptLanguage", false]], "include_rai_reason (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.include_rai_reason", false]], "include_rai_reason (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.include_rai_reason", false]], "include_rai_reason (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.include_rai_reason", false]], "include_rai_reason (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.include_rai_reason", false]], "include_rai_reason (genai.types.upscaleimageconfig attribute)": [[0, "genai.types.UpscaleImageConfig.include_rai_reason", false]], "include_rai_reason (genai.types.upscaleimageconfigdict attribute)": [[0, "genai.types.UpscaleImageConfigDict.include_rai_reason", false]], "include_safety_attributes (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.include_safety_attributes", false]], "include_safety_attributes (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.include_safety_attributes", false]], "include_safety_attributes (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.include_safety_attributes", false]], "include_safety_attributes (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.include_safety_attributes", false]], "include_thoughts (genai.types.thinkingconfig attribute)": [[0, "genai.types.ThinkingConfig.include_thoughts", false]], "include_thoughts (genai.types.thinkingconfigdict attribute)": [[0, "genai.types.ThinkingConfigDict.include_thoughts", false]], "index (genai.types.candidate attribute)": [[0, "genai.types.Candidate.index", false]], "index (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.index", false]], "inline_data (genai.types.part attribute)": [[0, "genai.types.Part.inline_data", false]], "inline_data (genai.types.partdict attribute)": [[0, "genai.types.PartDict.inline_data", false]], "input_token_limit (genai.types.model attribute)": [[0, "genai.types.Model.input_token_limit", false]], "input_token_limit (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.input_token_limit", false]], "integer (genai.types.type attribute)": [[0, "genai.types.Type.INTEGER", false]], "interactions (genai.types.replayfile attribute)": [[0, "genai.types.ReplayFile.interactions", false]], "interactions (genai.types.replayfiledict attribute)": [[0, "genai.types.ReplayFileDict.interactions", false]], "interrupted (genai.types.liveservercontent attribute)": [[0, "genai.types.LiveServerContent.interrupted", false]], "interrupted (genai.types.liveservercontentdict attribute)": [[0, "genai.types.LiveServerContentDict.interrupted", false]], "items (genai.types.schema attribute)": [[0, "genai.types.Schema.items", false]], "ja (genai.types.imagepromptlanguage attribute)": [[0, "genai.types.ImagePromptLanguage.ja", false]], "job_state_cancelled (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_CANCELLED", false]], "job_state_cancelling (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_CANCELLING", false]], "job_state_expired (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_EXPIRED", false]], "job_state_failed (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_FAILED", false]], "job_state_partially_succeeded (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_PARTIALLY_SUCCEEDED", false]], "job_state_paused (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_PAUSED", false]], "job_state_pending (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_PENDING", false]], "job_state_queued (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_QUEUED", false]], "job_state_running (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_RUNNING", false]], "job_state_succeeded (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_SUCCEEDED", false]], "job_state_unspecified (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_UNSPECIFIED", false]], "job_state_updating (genai.types.jobstate attribute)": [[0, "genai.types.JobState.JOB_STATE_UPDATING", false]], "joberrordict (class in genai.types)": [[0, "genai.types.JobErrorDict", false]], "jobstate (class in genai.types)": [[0, "genai.types.JobState", false]], "kms_key_name (genai.types.encryptionspec attribute)": [[0, "genai.types.EncryptionSpec.kms_key_name", false]], "kms_key_name (genai.types.encryptionspecdict attribute)": [[0, "genai.types.EncryptionSpecDict.kms_key_name", false]], "ko (genai.types.imagepromptlanguage attribute)": [[0, "genai.types.ImagePromptLanguage.ko", false]], "labels (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.labels", false]], "labels (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.labels", false]], "labels (genai.types.model attribute)": [[0, "genai.types.Model.labels", false]], "labels (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.labels", false]], "labels (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.labels", false]], "labels (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.labels", false]], "language (class in genai.types)": [[0, "genai.types.Language", false]], "language (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.language", false]], "language (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.language", false]], "language (genai.types.executablecode attribute)": [[0, "genai.types.ExecutableCode.language", false]], "language (genai.types.executablecodedict attribute)": [[0, "genai.types.ExecutableCodeDict.language", false]], "language (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.language", false]], "language (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.language", false]], "language_unspecified (genai.types.language attribute)": [[0, "genai.types.Language.LANGUAGE_UNSPECIFIED", false]], "learning_rate (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.learning_rate", false]], "learning_rate (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.learning_rate", false]], "learning_rate_multiplier (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.learning_rate_multiplier", false]], "learning_rate_multiplier (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.learning_rate_multiplier", false]], "learning_rate_multiplier (genai.types.distillationhyperparameters attribute)": [[0, "genai.types.DistillationHyperParameters.learning_rate_multiplier", false]], "learning_rate_multiplier (genai.types.distillationhyperparametersdict attribute)": [[0, "genai.types.DistillationHyperParametersDict.learning_rate_multiplier", false]], "learning_rate_multiplier (genai.types.supervisedhyperparameters attribute)": [[0, "genai.types.SupervisedHyperParameters.learning_rate_multiplier", false]], "learning_rate_multiplier (genai.types.supervisedhyperparametersdict attribute)": [[0, "genai.types.SupervisedHyperParametersDict.learning_rate_multiplier", false]], "left (genai.types.datasetdistributiondistributionbucket attribute)": [[0, "genai.types.DatasetDistributionDistributionBucket.left", false]], "left (genai.types.datasetdistributiondistributionbucketdict attribute)": [[0, "genai.types.DatasetDistributionDistributionBucketDict.left", false]], "left (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucket.left", false]], "left (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.left", false]], "license (genai.types.citation attribute)": [[0, "genai.types.Citation.license", false]], "license (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.license", false]], "list() (genai.batches.asyncbatches method)": [[0, "genai.batches.AsyncBatches.list", false]], "list() (genai.batches.batches method)": [[0, "genai.batches.Batches.list", false]], "list() (genai.caches.asynccaches method)": [[0, "genai.caches.AsyncCaches.list", false]], "list() (genai.caches.caches method)": [[0, "genai.caches.Caches.list", false]], "list() (genai.files.asyncfiles method)": [[0, "genai.files.AsyncFiles.list", false]], "list() (genai.files.files method)": [[0, "genai.files.Files.list", false]], "list() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.list", false]], "list() (genai.models.models method)": [[0, "genai.models.Models.list", false]], "list() (genai.tunings.asynctunings method)": [[0, "genai.tunings.AsyncTunings.list", false]], "list() (genai.tunings.tunings method)": [[0, "genai.tunings.Tunings.list", false]], "listbatchjobsconfigdict (class in genai.types)": [[0, "genai.types.ListBatchJobsConfigDict", false]], "listbatchjobsresponsedict (class in genai.types)": [[0, "genai.types.ListBatchJobsResponseDict", false]], "listcachedcontentsconfigdict (class in genai.types)": [[0, "genai.types.ListCachedContentsConfigDict", false]], "listcachedcontentsresponsedict (class in genai.types)": [[0, "genai.types.ListCachedContentsResponseDict", false]], "listfilesconfigdict (class in genai.types)": [[0, "genai.types.ListFilesConfigDict", false]], "listfilesresponsedict (class in genai.types)": [[0, "genai.types.ListFilesResponseDict", false]], "listmodelsconfigdict (class in genai.types)": [[0, "genai.types.ListModelsConfigDict", false]], "listmodelsresponsedict (class in genai.types)": [[0, "genai.types.ListModelsResponseDict", false]], "listtuningjobsconfigdict (class in genai.types)": [[0, "genai.types.ListTuningJobsConfigDict", false]], "listtuningjobsresponsedict (class in genai.types)": [[0, "genai.types.ListTuningJobsResponseDict", false]], "live (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.live", false]], "liveclientcontentdict (class in genai.types)": [[0, "genai.types.LiveClientContentDict", false]], "liveclientmessagedict (class in genai.types)": [[0, "genai.types.LiveClientMessageDict", false]], "liveclientrealtimeinputdict (class in genai.types)": [[0, "genai.types.LiveClientRealtimeInputDict", false]], "liveclientsetupdict (class in genai.types)": [[0, "genai.types.LiveClientSetupDict", false]], "liveclienttoolresponsedict (class in genai.types)": [[0, "genai.types.LiveClientToolResponseDict", false]], "liveconnectconfigdict (class in genai.types)": [[0, "genai.types.LiveConnectConfigDict", false]], "liveservercontentdict (class in genai.types)": [[0, "genai.types.LiveServerContentDict", false]], "liveservermessagedict (class in genai.types)": [[0, "genai.types.LiveServerMessageDict", false]], "liveserversetupcompletedict (class in genai.types)": [[0, "genai.types.LiveServerSetupCompleteDict", false]], "liveservertoolcallcancellationdict (class in genai.types)": [[0, "genai.types.LiveServerToolCallCancellationDict", false]], "liveservertoolcalldict (class in genai.types)": [[0, "genai.types.LiveServerToolCallDict", false]], "location (genai.client.client attribute)": [[0, "genai.client.Client.location", false]], "log_probability (genai.types.logprobsresultcandidate attribute)": [[0, "genai.types.LogprobsResultCandidate.log_probability", false]], "log_probability (genai.types.logprobsresultcandidatedict attribute)": [[0, "genai.types.LogprobsResultCandidateDict.log_probability", false]], "logprobs (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.logprobs", false]], "logprobs (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.logprobs", false]], "logprobs (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.logprobs", false]], "logprobs (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.logprobs", false]], "logprobs_result (genai.types.candidate attribute)": [[0, "genai.types.Candidate.logprobs_result", false]], "logprobs_result (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.logprobs_result", false]], "logprobsresultcandidatedict (class in genai.types)": [[0, "genai.types.LogprobsResultCandidateDict", false]], "logprobsresultdict (class in genai.types)": [[0, "genai.types.LogprobsResultDict", false]], "logprobsresulttopcandidatesdict (class in genai.types)": [[0, "genai.types.LogprobsResultTopCandidatesDict", false]], "low (genai.types.harmprobability attribute)": [[0, "genai.types.HarmProbability.LOW", false]], "malformed_function_call (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.MALFORMED_FUNCTION_CALL", false]], "manual_mode (genai.types.generationconfigroutingconfig attribute)": [[0, "genai.types.GenerationConfigRoutingConfig.manual_mode", false]], "manual_mode (genai.types.generationconfigroutingconfigdict attribute)": [[0, "genai.types.GenerationConfigRoutingConfigDict.manual_mode", false]], "mask_dilation (genai.types.maskreferenceconfig attribute)": [[0, "genai.types.MaskReferenceConfig.mask_dilation", false]], "mask_dilation (genai.types.maskreferenceconfigdict attribute)": [[0, "genai.types.MaskReferenceConfigDict.mask_dilation", false]], "mask_image_config (genai.types.maskreferenceimage attribute)": [[0, "genai.types.MaskReferenceImage.mask_image_config", false]], "mask_mode (genai.types.maskreferenceconfig attribute)": [[0, "genai.types.MaskReferenceConfig.mask_mode", false]], "mask_mode (genai.types.maskreferenceconfigdict attribute)": [[0, "genai.types.MaskReferenceConfigDict.mask_mode", false]], "mask_mode_background (genai.types.maskreferencemode attribute)": [[0, "genai.types.MaskReferenceMode.MASK_MODE_BACKGROUND", false]], "mask_mode_default (genai.types.maskreferencemode attribute)": [[0, "genai.types.MaskReferenceMode.MASK_MODE_DEFAULT", false]], "mask_mode_foreground (genai.types.maskreferencemode attribute)": [[0, "genai.types.MaskReferenceMode.MASK_MODE_FOREGROUND", false]], "mask_mode_semantic (genai.types.maskreferencemode attribute)": [[0, "genai.types.MaskReferenceMode.MASK_MODE_SEMANTIC", false]], "mask_mode_user_provided (genai.types.maskreferencemode attribute)": [[0, "genai.types.MaskReferenceMode.MASK_MODE_USER_PROVIDED", false]], "maskreferenceconfigdict (class in genai.types)": [[0, "genai.types.MaskReferenceConfigDict", false]], "maskreferenceimagedict (class in genai.types)": [[0, "genai.types.MaskReferenceImageDict", false]], "maskreferencemode (class in genai.types)": [[0, "genai.types.MaskReferenceMode", false]], "max (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.max", false]], "max (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.max", false]], "max (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.max", false]], "max (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.max", false]], "max_items (genai.types.schema attribute)": [[0, "genai.types.Schema.max_items", false]], "max_items (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.max_items", false]], "max_length (genai.types.schema attribute)": [[0, "genai.types.Schema.max_length", false]], "max_length (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.max_length", false]], "max_output_tokens (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.max_output_tokens", false]], "max_output_tokens (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.max_output_tokens", false]], "max_output_tokens (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.max_output_tokens", false]], "max_output_tokens (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.max_output_tokens", false]], "max_properties (genai.types.schema attribute)": [[0, "genai.types.Schema.max_properties", false]], "max_properties (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.max_properties", false]], "max_tokens (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.MAX_TOKENS", false]], "maximum (genai.types.schema attribute)": [[0, "genai.types.Schema.maximum", false]], "maximum (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.maximum", false]], "maximum_remote_calls (genai.types.automaticfunctioncallingconfig attribute)": [[0, "genai.types.AutomaticFunctionCallingConfig.maximum_remote_calls", false]], "maximum_remote_calls (genai.types.automaticfunctioncallingconfigdict attribute)": [[0, "genai.types.AutomaticFunctionCallingConfigDict.maximum_remote_calls", false]], "mean (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.mean", false]], "mean (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.mean", false]], "mean (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.mean", false]], "mean (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.mean", false]], "media_chunks (genai.types.liveclientrealtimeinput attribute)": [[0, "genai.types.LiveClientRealtimeInput.media_chunks", false]], "media_chunks (genai.types.liveclientrealtimeinputdict attribute)": [[0, "genai.types.LiveClientRealtimeInputDict.media_chunks", false]], "media_resolution (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.media_resolution", false]], "media_resolution (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.media_resolution", false]], "media_resolution_high (genai.types.mediaresolution attribute)": [[0, "genai.types.MediaResolution.MEDIA_RESOLUTION_HIGH", false]], "media_resolution_low (genai.types.mediaresolution attribute)": [[0, "genai.types.MediaResolution.MEDIA_RESOLUTION_LOW", false]], "media_resolution_medium (genai.types.mediaresolution attribute)": [[0, "genai.types.MediaResolution.MEDIA_RESOLUTION_MEDIUM", false]], "media_resolution_unspecified (genai.types.mediaresolution attribute)": [[0, "genai.types.MediaResolution.MEDIA_RESOLUTION_UNSPECIFIED", false]], "median (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.median", false]], "median (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.median", false]], "median (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.median", false]], "median (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.median", false]], "mediaresolution (class in genai.types)": [[0, "genai.types.MediaResolution", false]], "medium (genai.types.harmprobability attribute)": [[0, "genai.types.HarmProbability.MEDIUM", false]], "message (genai.types.filestatus attribute)": [[0, "genai.types.FileStatus.message", false]], "message (genai.types.filestatusdict attribute)": [[0, "genai.types.FileStatusDict.message", false]], "message (genai.types.googlerpcstatus attribute)": [[0, "genai.types.GoogleRpcStatus.message", false]], "message (genai.types.googlerpcstatusdict attribute)": [[0, "genai.types.GoogleRpcStatusDict.message", false]], "message (genai.types.joberror attribute)": [[0, "genai.types.JobError.message", false]], "message (genai.types.joberrordict attribute)": [[0, "genai.types.JobErrorDict.message", false]], "metadata (genai.types.embedcontentresponse attribute)": [[0, "genai.types.EmbedContentResponse.metadata", false]], "metadata (genai.types.embedcontentresponsedict attribute)": [[0, "genai.types.EmbedContentResponseDict.metadata", false]], "metadata (genai.types.operation attribute)": [[0, "genai.types.Operation.metadata", false]], "metadata (genai.types.operationdict attribute)": [[0, "genai.types.OperationDict.metadata", false]], "method (genai.types.replayrequest attribute)": [[0, "genai.types.ReplayRequest.method", false]], "method (genai.types.replayrequestdict attribute)": [[0, "genai.types.ReplayRequestDict.method", false]], "method (genai.types.safetysetting attribute)": [[0, "genai.types.SafetySetting.method", false]], "method (genai.types.safetysettingdict attribute)": [[0, "genai.types.SafetySettingDict.method", false]], "mime_type (genai.types.blob attribute)": [[0, "genai.types.Blob.mime_type", false]], "mime_type (genai.types.blobdict attribute)": [[0, "genai.types.BlobDict.mime_type", false]], "mime_type (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.mime_type", false]], "mime_type (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.mime_type", false]], "mime_type (genai.types.file attribute)": [[0, "genai.types.File.mime_type", false]], "mime_type (genai.types.filedata attribute)": [[0, "genai.types.FileData.mime_type", false]], "mime_type (genai.types.filedatadict attribute)": [[0, "genai.types.FileDataDict.mime_type", false]], "mime_type (genai.types.filedict attribute)": [[0, "genai.types.FileDict.mime_type", false]], "mime_type (genai.types.image attribute)": [[0, "genai.types.Image.mime_type", false]], "mime_type (genai.types.imagedict attribute)": [[0, "genai.types.ImageDict.mime_type", false]], "mime_type (genai.types.uploadfileconfig attribute)": [[0, "genai.types.UploadFileConfig.mime_type", false]], "mime_type (genai.types.uploadfileconfigdict attribute)": [[0, "genai.types.UploadFileConfigDict.mime_type", false]], "min (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.min", false]], "min (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.min", false]], "min (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.min", false]], "min (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.min", false]], "min_items (genai.types.schema attribute)": [[0, "genai.types.Schema.min_items", false]], "min_items (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.min_items", false]], "min_length (genai.types.schema attribute)": [[0, "genai.types.Schema.min_length", false]], "min_length (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.min_length", false]], "min_properties (genai.types.schema attribute)": [[0, "genai.types.Schema.min_properties", false]], "min_properties (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.min_properties", false]], "minimum (genai.types.schema attribute)": [[0, "genai.types.Schema.minimum", false]], "minimum (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.minimum", false]], "modality (class in genai.types)": [[0, "genai.types.Modality", false]], "modality_unspecified (genai.types.modality attribute)": [[0, "genai.types.Modality.MODALITY_UNSPECIFIED", false]], "mode (class in genai.types)": [[0, "genai.types.Mode", false]], "mode (genai.types.dynamicretrievalconfig attribute)": [[0, "genai.types.DynamicRetrievalConfig.mode", false]], "mode (genai.types.dynamicretrievalconfigdict attribute)": [[0, "genai.types.DynamicRetrievalConfigDict.mode", false]], "mode (genai.types.functioncallingconfig attribute)": [[0, "genai.types.FunctionCallingConfig.mode", false]], "mode (genai.types.functioncallingconfigdict attribute)": [[0, "genai.types.FunctionCallingConfigDict.mode", false]], "mode_dynamic (genai.types.dynamicretrievalconfigmode attribute)": [[0, "genai.types.DynamicRetrievalConfigMode.MODE_DYNAMIC", false]], "mode_dynamic (genai.types.mode attribute)": [[0, "genai.types.Mode.MODE_DYNAMIC", false]], "mode_unspecified (genai.types.dynamicretrievalconfigmode attribute)": [[0, "genai.types.DynamicRetrievalConfigMode.MODE_UNSPECIFIED", false]], "mode_unspecified (genai.types.functioncallingconfigmode attribute)": [[0, "genai.types.FunctionCallingConfigMode.MODE_UNSPECIFIED", false]], "mode_unspecified (genai.types.mode attribute)": [[0, "genai.types.Mode.MODE_UNSPECIFIED", false]], "model (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.model", false]], "model (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.model", false]], "model (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.model", false]], "model (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.model", false]], "model (genai.types.liveclientsetup attribute)": [[0, "genai.types.LiveClientSetup.model", false]], "model (genai.types.liveclientsetupdict attribute)": [[0, "genai.types.LiveClientSetupDict.model", false]], "model (genai.types.tunedmodel attribute)": [[0, "genai.types.TunedModel.model", false]], "model (genai.types.tunedmodeldict attribute)": [[0, "genai.types.TunedModelDict.model", false]], "model (genai.types.upscaleimageparameters attribute)": [[0, "genai.types.UpscaleImageParameters.model", false]], "model (genai.types.upscaleimageparametersdict attribute)": [[0, "genai.types.UpscaleImageParametersDict.model", false]], "model_name (genai.types.generationconfigroutingconfigmanualroutingmode attribute)": [[0, "genai.types.GenerationConfigRoutingConfigManualRoutingMode.model_name", false]], "model_name (genai.types.generationconfigroutingconfigmanualroutingmodedict attribute)": [[0, "genai.types.GenerationConfigRoutingConfigManualRoutingModeDict.model_name", false]], "model_post_init() (genai.types.image method)": [[0, "genai.types.Image.model_post_init", false]], "model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmode attribute)": [[0, "genai.types.GenerationConfigRoutingConfigAutoRoutingMode.model_routing_preference", false]], "model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmodedict attribute)": [[0, "genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict.model_routing_preference", false]], "model_turn (genai.types.liveservercontent attribute)": [[0, "genai.types.LiveServerContent.model_turn", false]], "model_turn (genai.types.liveservercontentdict attribute)": [[0, "genai.types.LiveServerContentDict.model_turn", false]], "model_version (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.model_version", false]], "model_version (genai.types.generatecontentresponsedict attribute)": [[0, "genai.types.GenerateContentResponseDict.model_version", false]], "modeldict (class in genai.types)": [[0, "genai.types.ModelDict", false]], "models (class in genai.models)": [[0, "genai.models.Models", false]], "models (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.models", false]], "models (genai.client.client property)": [[0, "genai.client.Client.models", false]], "models (genai.types.listmodelsresponse attribute)": [[0, "genai.types.ListModelsResponse.models", false]], "models (genai.types.listmodelsresponsedict attribute)": [[0, "genai.types.ListModelsResponseDict.models", false]], "module": [[0, "module-genai.batches", false], [0, "module-genai.caches", false], [0, "module-genai.chats", false], [0, "module-genai.client", false], [0, "module-genai.files", false], [0, "module-genai.live", false], [0, "module-genai.models", false], [0, "module-genai.tunings", false], [0, "module-genai.types", false]], "month (genai.types.googletypedate attribute)": [[0, "genai.types.GoogleTypeDate.month", false]], "month (genai.types.googletypedatedict attribute)": [[0, "genai.types.GoogleTypeDateDict.month", false]], "name (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.name", false]], "name (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.name", false]], "name (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.name", false]], "name (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.name", false]], "name (genai.types.deleteresourcejob attribute)": [[0, "genai.types.DeleteResourceJob.name", false]], "name (genai.types.deleteresourcejobdict attribute)": [[0, "genai.types.DeleteResourceJobDict.name", false]], "name (genai.types.endpoint attribute)": [[0, "genai.types.Endpoint.name", false]], "name (genai.types.endpointdict attribute)": [[0, "genai.types.EndpointDict.name", false]], "name (genai.types.file attribute)": [[0, "genai.types.File.name", false]], "name (genai.types.filedict attribute)": [[0, "genai.types.FileDict.name", false]], "name (genai.types.functioncall attribute)": [[0, "genai.types.FunctionCall.name", false]], "name (genai.types.functioncalldict attribute)": [[0, "genai.types.FunctionCallDict.name", false]], "name (genai.types.functiondeclaration attribute)": [[0, "genai.types.FunctionDeclaration.name", false]], "name (genai.types.functiondeclarationdict attribute)": [[0, "genai.types.FunctionDeclarationDict.name", false]], "name (genai.types.functionresponse attribute)": [[0, "genai.types.FunctionResponse.name", false]], "name (genai.types.functionresponsedict attribute)": [[0, "genai.types.FunctionResponseDict.name", false]], "name (genai.types.model attribute)": [[0, "genai.types.Model.name", false]], "name (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.name", false]], "name (genai.types.operation attribute)": [[0, "genai.types.Operation.name", false]], "name (genai.types.operationdict attribute)": [[0, "genai.types.OperationDict.name", false]], "name (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.name", false]], "name (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.name", false]], "name (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.name", false]], "name (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.name", false]], "name (genai.types.uploadfileconfig attribute)": [[0, "genai.types.UploadFileConfig.name", false]], "name (genai.types.uploadfileconfigdict attribute)": [[0, "genai.types.UploadFileConfigDict.name", false]], "negative_prompt (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.negative_prompt", false]], "negative_prompt (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.negative_prompt", false]], "negative_prompt (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.negative_prompt", false]], "negative_prompt (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.negative_prompt", false]], "negligible (genai.types.harmprobability attribute)": [[0, "genai.types.HarmProbability.NEGLIGIBLE", false]], "next_page_token (genai.types.listbatchjobsresponse attribute)": [[0, "genai.types.ListBatchJobsResponse.next_page_token", false]], "next_page_token (genai.types.listbatchjobsresponsedict attribute)": [[0, "genai.types.ListBatchJobsResponseDict.next_page_token", false]], "next_page_token (genai.types.listcachedcontentsresponse attribute)": [[0, "genai.types.ListCachedContentsResponse.next_page_token", false]], "next_page_token (genai.types.listcachedcontentsresponsedict attribute)": [[0, "genai.types.ListCachedContentsResponseDict.next_page_token", false]], "next_page_token (genai.types.listfilesresponse attribute)": [[0, "genai.types.ListFilesResponse.next_page_token", false]], "next_page_token (genai.types.listfilesresponsedict attribute)": [[0, "genai.types.ListFilesResponseDict.next_page_token", false]], "next_page_token (genai.types.listmodelsresponse attribute)": [[0, "genai.types.ListModelsResponse.next_page_token", false]], "next_page_token (genai.types.listmodelsresponsedict attribute)": [[0, "genai.types.ListModelsResponseDict.next_page_token", false]], "next_page_token (genai.types.listtuningjobsresponse attribute)": [[0, "genai.types.ListTuningJobsResponse.next_page_token", false]], "next_page_token (genai.types.listtuningjobsresponsedict attribute)": [[0, "genai.types.ListTuningJobsResponseDict.next_page_token", false]], "none (genai.types.functioncallingconfigmode attribute)": [[0, "genai.types.FunctionCallingConfigMode.NONE", false]], "nullable (genai.types.schema attribute)": [[0, "genai.types.Schema.nullable", false]], "nullable (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.nullable", false]], "number (genai.types.type attribute)": [[0, "genai.types.Type.NUMBER", false]], "number_of_images (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.number_of_images", false]], "number_of_images (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.number_of_images", false]], "number_of_images (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.number_of_images", false]], "number_of_images (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.number_of_images", false]], "object (genai.types.type attribute)": [[0, "genai.types.Type.OBJECT", false]], "off (genai.types.harmblockthreshold attribute)": [[0, "genai.types.HarmBlockThreshold.OFF", false]], "operationdict (class in genai.types)": [[0, "genai.types.OperationDict", false]], "other (genai.types.blockedreason attribute)": [[0, "genai.types.BlockedReason.OTHER", false]], "other (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.OTHER", false]], "outcome (class in genai.types)": [[0, "genai.types.Outcome", false]], "outcome (genai.types.codeexecutionresult attribute)": [[0, "genai.types.CodeExecutionResult.outcome", false]], "outcome (genai.types.codeexecutionresultdict attribute)": [[0, "genai.types.CodeExecutionResultDict.outcome", false]], "outcome_deadline_exceeded (genai.types.outcome attribute)": [[0, "genai.types.Outcome.OUTCOME_DEADLINE_EXCEEDED", false]], "outcome_failed (genai.types.outcome attribute)": [[0, "genai.types.Outcome.OUTCOME_FAILED", false]], "outcome_ok (genai.types.outcome attribute)": [[0, "genai.types.Outcome.OUTCOME_OK", false]], "outcome_unspecified (genai.types.outcome attribute)": [[0, "genai.types.Outcome.OUTCOME_UNSPECIFIED", false]], "output (genai.types.codeexecutionresult attribute)": [[0, "genai.types.CodeExecutionResult.output", false]], "output (genai.types.codeexecutionresultdict attribute)": [[0, "genai.types.CodeExecutionResultDict.output", false]], "output (genai.types.tuningexample attribute)": [[0, "genai.types.TuningExample.output", false]], "output (genai.types.tuningexampledict attribute)": [[0, "genai.types.TuningExampleDict.output", false]], "output_compression_quality (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.output_compression_quality", false]], "output_compression_quality (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.output_compression_quality", false]], "output_compression_quality (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.output_compression_quality", false]], "output_compression_quality (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.output_compression_quality", false]], "output_compression_quality (genai.types.upscaleimageconfig attribute)": [[0, "genai.types.UpscaleImageConfig.output_compression_quality", false]], "output_compression_quality (genai.types.upscaleimageconfigdict attribute)": [[0, "genai.types.UpscaleImageConfigDict.output_compression_quality", false]], "output_dimensionality (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.output_dimensionality", false]], "output_dimensionality (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.output_dimensionality", false]], "output_gcs_uri (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.output_gcs_uri", false]], "output_gcs_uri (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.output_gcs_uri", false]], "output_gcs_uri (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.output_gcs_uri", false]], "output_gcs_uri (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.output_gcs_uri", false]], "output_mime_type (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.output_mime_type", false]], "output_mime_type (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.output_mime_type", false]], "output_mime_type (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.output_mime_type", false]], "output_mime_type (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.output_mime_type", false]], "output_mime_type (genai.types.upscaleimageconfig attribute)": [[0, "genai.types.UpscaleImageConfig.output_mime_type", false]], "output_mime_type (genai.types.upscaleimageconfigdict attribute)": [[0, "genai.types.UpscaleImageConfigDict.output_mime_type", false]], "output_token_limit (genai.types.model attribute)": [[0, "genai.types.Model.output_token_limit", false]], "output_token_limit (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.output_token_limit", false]], "override_replay_id (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.override_replay_id", false]], "override_replay_id (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.override_replay_id", false]], "p5 (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.p5", false]], "p5 (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.p5", false]], "p5 (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.p5", false]], "p5 (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.p5", false]], "p95 (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.p95", false]], "p95 (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.p95", false]], "p95 (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.p95", false]], "p95 (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.p95", false]], "page_size (genai.types.listbatchjobsconfig attribute)": [[0, "genai.types.ListBatchJobsConfig.page_size", false]], "page_size (genai.types.listbatchjobsconfigdict attribute)": [[0, "genai.types.ListBatchJobsConfigDict.page_size", false]], "page_size (genai.types.listcachedcontentsconfig attribute)": [[0, "genai.types.ListCachedContentsConfig.page_size", false]], "page_size (genai.types.listcachedcontentsconfigdict attribute)": [[0, "genai.types.ListCachedContentsConfigDict.page_size", false]], "page_size (genai.types.listfilesconfig attribute)": [[0, "genai.types.ListFilesConfig.page_size", false]], "page_size (genai.types.listfilesconfigdict attribute)": [[0, "genai.types.ListFilesConfigDict.page_size", false]], "page_size (genai.types.listmodelsconfig attribute)": [[0, "genai.types.ListModelsConfig.page_size", false]], "page_size (genai.types.listmodelsconfigdict attribute)": [[0, "genai.types.ListModelsConfigDict.page_size", false]], "page_size (genai.types.listtuningjobsconfig attribute)": [[0, "genai.types.ListTuningJobsConfig.page_size", false]], "page_size (genai.types.listtuningjobsconfigdict attribute)": [[0, "genai.types.ListTuningJobsConfigDict.page_size", false]], "page_token (genai.types.listbatchjobsconfig attribute)": [[0, "genai.types.ListBatchJobsConfig.page_token", false]], "page_token (genai.types.listbatchjobsconfigdict attribute)": [[0, "genai.types.ListBatchJobsConfigDict.page_token", false]], "page_token (genai.types.listcachedcontentsconfig attribute)": [[0, "genai.types.ListCachedContentsConfig.page_token", false]], "page_token (genai.types.listcachedcontentsconfigdict attribute)": [[0, "genai.types.ListCachedContentsConfigDict.page_token", false]], "page_token (genai.types.listfilesconfig attribute)": [[0, "genai.types.ListFilesConfig.page_token", false]], "page_token (genai.types.listfilesconfigdict attribute)": [[0, "genai.types.ListFilesConfigDict.page_token", false]], "page_token (genai.types.listmodelsconfig attribute)": [[0, "genai.types.ListModelsConfig.page_token", false]], "page_token (genai.types.listmodelsconfigdict attribute)": [[0, "genai.types.ListModelsConfigDict.page_token", false]], "page_token (genai.types.listtuningjobsconfig attribute)": [[0, "genai.types.ListTuningJobsConfig.page_token", false]], "page_token (genai.types.listtuningjobsconfigdict attribute)": [[0, "genai.types.ListTuningJobsConfigDict.page_token", false]], "parameter_names (genai.types.testtablefile attribute)": [[0, "genai.types.TestTableFile.parameter_names", false]], "parameter_names (genai.types.testtablefiledict attribute)": [[0, "genai.types.TestTableFileDict.parameter_names", false]], "parameters (genai.types.functiondeclaration attribute)": [[0, "genai.types.FunctionDeclaration.parameters", false]], "parameters (genai.types.functiondeclarationdict attribute)": [[0, "genai.types.FunctionDeclarationDict.parameters", false]], "parameters (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.parameters", false]], "parameters (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.parameters", false]], "parsed (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.parsed", false]], "part_index (genai.types.segment attribute)": [[0, "genai.types.Segment.part_index", false]], "part_index (genai.types.segmentdict attribute)": [[0, "genai.types.SegmentDict.part_index", false]], "partdict (class in genai.types)": [[0, "genai.types.PartDict", false]], "partner_model_tuning_spec (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.partner_model_tuning_spec", false]], "partner_model_tuning_spec (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.partner_model_tuning_spec", false]], "partnermodeltuningspecdict (class in genai.types)": [[0, "genai.types.PartnerModelTuningSpecDict", false]], "parts (genai.types.content attribute)": [[0, "genai.types.Content.parts", false]], "parts (genai.types.contentdict attribute)": [[0, "genai.types.ContentDict.parts", false]], "pattern (genai.types.schema attribute)": [[0, "genai.types.Schema.pattern", false]], "pattern (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.pattern", false]], "person_generation (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.person_generation", false]], "person_generation (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.person_generation", false]], "person_generation (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.person_generation", false]], "person_generation (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.person_generation", false]], "persongeneration (class in genai.types)": [[0, "genai.types.PersonGeneration", false]], "pipeline_job (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.pipeline_job", false]], "pipeline_job (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.pipeline_job", false]], "pipeline_root_directory (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.pipeline_root_directory", false]], "pipeline_root_directory (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.pipeline_root_directory", false]], "prebuilt_voice_config (genai.types.voiceconfig attribute)": [[0, "genai.types.VoiceConfig.prebuilt_voice_config", false]], "prebuilt_voice_config (genai.types.voiceconfigdict attribute)": [[0, "genai.types.VoiceConfigDict.prebuilt_voice_config", false]], "prebuiltvoiceconfigdict (class in genai.types)": [[0, "genai.types.PrebuiltVoiceConfigDict", false]], "presence_penalty (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.presence_penalty", false]], "presence_penalty (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.presence_penalty", false]], "presence_penalty (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.presence_penalty", false]], "presence_penalty (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.presence_penalty", false]], "probability (genai.types.harmblockmethod attribute)": [[0, "genai.types.HarmBlockMethod.PROBABILITY", false]], "probability (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.probability", false]], "probability (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.probability", false]], "probability_score (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.probability_score", false]], "probability_score (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.probability_score", false]], "processing (genai.types.filestate attribute)": [[0, "genai.types.FileState.PROCESSING", false]], "prohibited_content (genai.types.blockedreason attribute)": [[0, "genai.types.BlockedReason.PROHIBITED_CONTENT", false]], "prohibited_content (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.PROHIBITED_CONTENT", false]], "project (genai.client.client attribute)": [[0, "genai.client.Client.project", false]], "prompt_feedback (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.prompt_feedback", false]], "prompt_feedback (genai.types.generatecontentresponsedict attribute)": [[0, "genai.types.GenerateContentResponseDict.prompt_feedback", false]], "prompt_token_count (genai.types.generatecontentresponseusagemetadata attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadata.prompt_token_count", false]], "prompt_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadataDict.prompt_token_count", false]], "properties (genai.types.schema attribute)": [[0, "genai.types.Schema.properties", false]], "properties (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.properties", false]], "property_ordering (genai.types.schema attribute)": [[0, "genai.types.Schema.property_ordering", false]], "property_ordering (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.property_ordering", false]], "publication_date (genai.types.citation attribute)": [[0, "genai.types.Citation.publication_date", false]], "publication_date (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.publication_date", false]], "python (genai.types.language attribute)": [[0, "genai.types.Language.PYTHON", false]], "query_base (genai.types.listmodelsconfig attribute)": [[0, "genai.types.ListModelsConfig.query_base", false]], "query_base (genai.types.listmodelsconfigdict attribute)": [[0, "genai.types.ListModelsConfigDict.query_base", false]], "rag_corpora (genai.types.vertexragstore attribute)": [[0, "genai.types.VertexRagStore.rag_corpora", false]], "rag_corpora (genai.types.vertexragstoredict attribute)": [[0, "genai.types.VertexRagStoreDict.rag_corpora", false]], "rag_corpus (genai.types.vertexragstoreragresource attribute)": [[0, "genai.types.VertexRagStoreRagResource.rag_corpus", false]], "rag_corpus (genai.types.vertexragstoreragresourcedict attribute)": [[0, "genai.types.VertexRagStoreRagResourceDict.rag_corpus", false]], "rag_file_ids (genai.types.vertexragstoreragresource attribute)": [[0, "genai.types.VertexRagStoreRagResource.rag_file_ids", false]], "rag_file_ids (genai.types.vertexragstoreragresourcedict attribute)": [[0, "genai.types.VertexRagStoreRagResourceDict.rag_file_ids", false]], "rag_resources (genai.types.vertexragstore attribute)": [[0, "genai.types.VertexRagStore.rag_resources", false]], "rag_resources (genai.types.vertexragstoredict attribute)": [[0, "genai.types.VertexRagStoreDict.rag_resources", false]], "rai_filtered_reason (genai.types.generatedimage attribute)": [[0, "genai.types.GeneratedImage.rai_filtered_reason", false]], "rai_filtered_reason (genai.types.generatedimagedict attribute)": [[0, "genai.types.GeneratedImageDict.rai_filtered_reason", false]], "rawreferenceimagedict (class in genai.types)": [[0, "genai.types.RawReferenceImageDict", false]], "realtime_input (genai.types.liveclientmessage attribute)": [[0, "genai.types.LiveClientMessage.realtime_input", false]], "realtime_input (genai.types.liveclientmessagedict attribute)": [[0, "genai.types.LiveClientMessageDict.realtime_input", false]], "receive() (genai.live.asyncsession method)": [[0, "genai.live.AsyncSession.receive", false]], "recitation (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.RECITATION", false]], "reference_id (genai.types.controlreferenceimage attribute)": [[0, "genai.types.ControlReferenceImage.reference_id", false]], "reference_id (genai.types.controlreferenceimagedict attribute)": [[0, "genai.types.ControlReferenceImageDict.reference_id", false]], "reference_id (genai.types.maskreferenceimage attribute)": [[0, "genai.types.MaskReferenceImage.reference_id", false]], "reference_id (genai.types.maskreferenceimagedict attribute)": [[0, "genai.types.MaskReferenceImageDict.reference_id", false]], "reference_id (genai.types.rawreferenceimage attribute)": [[0, "genai.types.RawReferenceImage.reference_id", false]], "reference_id (genai.types.rawreferenceimagedict attribute)": [[0, "genai.types.RawReferenceImageDict.reference_id", false]], "reference_id (genai.types.stylereferenceimage attribute)": [[0, "genai.types.StyleReferenceImage.reference_id", false]], "reference_id (genai.types.stylereferenceimagedict attribute)": [[0, "genai.types.StyleReferenceImageDict.reference_id", false]], "reference_id (genai.types.subjectreferenceimage attribute)": [[0, "genai.types.SubjectReferenceImage.reference_id", false]], "reference_id (genai.types.subjectreferenceimagedict attribute)": [[0, "genai.types.SubjectReferenceImageDict.reference_id", false]], "reference_image (genai.types.controlreferenceimage attribute)": [[0, "genai.types.ControlReferenceImage.reference_image", false]], "reference_image (genai.types.controlreferenceimagedict attribute)": [[0, "genai.types.ControlReferenceImageDict.reference_image", false]], "reference_image (genai.types.maskreferenceimage attribute)": [[0, "genai.types.MaskReferenceImage.reference_image", false]], "reference_image (genai.types.maskreferenceimagedict attribute)": [[0, "genai.types.MaskReferenceImageDict.reference_image", false]], "reference_image (genai.types.rawreferenceimage attribute)": [[0, "genai.types.RawReferenceImage.reference_image", false]], "reference_image (genai.types.rawreferenceimagedict attribute)": [[0, "genai.types.RawReferenceImageDict.reference_image", false]], "reference_image (genai.types.stylereferenceimage attribute)": [[0, "genai.types.StyleReferenceImage.reference_image", false]], "reference_image (genai.types.stylereferenceimagedict attribute)": [[0, "genai.types.StyleReferenceImageDict.reference_image", false]], "reference_image (genai.types.subjectreferenceimage attribute)": [[0, "genai.types.SubjectReferenceImage.reference_image", false]], "reference_image (genai.types.subjectreferenceimagedict attribute)": [[0, "genai.types.SubjectReferenceImageDict.reference_image", false]], "reference_type (genai.types.controlreferenceimage attribute)": [[0, "genai.types.ControlReferenceImage.reference_type", false]], "reference_type (genai.types.controlreferenceimagedict attribute)": [[0, "genai.types.ControlReferenceImageDict.reference_type", false]], "reference_type (genai.types.maskreferenceimage attribute)": [[0, "genai.types.MaskReferenceImage.reference_type", false]], "reference_type (genai.types.maskreferenceimagedict attribute)": [[0, "genai.types.MaskReferenceImageDict.reference_type", false]], "reference_type (genai.types.rawreferenceimage attribute)": [[0, "genai.types.RawReferenceImage.reference_type", false]], "reference_type (genai.types.rawreferenceimagedict attribute)": [[0, "genai.types.RawReferenceImageDict.reference_type", false]], "reference_type (genai.types.stylereferenceimage attribute)": [[0, "genai.types.StyleReferenceImage.reference_type", false]], "reference_type (genai.types.stylereferenceimagedict attribute)": [[0, "genai.types.StyleReferenceImageDict.reference_type", false]], "reference_type (genai.types.subjectreferenceimage attribute)": [[0, "genai.types.SubjectReferenceImage.reference_type", false]], "reference_type (genai.types.subjectreferenceimagedict attribute)": [[0, "genai.types.SubjectReferenceImageDict.reference_type", false]], "rendered_content (genai.types.searchentrypoint attribute)": [[0, "genai.types.SearchEntryPoint.rendered_content", false]], "rendered_content (genai.types.searchentrypointdict attribute)": [[0, "genai.types.SearchEntryPointDict.rendered_content", false]], "replay_id (genai.client.debugconfig attribute)": [[0, "genai.client.DebugConfig.replay_id", false]], "replay_id (genai.types.replayfile attribute)": [[0, "genai.types.ReplayFile.replay_id", false]], "replay_id (genai.types.replayfiledict attribute)": [[0, "genai.types.ReplayFileDict.replay_id", false]], "replayfiledict (class in genai.types)": [[0, "genai.types.ReplayFileDict", false]], "replayinteractiondict (class in genai.types)": [[0, "genai.types.ReplayInteractionDict", false]], "replayrequestdict (class in genai.types)": [[0, "genai.types.ReplayRequestDict", false]], "replayresponsedict (class in genai.types)": [[0, "genai.types.ReplayResponseDict", false]], "replays_directory (genai.client.debugconfig attribute)": [[0, "genai.client.DebugConfig.replays_directory", false]], "request (genai.types.replayinteraction attribute)": [[0, "genai.types.ReplayInteraction.request", false]], "request (genai.types.replayinteractiondict attribute)": [[0, "genai.types.ReplayInteractionDict.request", false]], "required (genai.types.schema attribute)": [[0, "genai.types.Schema.required", false]], "required (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.required", false]], "response (genai.types.functiondeclaration attribute)": [[0, "genai.types.FunctionDeclaration.response", false]], "response (genai.types.functiondeclarationdict attribute)": [[0, "genai.types.FunctionDeclarationDict.response", false]], "response (genai.types.functionresponse attribute)": [[0, "genai.types.FunctionResponse.response", false]], "response (genai.types.functionresponsedict attribute)": [[0, "genai.types.FunctionResponseDict.response", false]], "response (genai.types.operation attribute)": [[0, "genai.types.Operation.response", false]], "response (genai.types.operationdict attribute)": [[0, "genai.types.OperationDict.response", false]], "response (genai.types.replayinteraction attribute)": [[0, "genai.types.ReplayInteraction.response", false]], "response (genai.types.replayinteractiondict attribute)": [[0, "genai.types.ReplayInteractionDict.response", false]], "response_logprobs (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.response_logprobs", false]], "response_logprobs (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.response_logprobs", false]], "response_logprobs (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.response_logprobs", false]], "response_logprobs (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.response_logprobs", false]], "response_mime_type (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.response_mime_type", false]], "response_mime_type (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.response_mime_type", false]], "response_mime_type (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.response_mime_type", false]], "response_mime_type (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.response_mime_type", false]], "response_modalities (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.response_modalities", false]], "response_modalities (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.response_modalities", false]], "response_modalities (genai.types.liveconnectconfig attribute)": [[0, "genai.types.LiveConnectConfig.response_modalities", false]], "response_modalities (genai.types.liveconnectconfigdict attribute)": [[0, "genai.types.LiveConnectConfigDict.response_modalities", false]], "response_schema (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.response_schema", false]], "response_schema (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.response_schema", false]], "response_schema (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.response_schema", false]], "response_schema (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.response_schema", false]], "retrieval (genai.types.tool attribute)": [[0, "genai.types.Tool.retrieval", false]], "retrieval (genai.types.tooldict attribute)": [[0, "genai.types.ToolDict.retrieval", false]], "retrieval_metadata (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.retrieval_metadata", false]], "retrieval_metadata (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.retrieval_metadata", false]], "retrieval_queries (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.retrieval_queries", false]], "retrieval_queries (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.retrieval_queries", false]], "retrievaldict (class in genai.types)": [[0, "genai.types.RetrievalDict", false]], "retrievalmetadatadict (class in genai.types)": [[0, "genai.types.RetrievalMetadataDict", false]], "retrieved_context (genai.types.groundingchunk attribute)": [[0, "genai.types.GroundingChunk.retrieved_context", false]], "retrieved_context (genai.types.groundingchunkdict attribute)": [[0, "genai.types.GroundingChunkDict.retrieved_context", false]], "right (genai.types.datasetdistributiondistributionbucket attribute)": [[0, "genai.types.DatasetDistributionDistributionBucket.right", false]], "right (genai.types.datasetdistributiondistributionbucketdict attribute)": [[0, "genai.types.DatasetDistributionDistributionBucketDict.right", false]], "right (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucket.right", false]], "right (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.right", false]], "role (genai.types.content attribute)": [[0, "genai.types.Content.role", false]], "role (genai.types.contentdict attribute)": [[0, "genai.types.ContentDict.role", false]], "role (genai.types.tokensinfo attribute)": [[0, "genai.types.TokensInfo.role", false]], "role (genai.types.tokensinfodict attribute)": [[0, "genai.types.TokensInfoDict.role", false]], "routing_config (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.routing_config", false]], "routing_config (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.routing_config", false]], "routing_config (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.routing_config", false]], "routing_config (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.routing_config", false]], "safety (genai.types.blockedreason attribute)": [[0, "genai.types.BlockedReason.SAFETY", false]], "safety (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.SAFETY", false]], "safety_filter_level (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.safety_filter_level", false]], "safety_filter_level (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.safety_filter_level", false]], "safety_filter_level (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.safety_filter_level", false]], "safety_filter_level (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.safety_filter_level", false]], "safety_ratings (genai.types.candidate attribute)": [[0, "genai.types.Candidate.safety_ratings", false]], "safety_ratings (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.safety_ratings", false]], "safety_ratings (genai.types.generatecontentresponsepromptfeedback attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedback.safety_ratings", false]], "safety_ratings (genai.types.generatecontentresponsepromptfeedbackdict attribute)": [[0, "genai.types.GenerateContentResponsePromptFeedbackDict.safety_ratings", false]], "safety_settings (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.safety_settings", false]], "safety_settings (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.safety_settings", false]], "safetyfilterlevel (class in genai.types)": [[0, "genai.types.SafetyFilterLevel", false]], "safetyratingdict (class in genai.types)": [[0, "genai.types.SafetyRatingDict", false]], "safetysettingdict (class in genai.types)": [[0, "genai.types.SafetySettingDict", false]], "save() (genai.types.image method)": [[0, "genai.types.Image.save", false]], "schemadict (class in genai.types)": [[0, "genai.types.SchemaDict", false]], "sdk_blob (genai.types.searchentrypoint attribute)": [[0, "genai.types.SearchEntryPoint.sdk_blob", false]], "sdk_blob (genai.types.searchentrypointdict attribute)": [[0, "genai.types.SearchEntryPointDict.sdk_blob", false]], "sdk_response_segments (genai.types.replayresponse attribute)": [[0, "genai.types.ReplayResponse.sdk_response_segments", false]], "sdk_response_segments (genai.types.replayresponsedict attribute)": [[0, "genai.types.ReplayResponseDict.sdk_response_segments", false]], "search_entry_point (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.search_entry_point", false]], "search_entry_point (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.search_entry_point", false]], "searchentrypointdict (class in genai.types)": [[0, "genai.types.SearchEntryPointDict", false]], "seed (genai.types.editimageconfig attribute)": [[0, "genai.types.EditImageConfig.seed", false]], "seed (genai.types.editimageconfigdict attribute)": [[0, "genai.types.EditImageConfigDict.seed", false]], "seed (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.seed", false]], "seed (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.seed", false]], "seed (genai.types.generateimagesconfig attribute)": [[0, "genai.types.GenerateImagesConfig.seed", false]], "seed (genai.types.generateimagesconfigdict attribute)": [[0, "genai.types.GenerateImagesConfigDict.seed", false]], "seed (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.seed", false]], "seed (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.seed", false]], "segment (genai.types.groundingsupport attribute)": [[0, "genai.types.GroundingSupport.segment", false]], "segment (genai.types.groundingsupportdict attribute)": [[0, "genai.types.GroundingSupportDict.segment", false]], "segmentation_classes (genai.types.maskreferenceconfig attribute)": [[0, "genai.types.MaskReferenceConfig.segmentation_classes", false]], "segmentation_classes (genai.types.maskreferenceconfigdict attribute)": [[0, "genai.types.MaskReferenceConfigDict.segmentation_classes", false]], "segmentdict (class in genai.types)": [[0, "genai.types.SegmentDict", false]], "send() (genai.live.asyncsession method)": [[0, "genai.live.AsyncSession.send", false]], "send_message() (genai.chats.asyncchat method)": [[0, "genai.chats.AsyncChat.send_message", false]], "send_message() (genai.chats.chat method)": [[0, "genai.chats.Chat.send_message", false]], "send_message_stream() (genai.chats.asyncchat method)": [[0, "genai.chats.AsyncChat.send_message_stream", false]], "send_message_stream() (genai.chats.chat method)": [[0, "genai.chats.Chat.send_message_stream", false]], "server_content (genai.types.liveservermessage attribute)": [[0, "genai.types.LiveServerMessage.server_content", false]], "server_content (genai.types.liveservermessagedict attribute)": [[0, "genai.types.LiveServerMessageDict.server_content", false]], "setup (genai.types.liveclientmessage attribute)": [[0, "genai.types.LiveClientMessage.setup", false]], "setup (genai.types.liveclientmessagedict attribute)": [[0, "genai.types.LiveClientMessageDict.setup", false]], "setup_complete (genai.types.liveservermessage attribute)": [[0, "genai.types.LiveServerMessage.setup_complete", false]], "setup_complete (genai.types.liveservermessagedict attribute)": [[0, "genai.types.LiveServerMessageDict.setup_complete", false]], "severity (genai.types.harmblockmethod attribute)": [[0, "genai.types.HarmBlockMethod.SEVERITY", false]], "severity (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.severity", false]], "severity (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.severity", false]], "severity_score (genai.types.safetyrating attribute)": [[0, "genai.types.SafetyRating.severity_score", false]], "severity_score (genai.types.safetyratingdict attribute)": [[0, "genai.types.SafetyRatingDict.severity_score", false]], "sha256_hash (genai.types.file attribute)": [[0, "genai.types.File.sha256_hash", false]], "sha256_hash (genai.types.filedict attribute)": [[0, "genai.types.FileDict.sha256_hash", false]], "shared_resources (genai.types.deploymentresourcestype attribute)": [[0, "genai.types.DeploymentResourcesType.SHARED_RESOURCES", false]], "show() (genai.types.image method)": [[0, "genai.types.Image.show", false]], "similarity_top_k (genai.types.vertexragstore attribute)": [[0, "genai.types.VertexRagStore.similarity_top_k", false]], "similarity_top_k (genai.types.vertexragstoredict attribute)": [[0, "genai.types.VertexRagStoreDict.similarity_top_k", false]], "size_bytes (genai.types.file attribute)": [[0, "genai.types.File.size_bytes", false]], "size_bytes (genai.types.filedict attribute)": [[0, "genai.types.FileDict.size_bytes", false]], "skip_in_api_mode (genai.types.testtableitem attribute)": [[0, "genai.types.TestTableItem.skip_in_api_mode", false]], "skip_in_api_mode (genai.types.testtableitemdict attribute)": [[0, "genai.types.TestTableItemDict.skip_in_api_mode", false]], "source (genai.types.file attribute)": [[0, "genai.types.File.source", false]], "source (genai.types.filedict attribute)": [[0, "genai.types.FileDict.source", false]], "source_unspecified (genai.types.filesource attribute)": [[0, "genai.types.FileSource.SOURCE_UNSPECIFIED", false]], "speech_config (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.speech_config", false]], "speech_config (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.speech_config", false]], "speech_config (genai.types.liveconnectconfig attribute)": [[0, "genai.types.LiveConnectConfig.speech_config", false]], "speech_config (genai.types.liveconnectconfigdict attribute)": [[0, "genai.types.LiveConnectConfigDict.speech_config", false]], "speechconfigdict (class in genai.types)": [[0, "genai.types.SpeechConfigDict", false]], "spii (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.SPII", false]], "src (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.src", false]], "src (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.src", false]], "start_index (genai.types.citation attribute)": [[0, "genai.types.Citation.start_index", false]], "start_index (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.start_index", false]], "start_index (genai.types.segment attribute)": [[0, "genai.types.Segment.start_index", false]], "start_index (genai.types.segmentdict attribute)": [[0, "genai.types.SegmentDict.start_index", false]], "start_offset (genai.types.videometadata attribute)": [[0, "genai.types.VideoMetadata.start_offset", false]], "start_offset (genai.types.videometadatadict attribute)": [[0, "genai.types.VideoMetadataDict.start_offset", false]], "start_stream() (genai.live.asyncsession method)": [[0, "genai.live.AsyncSession.start_stream", false]], "start_time (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.start_time", false]], "start_time (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.start_time", false]], "start_time (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.start_time", false]], "start_time (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.start_time", false]], "state (class in genai.types)": [[0, "genai.types.State", false]], "state (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.state", false]], "state (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.state", false]], "state (genai.types.file attribute)": [[0, "genai.types.File.state", false]], "state (genai.types.filedict attribute)": [[0, "genai.types.FileDict.state", false]], "state (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.state", false]], "state (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.state", false]], "state_unspecified (genai.types.filestate attribute)": [[0, "genai.types.FileState.STATE_UNSPECIFIED", false]], "state_unspecified (genai.types.state attribute)": [[0, "genai.types.State.STATE_UNSPECIFIED", false]], "statistics (genai.types.contentembedding attribute)": [[0, "genai.types.ContentEmbedding.statistics", false]], "statistics (genai.types.contentembeddingdict attribute)": [[0, "genai.types.ContentEmbeddingDict.statistics", false]], "status_code (genai.types.replayresponse attribute)": [[0, "genai.types.ReplayResponse.status_code", false]], "status_code (genai.types.replayresponsedict attribute)": [[0, "genai.types.ReplayResponseDict.status_code", false]], "stop (genai.types.finishreason attribute)": [[0, "genai.types.FinishReason.STOP", false]], "stop_sequences (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.stop_sequences", false]], "stop_sequences (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.stop_sequences", false]], "stop_sequences (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.stop_sequences", false]], "stop_sequences (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.stop_sequences", false]], "string (genai.types.type attribute)": [[0, "genai.types.Type.STRING", false]], "student_model (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.student_model", false]], "student_model (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.student_model", false]], "style_description (genai.types.stylereferenceconfig attribute)": [[0, "genai.types.StyleReferenceConfig.style_description", false]], "style_description (genai.types.stylereferenceconfigdict attribute)": [[0, "genai.types.StyleReferenceConfigDict.style_description", false]], "style_image_config (genai.types.stylereferenceimage attribute)": [[0, "genai.types.StyleReferenceImage.style_image_config", false]], "stylereferenceconfigdict (class in genai.types)": [[0, "genai.types.StyleReferenceConfigDict", false]], "stylereferenceimagedict (class in genai.types)": [[0, "genai.types.StyleReferenceImageDict", false]], "subject_description (genai.types.subjectreferenceconfig attribute)": [[0, "genai.types.SubjectReferenceConfig.subject_description", false]], "subject_description (genai.types.subjectreferenceconfigdict attribute)": [[0, "genai.types.SubjectReferenceConfigDict.subject_description", false]], "subject_image_config (genai.types.subjectreferenceimage attribute)": [[0, "genai.types.SubjectReferenceImage.subject_image_config", false]], "subject_type (genai.types.subjectreferenceconfig attribute)": [[0, "genai.types.SubjectReferenceConfig.subject_type", false]], "subject_type (genai.types.subjectreferenceconfigdict attribute)": [[0, "genai.types.SubjectReferenceConfigDict.subject_type", false]], "subject_type_animal (genai.types.subjectreferencetype attribute)": [[0, "genai.types.SubjectReferenceType.SUBJECT_TYPE_ANIMAL", false]], "subject_type_default (genai.types.subjectreferencetype attribute)": [[0, "genai.types.SubjectReferenceType.SUBJECT_TYPE_DEFAULT", false]], "subject_type_person (genai.types.subjectreferencetype attribute)": [[0, "genai.types.SubjectReferenceType.SUBJECT_TYPE_PERSON", false]], "subject_type_product (genai.types.subjectreferencetype attribute)": [[0, "genai.types.SubjectReferenceType.SUBJECT_TYPE_PRODUCT", false]], "subjectreferenceconfigdict (class in genai.types)": [[0, "genai.types.SubjectReferenceConfigDict", false]], "subjectreferenceimagedict (class in genai.types)": [[0, "genai.types.SubjectReferenceImageDict", false]], "subjectreferencetype (class in genai.types)": [[0, "genai.types.SubjectReferenceType", false]], "sum (genai.types.datasetdistribution attribute)": [[0, "genai.types.DatasetDistribution.sum", false]], "sum (genai.types.datasetdistributiondict attribute)": [[0, "genai.types.DatasetDistributionDict.sum", false]], "sum (genai.types.supervisedtuningdatasetdistribution attribute)": [[0, "genai.types.SupervisedTuningDatasetDistribution.sum", false]], "sum (genai.types.supervisedtuningdatasetdistributiondict attribute)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict.sum", false]], "supervised_tuning_data_stats (genai.types.tuningdatastats attribute)": [[0, "genai.types.TuningDataStats.supervised_tuning_data_stats", false]], "supervised_tuning_data_stats (genai.types.tuningdatastatsdict attribute)": [[0, "genai.types.TuningDataStatsDict.supervised_tuning_data_stats", false]], "supervised_tuning_spec (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.supervised_tuning_spec", false]], "supervised_tuning_spec (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.supervised_tuning_spec", false]], "supervisedhyperparametersdict (class in genai.types)": [[0, "genai.types.SupervisedHyperParametersDict", false]], "supervisedtuningdatasetdistributiondatasetbucketdict (class in genai.types)": [[0, "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict", false]], "supervisedtuningdatasetdistributiondict (class in genai.types)": [[0, "genai.types.SupervisedTuningDatasetDistributionDict", false]], "supervisedtuningdatastatsdict (class in genai.types)": [[0, "genai.types.SupervisedTuningDataStatsDict", false]], "supervisedtuningspecdict (class in genai.types)": [[0, "genai.types.SupervisedTuningSpecDict", false]], "supported_actions (genai.types.model attribute)": [[0, "genai.types.Model.supported_actions", false]], "supported_actions (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.supported_actions", false]], "system_instruction (genai.types.counttokensconfig attribute)": [[0, "genai.types.CountTokensConfig.system_instruction", false]], "system_instruction (genai.types.counttokensconfigdict attribute)": [[0, "genai.types.CountTokensConfigDict.system_instruction", false]], "system_instruction (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.system_instruction", false]], "system_instruction (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.system_instruction", false]], "system_instruction (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.system_instruction", false]], "system_instruction (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.system_instruction", false]], "system_instruction (genai.types.liveclientsetup attribute)": [[0, "genai.types.LiveClientSetup.system_instruction", false]], "system_instruction (genai.types.liveclientsetupdict attribute)": [[0, "genai.types.LiveClientSetupDict.system_instruction", false]], "system_instruction (genai.types.liveconnectconfig attribute)": [[0, "genai.types.LiveConnectConfig.system_instruction", false]], "system_instruction (genai.types.liveconnectconfigdict attribute)": [[0, "genai.types.LiveConnectConfigDict.system_instruction", false]], "task_type (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.task_type", false]], "task_type (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.task_type", false]], "temperature (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.temperature", false]], "temperature (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.temperature", false]], "temperature (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.temperature", false]], "temperature (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.temperature", false]], "test_method (genai.types.testtablefile attribute)": [[0, "genai.types.TestTableFile.test_method", false]], "test_method (genai.types.testtablefiledict attribute)": [[0, "genai.types.TestTableFileDict.test_method", false]], "test_table (genai.types.testtablefile attribute)": [[0, "genai.types.TestTableFile.test_table", false]], "test_table (genai.types.testtablefiledict attribute)": [[0, "genai.types.TestTableFileDict.test_table", false]], "testtablefiledict (class in genai.types)": [[0, "genai.types.TestTableFileDict", false]], "testtableitemdict (class in genai.types)": [[0, "genai.types.TestTableItemDict", false]], "text (genai.types.generatecontentresponse property)": [[0, "genai.types.GenerateContentResponse.text", false]], "text (genai.types.groundingchunkretrievedcontext attribute)": [[0, "genai.types.GroundingChunkRetrievedContext.text", false]], "text (genai.types.groundingchunkretrievedcontextdict attribute)": [[0, "genai.types.GroundingChunkRetrievedContextDict.text", false]], "text (genai.types.liveservermessage property)": [[0, "genai.types.LiveServerMessage.text", false]], "text (genai.types.modality attribute)": [[0, "genai.types.Modality.TEXT", false]], "text (genai.types.part attribute)": [[0, "genai.types.Part.text", false]], "text (genai.types.partdict attribute)": [[0, "genai.types.PartDict.text", false]], "text (genai.types.segment attribute)": [[0, "genai.types.Segment.text", false]], "text (genai.types.segmentdict attribute)": [[0, "genai.types.SegmentDict.text", false]], "text_count (genai.types.cachedcontentusagemetadata attribute)": [[0, "genai.types.CachedContentUsageMetadata.text_count", false]], "text_count (genai.types.cachedcontentusagemetadatadict attribute)": [[0, "genai.types.CachedContentUsageMetadataDict.text_count", false]], "text_input (genai.types.tuningexample attribute)": [[0, "genai.types.TuningExample.text_input", false]], "text_input (genai.types.tuningexampledict attribute)": [[0, "genai.types.TuningExampleDict.text_input", false]], "thinking_config (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.thinking_config", false]], "thinking_config (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.thinking_config", false]], "thinkingconfigdict (class in genai.types)": [[0, "genai.types.ThinkingConfigDict", false]], "thought (genai.types.part attribute)": [[0, "genai.types.Part.thought", false]], "thought (genai.types.partdict attribute)": [[0, "genai.types.PartDict.thought", false]], "threshold (genai.types.safetysetting attribute)": [[0, "genai.types.SafetySetting.threshold", false]], "threshold (genai.types.safetysettingdict attribute)": [[0, "genai.types.SafetySettingDict.threshold", false]], "timeout (genai.types.httpoptions attribute)": [[0, "genai.types.HttpOptions.timeout", false]], "timeout (genai.types.httpoptionsdict attribute)": [[0, "genai.types.HttpOptionsDict.timeout", false]], "title (genai.types.citation attribute)": [[0, "genai.types.Citation.title", false]], "title (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.title", false]], "title (genai.types.embedcontentconfig attribute)": [[0, "genai.types.EmbedContentConfig.title", false]], "title (genai.types.embedcontentconfigdict attribute)": [[0, "genai.types.EmbedContentConfigDict.title", false]], "title (genai.types.groundingchunkretrievedcontext attribute)": [[0, "genai.types.GroundingChunkRetrievedContext.title", false]], "title (genai.types.groundingchunkretrievedcontextdict attribute)": [[0, "genai.types.GroundingChunkRetrievedContextDict.title", false]], "title (genai.types.groundingchunkweb attribute)": [[0, "genai.types.GroundingChunkWeb.title", false]], "title (genai.types.groundingchunkwebdict attribute)": [[0, "genai.types.GroundingChunkWebDict.title", false]], "title (genai.types.schema attribute)": [[0, "genai.types.Schema.title", false]], "title (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.title", false]], "token (genai.types.logprobsresultcandidate attribute)": [[0, "genai.types.LogprobsResultCandidate.token", false]], "token (genai.types.logprobsresultcandidatedict attribute)": [[0, "genai.types.LogprobsResultCandidateDict.token", false]], "token_count (genai.types.candidate attribute)": [[0, "genai.types.Candidate.token_count", false]], "token_count (genai.types.candidatedict attribute)": [[0, "genai.types.CandidateDict.token_count", false]], "token_count (genai.types.contentembeddingstatistics attribute)": [[0, "genai.types.ContentEmbeddingStatistics.token_count", false]], "token_count (genai.types.contentembeddingstatisticsdict attribute)": [[0, "genai.types.ContentEmbeddingStatisticsDict.token_count", false]], "token_id (genai.types.logprobsresultcandidate attribute)": [[0, "genai.types.LogprobsResultCandidate.token_id", false]], "token_id (genai.types.logprobsresultcandidatedict attribute)": [[0, "genai.types.LogprobsResultCandidateDict.token_id", false]], "token_ids (genai.types.tokensinfo attribute)": [[0, "genai.types.TokensInfo.token_ids", false]], "token_ids (genai.types.tokensinfodict attribute)": [[0, "genai.types.TokensInfoDict.token_ids", false]], "tokens (genai.types.tokensinfo attribute)": [[0, "genai.types.TokensInfo.tokens", false]], "tokens (genai.types.tokensinfodict attribute)": [[0, "genai.types.TokensInfoDict.tokens", false]], "tokens_info (genai.types.computetokensresponse attribute)": [[0, "genai.types.ComputeTokensResponse.tokens_info", false]], "tokens_info (genai.types.computetokensresponsedict attribute)": [[0, "genai.types.ComputeTokensResponseDict.tokens_info", false]], "tokensinfodict (class in genai.types)": [[0, "genai.types.TokensInfoDict", false]], "tool_call (genai.types.liveservermessage attribute)": [[0, "genai.types.LiveServerMessage.tool_call", false]], "tool_call (genai.types.liveservermessagedict attribute)": [[0, "genai.types.LiveServerMessageDict.tool_call", false]], "tool_call_cancellation (genai.types.liveservermessage attribute)": [[0, "genai.types.LiveServerMessage.tool_call_cancellation", false]], "tool_call_cancellation (genai.types.liveservermessagedict attribute)": [[0, "genai.types.LiveServerMessageDict.tool_call_cancellation", false]], "tool_config (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.tool_config", false]], "tool_config (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.tool_config", false]], "tool_config (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.tool_config", false]], "tool_config (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.tool_config", false]], "tool_response (genai.types.liveclientmessage attribute)": [[0, "genai.types.LiveClientMessage.tool_response", false]], "tool_response (genai.types.liveclientmessagedict attribute)": [[0, "genai.types.LiveClientMessageDict.tool_response", false]], "toolcodeexecutiondict (class in genai.types)": [[0, "genai.types.ToolCodeExecutionDict", false]], "toolconfigdict (class in genai.types)": [[0, "genai.types.ToolConfigDict", false]], "tooldict (class in genai.types)": [[0, "genai.types.ToolDict", false]], "tools (genai.types.counttokensconfig attribute)": [[0, "genai.types.CountTokensConfig.tools", false]], "tools (genai.types.counttokensconfigdict attribute)": [[0, "genai.types.CountTokensConfigDict.tools", false]], "tools (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.tools", false]], "tools (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.tools", false]], "tools (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.tools", false]], "tools (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.tools", false]], "tools (genai.types.liveclientsetup attribute)": [[0, "genai.types.LiveClientSetup.tools", false]], "tools (genai.types.liveclientsetupdict attribute)": [[0, "genai.types.LiveClientSetupDict.tools", false]], "tools (genai.types.liveconnectconfig attribute)": [[0, "genai.types.LiveConnectConfig.tools", false]], "tools (genai.types.liveconnectconfigdict attribute)": [[0, "genai.types.LiveConnectConfigDict.tools", false]], "top_candidates (genai.types.logprobsresult attribute)": [[0, "genai.types.LogprobsResult.top_candidates", false]], "top_candidates (genai.types.logprobsresultdict attribute)": [[0, "genai.types.LogprobsResultDict.top_candidates", false]], "top_k (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.top_k", false]], "top_k (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.top_k", false]], "top_k (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.top_k", false]], "top_k (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.top_k", false]], "top_p (genai.types.generatecontentconfig attribute)": [[0, "genai.types.GenerateContentConfig.top_p", false]], "top_p (genai.types.generatecontentconfigdict attribute)": [[0, "genai.types.GenerateContentConfigDict.top_p", false]], "top_p (genai.types.generationconfig attribute)": [[0, "genai.types.GenerationConfig.top_p", false]], "top_p (genai.types.generationconfigdict attribute)": [[0, "genai.types.GenerationConfigDict.top_p", false]], "total_billable_character_count (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.total_billable_character_count", false]], "total_billable_character_count (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.total_billable_character_count", false]], "total_billable_character_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.total_billable_character_count", false]], "total_billable_character_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.total_billable_character_count", false]], "total_billable_token_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.total_billable_token_count", false]], "total_billable_token_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.total_billable_token_count", false]], "total_token_count (genai.types.cachedcontentusagemetadata attribute)": [[0, "genai.types.CachedContentUsageMetadata.total_token_count", false]], "total_token_count (genai.types.cachedcontentusagemetadatadict attribute)": [[0, "genai.types.CachedContentUsageMetadataDict.total_token_count", false]], "total_token_count (genai.types.generatecontentresponseusagemetadata attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadata.total_token_count", false]], "total_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)": [[0, "genai.types.GenerateContentResponseUsageMetadataDict.total_token_count", false]], "total_tokens (genai.types.counttokensresponse attribute)": [[0, "genai.types.CountTokensResponse.total_tokens", false]], "total_tokens (genai.types.counttokensresponsedict attribute)": [[0, "genai.types.CountTokensResponseDict.total_tokens", false]], "total_truncated_example_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.total_truncated_example_count", false]], "total_truncated_example_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.total_truncated_example_count", false]], "total_tuning_character_count (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.total_tuning_character_count", false]], "total_tuning_character_count (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.total_tuning_character_count", false]], "total_tuning_character_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.total_tuning_character_count", false]], "total_tuning_character_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.total_tuning_character_count", false]], "training_dataset_stats (genai.types.distillationdatastats attribute)": [[0, "genai.types.DistillationDataStats.training_dataset_stats", false]], "training_dataset_stats (genai.types.distillationdatastatsdict attribute)": [[0, "genai.types.DistillationDataStatsDict.training_dataset_stats", false]], "training_dataset_uri (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.training_dataset_uri", false]], "training_dataset_uri (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.training_dataset_uri", false]], "training_dataset_uri (genai.types.partnermodeltuningspec attribute)": [[0, "genai.types.PartnerModelTuningSpec.training_dataset_uri", false]], "training_dataset_uri (genai.types.partnermodeltuningspecdict attribute)": [[0, "genai.types.PartnerModelTuningSpecDict.training_dataset_uri", false]], "training_dataset_uri (genai.types.supervisedtuningspec attribute)": [[0, "genai.types.SupervisedTuningSpec.training_dataset_uri", false]], "training_dataset_uri (genai.types.supervisedtuningspecdict attribute)": [[0, "genai.types.SupervisedTuningSpecDict.training_dataset_uri", false]], "truncated (genai.types.contentembeddingstatistics attribute)": [[0, "genai.types.ContentEmbeddingStatistics.truncated", false]], "truncated (genai.types.contentembeddingstatisticsdict attribute)": [[0, "genai.types.ContentEmbeddingStatisticsDict.truncated", false]], "truncated_example_indices (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.truncated_example_indices", false]], "truncated_example_indices (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.truncated_example_indices", false]], "ttl (genai.types.createcachedcontentconfig attribute)": [[0, "genai.types.CreateCachedContentConfig.ttl", false]], "ttl (genai.types.createcachedcontentconfigdict attribute)": [[0, "genai.types.CreateCachedContentConfigDict.ttl", false]], "ttl (genai.types.updatecachedcontentconfig attribute)": [[0, "genai.types.UpdateCachedContentConfig.ttl", false]], "ttl (genai.types.updatecachedcontentconfigdict attribute)": [[0, "genai.types.UpdateCachedContentConfigDict.ttl", false]], "tune() (genai.tunings.asynctunings method)": [[0, "genai.tunings.AsyncTunings.tune", false]], "tune() (genai.tunings.tunings method)": [[0, "genai.tunings.Tunings.tune", false]], "tuned_model (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.tuned_model", false]], "tuned_model (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.tuned_model", false]], "tuned_model_display_name (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.tuned_model_display_name", false]], "tuned_model_display_name (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.tuned_model_display_name", false]], "tuned_model_display_name (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.tuned_model_display_name", false]], "tuned_model_display_name (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.tuned_model_display_name", false]], "tuned_model_info (genai.types.model attribute)": [[0, "genai.types.Model.tuned_model_info", false]], "tuned_model_info (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.tuned_model_info", false]], "tuned_teacher_model_source (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.tuned_teacher_model_source", false]], "tuned_teacher_model_source (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.tuned_teacher_model_source", false]], "tunedmodeldict (class in genai.types)": [[0, "genai.types.TunedModelDict", false]], "tunedmodelinfodict (class in genai.types)": [[0, "genai.types.TunedModelInfoDict", false]], "tuning_data_stats (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.tuning_data_stats", false]], "tuning_data_stats (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.tuning_data_stats", false]], "tuning_dataset_example_count (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.tuning_dataset_example_count", false]], "tuning_dataset_example_count (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.tuning_dataset_example_count", false]], "tuning_dataset_example_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.tuning_dataset_example_count", false]], "tuning_dataset_example_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.tuning_dataset_example_count", false]], "tuning_jobs (genai.types.listtuningjobsresponse attribute)": [[0, "genai.types.ListTuningJobsResponse.tuning_jobs", false]], "tuning_jobs (genai.types.listtuningjobsresponsedict attribute)": [[0, "genai.types.ListTuningJobsResponseDict.tuning_jobs", false]], "tuning_step_count (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.tuning_step_count", false]], "tuning_step_count (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.tuning_step_count", false]], "tuning_step_count (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.tuning_step_count", false]], "tuning_step_count (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.tuning_step_count", false]], "tuningdatasetdict (class in genai.types)": [[0, "genai.types.TuningDatasetDict", false]], "tuningdatastatsdict (class in genai.types)": [[0, "genai.types.TuningDataStatsDict", false]], "tuningexampledict (class in genai.types)": [[0, "genai.types.TuningExampleDict", false]], "tuningjobdict (class in genai.types)": [[0, "genai.types.TuningJobDict", false]], "tunings (class in genai.tunings)": [[0, "genai.tunings.Tunings", false]], "tunings (genai.client.asyncclient property)": [[0, "genai.client.AsyncClient.tunings", false]], "tunings (genai.client.client property)": [[0, "genai.client.Client.tunings", false]], "tuningvalidationdatasetdict (class in genai.types)": [[0, "genai.types.TuningValidationDatasetDict", false]], "turn_complete (genai.types.liveclientcontent attribute)": [[0, "genai.types.LiveClientContent.turn_complete", false]], "turn_complete (genai.types.liveclientcontentdict attribute)": [[0, "genai.types.LiveClientContentDict.turn_complete", false]], "turn_complete (genai.types.liveservercontent attribute)": [[0, "genai.types.LiveServerContent.turn_complete", false]], "turn_complete (genai.types.liveservercontentdict attribute)": [[0, "genai.types.LiveServerContentDict.turn_complete", false]], "turns (genai.types.liveclientcontent attribute)": [[0, "genai.types.LiveClientContent.turns", false]], "turns (genai.types.liveclientcontentdict attribute)": [[0, "genai.types.LiveClientContentDict.turns", false]], "type (class in genai.types)": [[0, "genai.types.Type", false]], "type (genai.types.schema attribute)": [[0, "genai.types.Schema.type", false]], "type (genai.types.schemadict attribute)": [[0, "genai.types.SchemaDict.type", false]], "type_unspecified (genai.types.type attribute)": [[0, "genai.types.Type.TYPE_UNSPECIFIED", false]], "update() (genai.caches.asynccaches method)": [[0, "genai.caches.AsyncCaches.update", false]], "update() (genai.caches.caches method)": [[0, "genai.caches.Caches.update", false]], "update() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.update", false]], "update() (genai.models.models method)": [[0, "genai.models.Models.update", false]], "update_time (genai.types.batchjob attribute)": [[0, "genai.types.BatchJob.update_time", false]], "update_time (genai.types.batchjobdict attribute)": [[0, "genai.types.BatchJobDict.update_time", false]], "update_time (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.update_time", false]], "update_time (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.update_time", false]], "update_time (genai.types.file attribute)": [[0, "genai.types.File.update_time", false]], "update_time (genai.types.filedict attribute)": [[0, "genai.types.FileDict.update_time", false]], "update_time (genai.types.tunedmodelinfo attribute)": [[0, "genai.types.TunedModelInfo.update_time", false]], "update_time (genai.types.tunedmodelinfodict attribute)": [[0, "genai.types.TunedModelInfoDict.update_time", false]], "update_time (genai.types.tuningjob attribute)": [[0, "genai.types.TuningJob.update_time", false]], "update_time (genai.types.tuningjobdict attribute)": [[0, "genai.types.TuningJobDict.update_time", false]], "updatecachedcontentconfigdict (class in genai.types)": [[0, "genai.types.UpdateCachedContentConfigDict", false]], "updatemodelconfigdict (class in genai.types)": [[0, "genai.types.UpdateModelConfigDict", false]], "upload() (genai.files.asyncfiles method)": [[0, "genai.files.AsyncFiles.upload", false]], "upload() (genai.files.files method)": [[0, "genai.files.Files.upload", false]], "uploaded (genai.types.filesource attribute)": [[0, "genai.types.FileSource.UPLOADED", false]], "uploadfileconfigdict (class in genai.types)": [[0, "genai.types.UploadFileConfigDict", false]], "upscale_factor (genai.types.upscaleimageparameters attribute)": [[0, "genai.types.UpscaleImageParameters.upscale_factor", false]], "upscale_factor (genai.types.upscaleimageparametersdict attribute)": [[0, "genai.types.UpscaleImageParametersDict.upscale_factor", false]], "upscale_image() (genai.models.asyncmodels method)": [[0, "genai.models.AsyncModels.upscale_image", false]], "upscale_image() (genai.models.models method)": [[0, "genai.models.Models.upscale_image", false]], "upscaleimageconfigdict (class in genai.types)": [[0, "genai.types.UpscaleImageConfigDict", false]], "upscaleimageparametersdict (class in genai.types)": [[0, "genai.types.UpscaleImageParametersDict", false]], "upscaleimageresponsedict (class in genai.types)": [[0, "genai.types.UpscaleImageResponseDict", false]], "uri (genai.types.citation attribute)": [[0, "genai.types.Citation.uri", false]], "uri (genai.types.citationdict attribute)": [[0, "genai.types.CitationDict.uri", false]], "uri (genai.types.file attribute)": [[0, "genai.types.File.uri", false]], "uri (genai.types.filedict attribute)": [[0, "genai.types.FileDict.uri", false]], "uri (genai.types.groundingchunkretrievedcontext attribute)": [[0, "genai.types.GroundingChunkRetrievedContext.uri", false]], "uri (genai.types.groundingchunkretrievedcontextdict attribute)": [[0, "genai.types.GroundingChunkRetrievedContextDict.uri", false]], "uri (genai.types.groundingchunkweb attribute)": [[0, "genai.types.GroundingChunkWeb.uri", false]], "uri (genai.types.groundingchunkwebdict attribute)": [[0, "genai.types.GroundingChunkWebDict.uri", false]], "url (genai.types.replayrequest attribute)": [[0, "genai.types.ReplayRequest.url", false]], "url (genai.types.replayrequestdict attribute)": [[0, "genai.types.ReplayRequestDict.url", false]], "usage_metadata (genai.types.cachedcontent attribute)": [[0, "genai.types.CachedContent.usage_metadata", false]], "usage_metadata (genai.types.cachedcontentdict attribute)": [[0, "genai.types.CachedContentDict.usage_metadata", false]], "usage_metadata (genai.types.generatecontentresponse attribute)": [[0, "genai.types.GenerateContentResponse.usage_metadata", false]], "usage_metadata (genai.types.generatecontentresponsedict attribute)": [[0, "genai.types.GenerateContentResponseDict.usage_metadata", false]], "user_dataset_examples (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.user_dataset_examples", false]], "user_dataset_examples (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.user_dataset_examples", false]], "user_dataset_examples (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.user_dataset_examples", false]], "user_dataset_examples (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.user_dataset_examples", false]], "user_input_token_distribution (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.user_input_token_distribution", false]], "user_input_token_distribution (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.user_input_token_distribution", false]], "user_input_token_distribution (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.user_input_token_distribution", false]], "user_input_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.user_input_token_distribution", false]], "user_message_per_example_distribution (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.user_message_per_example_distribution", false]], "user_message_per_example_distribution (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.user_message_per_example_distribution", false]], "user_message_per_example_distribution (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.user_message_per_example_distribution", false]], "user_message_per_example_distribution (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.user_message_per_example_distribution", false]], "user_output_token_distribution (genai.types.datasetstats attribute)": [[0, "genai.types.DatasetStats.user_output_token_distribution", false]], "user_output_token_distribution (genai.types.datasetstatsdict attribute)": [[0, "genai.types.DatasetStatsDict.user_output_token_distribution", false]], "user_output_token_distribution (genai.types.supervisedtuningdatastats attribute)": [[0, "genai.types.SupervisedTuningDataStats.user_output_token_distribution", false]], "user_output_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)": [[0, "genai.types.SupervisedTuningDataStatsDict.user_output_token_distribution", false]], "validation_dataset (genai.types.createtuningjobconfig attribute)": [[0, "genai.types.CreateTuningJobConfig.validation_dataset", false]], "validation_dataset (genai.types.createtuningjobconfigdict attribute)": [[0, "genai.types.CreateTuningJobConfigDict.validation_dataset", false]], "validation_dataset_uri (genai.types.distillationspec attribute)": [[0, "genai.types.DistillationSpec.validation_dataset_uri", false]], "validation_dataset_uri (genai.types.distillationspecdict attribute)": [[0, "genai.types.DistillationSpecDict.validation_dataset_uri", false]], "validation_dataset_uri (genai.types.partnermodeltuningspec attribute)": [[0, "genai.types.PartnerModelTuningSpec.validation_dataset_uri", false]], "validation_dataset_uri (genai.types.partnermodeltuningspecdict attribute)": [[0, "genai.types.PartnerModelTuningSpecDict.validation_dataset_uri", false]], "validation_dataset_uri (genai.types.supervisedtuningspec attribute)": [[0, "genai.types.SupervisedTuningSpec.validation_dataset_uri", false]], "validation_dataset_uri (genai.types.supervisedtuningspecdict attribute)": [[0, "genai.types.SupervisedTuningSpecDict.validation_dataset_uri", false]], "values (genai.types.contentembedding attribute)": [[0, "genai.types.ContentEmbedding.values", false]], "vector_distance_threshold (genai.types.vertexragstore attribute)": [[0, "genai.types.VertexRagStore.vector_distance_threshold", false]], "vector_distance_threshold (genai.types.vertexragstoredict attribute)": [[0, "genai.types.VertexRagStoreDict.vector_distance_threshold", false]], "version (genai.types.model attribute)": [[0, "genai.types.Model.version", false]], "version (genai.types.modeldict attribute)": [[0, "genai.types.ModelDict.version", false]], "vertex_ai_search (genai.types.retrieval attribute)": [[0, "genai.types.Retrieval.vertex_ai_search", false]], "vertex_ai_search (genai.types.retrievaldict attribute)": [[0, "genai.types.RetrievalDict.vertex_ai_search", false]], "vertex_rag_store (genai.types.retrieval attribute)": [[0, "genai.types.Retrieval.vertex_rag_store", false]], "vertex_rag_store (genai.types.retrievaldict attribute)": [[0, "genai.types.RetrievalDict.vertex_rag_store", false]], "vertexai (genai.client.client attribute)": [[0, "genai.client.Client.vertexai", false]], "vertexai (genai.client.client property)": [[0, "id0", false]], "vertexaisearchdict (class in genai.types)": [[0, "genai.types.VertexAISearchDict", false]], "vertexragstoredict (class in genai.types)": [[0, "genai.types.VertexRagStoreDict", false]], "vertexragstoreragresourcedict (class in genai.types)": [[0, "genai.types.VertexRagStoreRagResourceDict", false]], "video_duration_seconds (genai.types.cachedcontentusagemetadata attribute)": [[0, "genai.types.CachedContentUsageMetadata.video_duration_seconds", false]], "video_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)": [[0, "genai.types.CachedContentUsageMetadataDict.video_duration_seconds", false]], "video_metadata (genai.types.file attribute)": [[0, "genai.types.File.video_metadata", false]], "video_metadata (genai.types.filedict attribute)": [[0, "genai.types.FileDict.video_metadata", false]], "video_metadata (genai.types.part attribute)": [[0, "genai.types.Part.video_metadata", false]], "video_metadata (genai.types.partdict attribute)": [[0, "genai.types.PartDict.video_metadata", false]], "videometadatadict (class in genai.types)": [[0, "genai.types.VideoMetadataDict", false]], "voice_config (genai.types.speechconfig attribute)": [[0, "genai.types.SpeechConfig.voice_config", false]], "voice_config (genai.types.speechconfigdict attribute)": [[0, "genai.types.SpeechConfigDict.voice_config", false]], "voice_name (genai.types.prebuiltvoiceconfig attribute)": [[0, "genai.types.PrebuiltVoiceConfig.voice_name", false]], "voice_name (genai.types.prebuiltvoiceconfigdict attribute)": [[0, "genai.types.PrebuiltVoiceConfigDict.voice_name", false]], "voiceconfigdict (class in genai.types)": [[0, "genai.types.VoiceConfigDict", false]], "web (genai.types.groundingchunk attribute)": [[0, "genai.types.GroundingChunk.web", false]], "web (genai.types.groundingchunkdict attribute)": [[0, "genai.types.GroundingChunkDict.web", false]], "web_search_queries (genai.types.groundingmetadata attribute)": [[0, "genai.types.GroundingMetadata.web_search_queries", false]], "web_search_queries (genai.types.groundingmetadatadict attribute)": [[0, "genai.types.GroundingMetadataDict.web_search_queries", false]], "year (genai.types.googletypedate attribute)": [[0, "genai.types.GoogleTypeDate.year", false]], "year (genai.types.googletypedatedict attribute)": [[0, "genai.types.GoogleTypeDateDict.year", false]]}, "objects": {"genai": [[0, 0, 0, "-", "batches"], [0, 0, 0, "-", "caches"], [0, 0, 0, "-", "chats"], [0, 0, 0, "-", "client"], [0, 0, 0, "-", "files"], [0, 0, 0, "-", "live"], [0, 0, 0, "-", "models"], [0, 0, 0, "-", "tunings"], [0, 0, 0, "-", "types"]], "genai.batches": [[0, 1, 1, "", "AsyncBatches"], [0, 1, 1, "", "Batches"]], "genai.batches.AsyncBatches": [[0, 2, 1, "", "cancel"], [0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"]], "genai.batches.Batches": [[0, 2, 1, "", "cancel"], [0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"]], "genai.caches": [[0, 1, 1, "", "AsyncCaches"], [0, 1, 1, "", "Caches"]], "genai.caches.AsyncCaches": [[0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"]], "genai.caches.Caches": [[0, 2, 1, "", "create"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"]], "genai.chats": [[0, 1, 1, "", "AsyncChat"], [0, 1, 1, "", "AsyncChats"], [0, 1, 1, "", "Chat"], [0, 1, 1, "", "Chats"]], "genai.chats.AsyncChat": [[0, 2, 1, "", "send_message"], [0, 2, 1, "", "send_message_stream"]], "genai.chats.AsyncChats": [[0, 2, 1, "", "create"]], "genai.chats.Chat": [[0, 2, 1, "", "send_message"], [0, 2, 1, "", "send_message_stream"]], "genai.chats.Chats": [[0, 2, 1, "", "create"]], "genai.client": [[0, 1, 1, "", "AsyncClient"], [0, 1, 1, "", "Client"], [0, 5, 1, "", "DebugConfig"]], "genai.client.AsyncClient": [[0, 3, 1, "", "batches"], [0, 3, 1, "", "caches"], [0, 3, 1, "", "chats"], [0, 3, 1, "", "files"], [0, 3, 1, "", "live"], [0, 3, 1, "", "models"], [0, 3, 1, "", "tunings"]], "genai.client.Client": [[0, 3, 1, "", "aio"], [0, 4, 1, "", "api_key"], [0, 3, 1, "", "batches"], [0, 3, 1, "", "caches"], [0, 3, 1, "", "chats"], [0, 4, 1, "", "credentials"], [0, 4, 1, "", "debug_config"], [0, 3, 1, "", "files"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "location"], [0, 3, 1, "", "models"], [0, 4, 1, "", "project"], [0, 3, 1, "", "tunings"], [0, 3, 1, "id0", "vertexai"]], "genai.client.DebugConfig": [[0, 6, 1, "", "client_mode"], [0, 6, 1, "", "replay_id"], [0, 6, 1, "", "replays_directory"]], "genai.files": [[0, 1, 1, "", "AsyncFiles"], [0, 1, 1, "", "Files"]], "genai.files.AsyncFiles": [[0, 2, 1, "", "delete"], [0, 2, 1, "", "download"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "upload"]], "genai.files.Files": [[0, 2, 1, "", "delete"], [0, 2, 1, "", "download"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "upload"]], "genai.live": [[0, 1, 1, "", "AsyncLive"], [0, 1, 1, "", "AsyncSession"]], "genai.live.AsyncLive": [[0, 2, 1, "", "connect"]], "genai.live.AsyncSession": [[0, 2, 1, "", "close"], [0, 2, 1, "", "receive"], [0, 2, 1, "", "send"], [0, 2, 1, "", "start_stream"]], "genai.models": [[0, 1, 1, "", "AsyncModels"], [0, 1, 1, "", "Models"]], "genai.models.AsyncModels": [[0, 2, 1, "", "compute_tokens"], [0, 2, 1, "", "count_tokens"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "edit_image"], [0, 2, 1, "", "embed_content"], [0, 2, 1, "", "generate_content"], [0, 2, 1, "", "generate_content_stream"], [0, 2, 1, "", "generate_images"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"], [0, 2, 1, "", "upscale_image"]], "genai.models.Models": [[0, 2, 1, "", "compute_tokens"], [0, 2, 1, "", "count_tokens"], [0, 2, 1, "", "delete"], [0, 2, 1, "", "edit_image"], [0, 2, 1, "", "embed_content"], [0, 2, 1, "", "generate_content"], [0, 2, 1, "", "generate_content_stream"], [0, 2, 1, "", "generate_images"], [0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "update"], [0, 2, 1, "", "upscale_image"]], "genai.tunings": [[0, 1, 1, "", "AsyncTunings"], [0, 1, 1, "", "Tunings"]], "genai.tunings.AsyncTunings": [[0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "tune"]], "genai.tunings.Tunings": [[0, 2, 1, "", "get"], [0, 2, 1, "", "list"], [0, 2, 1, "", "tune"]], "genai.types": [[0, 1, 1, "", "AdapterSize"], [0, 5, 1, "", "AutomaticFunctionCallingConfig"], [0, 1, 1, "", "AutomaticFunctionCallingConfigDict"], [0, 5, 1, "", "BatchJob"], [0, 5, 1, "", "BatchJobDestination"], [0, 1, 1, "", "BatchJobDestinationDict"], [0, 1, 1, "", "BatchJobDict"], [0, 5, 1, "", "BatchJobSource"], [0, 1, 1, "", "BatchJobSourceDict"], [0, 5, 1, "", "Blob"], [0, 1, 1, "", "BlobDict"], [0, 1, 1, "", "BlockedReason"], [0, 5, 1, "", "CachedContent"], [0, 1, 1, "", "CachedContentDict"], [0, 5, 1, "", "CachedContentUsageMetadata"], [0, 1, 1, "", "CachedContentUsageMetadataDict"], [0, 5, 1, "", "CancelBatchJobConfig"], [0, 1, 1, "", "CancelBatchJobConfigDict"], [0, 5, 1, "", "Candidate"], [0, 1, 1, "", "CandidateDict"], [0, 5, 1, "", "Citation"], [0, 1, 1, "", "CitationDict"], [0, 5, 1, "", "CitationMetadata"], [0, 1, 1, "", "CitationMetadataDict"], [0, 5, 1, "", "CodeExecutionResult"], [0, 1, 1, "", "CodeExecutionResultDict"], [0, 5, 1, "", "ComputeTokensConfig"], [0, 1, 1, "", "ComputeTokensConfigDict"], [0, 5, 1, "", "ComputeTokensResponse"], [0, 1, 1, "", "ComputeTokensResponseDict"], [0, 5, 1, "", "Content"], [0, 1, 1, "", "ContentDict"], [0, 5, 1, "", "ContentEmbedding"], [0, 1, 1, "", "ContentEmbeddingDict"], [0, 5, 1, "", "ContentEmbeddingStatistics"], [0, 1, 1, "", "ContentEmbeddingStatisticsDict"], [0, 5, 1, "", "ControlReferenceConfig"], [0, 1, 1, "", "ControlReferenceConfigDict"], [0, 5, 1, "", "ControlReferenceImage"], [0, 1, 1, "", "ControlReferenceImageDict"], [0, 1, 1, "", "ControlReferenceType"], [0, 5, 1, "", "CountTokensConfig"], [0, 1, 1, "", "CountTokensConfigDict"], [0, 5, 1, "", "CountTokensResponse"], [0, 1, 1, "", "CountTokensResponseDict"], [0, 5, 1, "", "CreateBatchJobConfig"], [0, 1, 1, "", "CreateBatchJobConfigDict"], [0, 5, 1, "", "CreateCachedContentConfig"], [0, 1, 1, "", "CreateCachedContentConfigDict"], [0, 5, 1, "", "CreateFileConfig"], [0, 1, 1, "", "CreateFileConfigDict"], [0, 5, 1, "", "CreateFileResponse"], [0, 1, 1, "", "CreateFileResponseDict"], [0, 5, 1, "", "CreateTuningJobConfig"], [0, 1, 1, "", "CreateTuningJobConfigDict"], [0, 5, 1, "", "DatasetDistribution"], [0, 1, 1, "", "DatasetDistributionDict"], [0, 5, 1, "", "DatasetDistributionDistributionBucket"], [0, 1, 1, "", "DatasetDistributionDistributionBucketDict"], [0, 5, 1, "", "DatasetStats"], [0, 1, 1, "", "DatasetStatsDict"], [0, 5, 1, "", "DeleteBatchJobConfig"], [0, 1, 1, "", "DeleteBatchJobConfigDict"], [0, 5, 1, "", "DeleteCachedContentConfig"], [0, 1, 1, "", "DeleteCachedContentConfigDict"], [0, 5, 1, "", "DeleteCachedContentResponse"], [0, 1, 1, "", "DeleteCachedContentResponseDict"], [0, 5, 1, "", "DeleteFileConfig"], [0, 1, 1, "", "DeleteFileConfigDict"], [0, 5, 1, "", "DeleteFileResponse"], [0, 1, 1, "", "DeleteFileResponseDict"], [0, 5, 1, "", "DeleteModelConfig"], [0, 1, 1, "", "DeleteModelConfigDict"], [0, 5, 1, "", "DeleteModelResponse"], [0, 1, 1, "", "DeleteModelResponseDict"], [0, 5, 1, "", "DeleteResourceJob"], [0, 1, 1, "", "DeleteResourceJobDict"], [0, 1, 1, "", "DeploymentResourcesType"], [0, 5, 1, "", "DistillationDataStats"], [0, 1, 1, "", "DistillationDataStatsDict"], [0, 5, 1, "", "DistillationHyperParameters"], [0, 1, 1, "", "DistillationHyperParametersDict"], [0, 5, 1, "", "DistillationSpec"], [0, 1, 1, "", "DistillationSpecDict"], [0, 5, 1, "", "DownloadFileConfig"], [0, 1, 1, "", "DownloadFileConfigDict"], [0, 5, 1, "", "DynamicRetrievalConfig"], [0, 1, 1, "", "DynamicRetrievalConfigDict"], [0, 1, 1, "", "DynamicRetrievalConfigMode"], [0, 5, 1, "", "EditImageConfig"], [0, 1, 1, "", "EditImageConfigDict"], [0, 5, 1, "", "EditImageResponse"], [0, 1, 1, "", "EditImageResponseDict"], [0, 1, 1, "", "EditMode"], [0, 5, 1, "", "EmbedContentConfig"], [0, 1, 1, "", "EmbedContentConfigDict"], [0, 5, 1, "", "EmbedContentMetadata"], [0, 1, 1, "", "EmbedContentMetadataDict"], [0, 5, 1, "", "EmbedContentResponse"], [0, 1, 1, "", "EmbedContentResponseDict"], [0, 5, 1, "", "EncryptionSpec"], [0, 1, 1, "", "EncryptionSpecDict"], [0, 5, 1, "", "Endpoint"], [0, 1, 1, "", "EndpointDict"], [0, 5, 1, "", "ExecutableCode"], [0, 1, 1, "", "ExecutableCodeDict"], [0, 5, 1, "", "FetchPredictOperationConfig"], [0, 1, 1, "", "FetchPredictOperationConfigDict"], [0, 5, 1, "", "File"], [0, 5, 1, "", "FileData"], [0, 1, 1, "", "FileDataDict"], [0, 1, 1, "", "FileDict"], [0, 1, 1, "", "FileSource"], [0, 1, 1, "", "FileState"], [0, 5, 1, "", "FileStatus"], [0, 1, 1, "", "FileStatusDict"], [0, 1, 1, "", "FinishReason"], [0, 5, 1, "", "FunctionCall"], [0, 1, 1, "", "FunctionCallDict"], [0, 5, 1, "", "FunctionCallingConfig"], [0, 1, 1, "", "FunctionCallingConfigDict"], [0, 1, 1, "", "FunctionCallingConfigMode"], [0, 5, 1, "", "FunctionDeclaration"], [0, 1, 1, "", "FunctionDeclarationDict"], [0, 5, 1, "", "FunctionResponse"], [0, 1, 1, "", "FunctionResponseDict"], [0, 5, 1, "", "GenerateContentConfig"], [0, 1, 1, "", "GenerateContentConfigDict"], [0, 5, 1, "", "GenerateContentResponse"], [0, 1, 1, "", "GenerateContentResponseDict"], [0, 5, 1, "", "GenerateContentResponsePromptFeedback"], [0, 1, 1, "", "GenerateContentResponsePromptFeedbackDict"], [0, 5, 1, "", "GenerateContentResponseUsageMetadata"], [0, 1, 1, "", "GenerateContentResponseUsageMetadataDict"], [0, 5, 1, "", "GenerateImagesConfig"], [0, 1, 1, "", "GenerateImagesConfigDict"], [0, 5, 1, "", "GenerateImagesResponse"], [0, 1, 1, "", "GenerateImagesResponseDict"], [0, 5, 1, "", "GeneratedImage"], [0, 1, 1, "", "GeneratedImageDict"], [0, 5, 1, "", "GenerationConfig"], [0, 1, 1, "", "GenerationConfigDict"], [0, 5, 1, "", "GenerationConfigRoutingConfig"], [0, 5, 1, "", "GenerationConfigRoutingConfigAutoRoutingMode"], [0, 1, 1, "", "GenerationConfigRoutingConfigAutoRoutingModeDict"], [0, 1, 1, "", "GenerationConfigRoutingConfigDict"], [0, 5, 1, "", "GenerationConfigRoutingConfigManualRoutingMode"], [0, 1, 1, "", "GenerationConfigRoutingConfigManualRoutingModeDict"], [0, 5, 1, "", "GetBatchJobConfig"], [0, 1, 1, "", "GetBatchJobConfigDict"], [0, 5, 1, "", "GetCachedContentConfig"], [0, 1, 1, "", "GetCachedContentConfigDict"], [0, 5, 1, "", "GetFileConfig"], [0, 1, 1, "", "GetFileConfigDict"], [0, 5, 1, "", "GetModelConfig"], [0, 1, 1, "", "GetModelConfigDict"], [0, 5, 1, "", "GetOperationConfig"], [0, 1, 1, "", "GetOperationConfigDict"], [0, 5, 1, "", "GetTuningJobConfig"], [0, 1, 1, "", "GetTuningJobConfigDict"], [0, 5, 1, "", "GoogleRpcStatus"], [0, 1, 1, "", "GoogleRpcStatusDict"], [0, 5, 1, "", "GoogleSearch"], [0, 1, 1, "", "GoogleSearchDict"], [0, 5, 1, "", "GoogleSearchRetrieval"], [0, 1, 1, "", "GoogleSearchRetrievalDict"], [0, 5, 1, "", "GoogleTypeDate"], [0, 1, 1, "", "GoogleTypeDateDict"], [0, 5, 1, "", "GroundingChunk"], [0, 1, 1, "", "GroundingChunkDict"], [0, 5, 1, "", "GroundingChunkRetrievedContext"], [0, 1, 1, "", "GroundingChunkRetrievedContextDict"], [0, 5, 1, "", "GroundingChunkWeb"], [0, 1, 1, "", "GroundingChunkWebDict"], [0, 5, 1, "", "GroundingMetadata"], [0, 1, 1, "", "GroundingMetadataDict"], [0, 5, 1, "", "GroundingSupport"], [0, 1, 1, "", "GroundingSupportDict"], [0, 1, 1, "", "HarmBlockMethod"], [0, 1, 1, "", "HarmBlockThreshold"], [0, 1, 1, "", "HarmCategory"], [0, 1, 1, "", "HarmProbability"], [0, 1, 1, "", "HarmSeverity"], [0, 5, 1, "", "HttpOptions"], [0, 1, 1, "", "HttpOptionsDict"], [0, 5, 1, "", "Image"], [0, 1, 1, "", "ImageDict"], [0, 1, 1, "", "ImagePromptLanguage"], [0, 5, 1, "", "JobError"], [0, 1, 1, "", "JobErrorDict"], [0, 1, 1, "", "JobState"], [0, 1, 1, "", "Language"], [0, 5, 1, "", "ListBatchJobsConfig"], [0, 1, 1, "", "ListBatchJobsConfigDict"], [0, 5, 1, "", "ListBatchJobsResponse"], [0, 1, 1, "", "ListBatchJobsResponseDict"], [0, 5, 1, "", "ListCachedContentsConfig"], [0, 1, 1, "", "ListCachedContentsConfigDict"], [0, 5, 1, "", "ListCachedContentsResponse"], [0, 1, 1, "", "ListCachedContentsResponseDict"], [0, 5, 1, "", "ListFilesConfig"], [0, 1, 1, "", "ListFilesConfigDict"], [0, 5, 1, "", "ListFilesResponse"], [0, 1, 1, "", "ListFilesResponseDict"], [0, 5, 1, "", "ListModelsConfig"], [0, 1, 1, "", "ListModelsConfigDict"], [0, 5, 1, "", "ListModelsResponse"], [0, 1, 1, "", "ListModelsResponseDict"], [0, 5, 1, "", "ListTuningJobsConfig"], [0, 1, 1, "", "ListTuningJobsConfigDict"], [0, 5, 1, "", "ListTuningJobsResponse"], [0, 1, 1, "", "ListTuningJobsResponseDict"], [0, 5, 1, "", "LiveClientContent"], [0, 1, 1, "", "LiveClientContentDict"], [0, 5, 1, "", "LiveClientMessage"], [0, 1, 1, "", "LiveClientMessageDict"], [0, 5, 1, "", "LiveClientRealtimeInput"], [0, 1, 1, "", "LiveClientRealtimeInputDict"], [0, 5, 1, "", "LiveClientSetup"], [0, 1, 1, "", "LiveClientSetupDict"], [0, 5, 1, "", "LiveClientToolResponse"], [0, 1, 1, "", "LiveClientToolResponseDict"], [0, 5, 1, "", "LiveConnectConfig"], [0, 1, 1, "", "LiveConnectConfigDict"], [0, 5, 1, "", "LiveServerContent"], [0, 1, 1, "", "LiveServerContentDict"], [0, 5, 1, "", "LiveServerMessage"], [0, 1, 1, "", "LiveServerMessageDict"], [0, 5, 1, "", "LiveServerSetupComplete"], [0, 1, 1, "", "LiveServerSetupCompleteDict"], [0, 5, 1, "", "LiveServerToolCall"], [0, 5, 1, "", "LiveServerToolCallCancellation"], [0, 1, 1, "", "LiveServerToolCallCancellationDict"], [0, 1, 1, "", "LiveServerToolCallDict"], [0, 5, 1, "", "LogprobsResult"], [0, 5, 1, "", "LogprobsResultCandidate"], [0, 1, 1, "", "LogprobsResultCandidateDict"], [0, 1, 1, "", "LogprobsResultDict"], [0, 5, 1, "", "LogprobsResultTopCandidates"], [0, 1, 1, "", "LogprobsResultTopCandidatesDict"], [0, 5, 1, "", "MaskReferenceConfig"], [0, 1, 1, "", "MaskReferenceConfigDict"], [0, 5, 1, "", "MaskReferenceImage"], [0, 1, 1, "", "MaskReferenceImageDict"], [0, 1, 1, "", "MaskReferenceMode"], [0, 1, 1, "", "MediaResolution"], [0, 1, 1, "", "Modality"], [0, 1, 1, "", "Mode"], [0, 5, 1, "", "Model"], [0, 1, 1, "", "ModelDict"], [0, 5, 1, "", "Operation"], [0, 1, 1, "", "OperationDict"], [0, 1, 1, "", "Outcome"], [0, 5, 1, "", "Part"], [0, 1, 1, "", "PartDict"], [0, 5, 1, "", "PartnerModelTuningSpec"], [0, 1, 1, "", "PartnerModelTuningSpecDict"], [0, 1, 1, "", "PersonGeneration"], [0, 5, 1, "", "PrebuiltVoiceConfig"], [0, 1, 1, "", "PrebuiltVoiceConfigDict"], [0, 5, 1, "", "RawReferenceImage"], [0, 1, 1, "", "RawReferenceImageDict"], [0, 5, 1, "", "ReplayFile"], [0, 1, 1, "", "ReplayFileDict"], [0, 5, 1, "", "ReplayInteraction"], [0, 1, 1, "", "ReplayInteractionDict"], [0, 5, 1, "", "ReplayRequest"], [0, 1, 1, "", "ReplayRequestDict"], [0, 5, 1, "", "ReplayResponse"], [0, 1, 1, "", "ReplayResponseDict"], [0, 5, 1, "", "Retrieval"], [0, 1, 1, "", "RetrievalDict"], [0, 5, 1, "", "RetrievalMetadata"], [0, 1, 1, "", "RetrievalMetadataDict"], [0, 1, 1, "", "SafetyFilterLevel"], [0, 5, 1, "", "SafetyRating"], [0, 1, 1, "", "SafetyRatingDict"], [0, 5, 1, "", "SafetySetting"], [0, 1, 1, "", "SafetySettingDict"], [0, 5, 1, "", "Schema"], [0, 1, 1, "", "SchemaDict"], [0, 5, 1, "", "SearchEntryPoint"], [0, 1, 1, "", "SearchEntryPointDict"], [0, 5, 1, "", "Segment"], [0, 1, 1, "", "SegmentDict"], [0, 5, 1, "", "SpeechConfig"], [0, 1, 1, "", "SpeechConfigDict"], [0, 1, 1, "", "State"], [0, 5, 1, "", "StyleReferenceConfig"], [0, 1, 1, "", "StyleReferenceConfigDict"], [0, 5, 1, "", "StyleReferenceImage"], [0, 1, 1, "", "StyleReferenceImageDict"], [0, 5, 1, "", "SubjectReferenceConfig"], [0, 1, 1, "", "SubjectReferenceConfigDict"], [0, 5, 1, "", "SubjectReferenceImage"], [0, 1, 1, "", "SubjectReferenceImageDict"], [0, 1, 1, "", "SubjectReferenceType"], [0, 5, 1, "", "SupervisedHyperParameters"], [0, 1, 1, "", "SupervisedHyperParametersDict"], [0, 5, 1, "", "SupervisedTuningDataStats"], [0, 1, 1, "", "SupervisedTuningDataStatsDict"], [0, 5, 1, "", "SupervisedTuningDatasetDistribution"], [0, 5, 1, "", "SupervisedTuningDatasetDistributionDatasetBucket"], [0, 1, 1, "", "SupervisedTuningDatasetDistributionDatasetBucketDict"], [0, 1, 1, "", "SupervisedTuningDatasetDistributionDict"], [0, 5, 1, "", "SupervisedTuningSpec"], [0, 1, 1, "", "SupervisedTuningSpecDict"], [0, 5, 1, "", "TestTableFile"], [0, 1, 1, "", "TestTableFileDict"], [0, 5, 1, "", "TestTableItem"], [0, 1, 1, "", "TestTableItemDict"], [0, 5, 1, "", "ThinkingConfig"], [0, 1, 1, "", "ThinkingConfigDict"], [0, 5, 1, "", "TokensInfo"], [0, 1, 1, "", "TokensInfoDict"], [0, 5, 1, "", "Tool"], [0, 5, 1, "", "ToolCodeExecution"], [0, 1, 1, "", "ToolCodeExecutionDict"], [0, 5, 1, "", "ToolConfig"], [0, 1, 1, "", "ToolConfigDict"], [0, 1, 1, "", "ToolDict"], [0, 5, 1, "", "TunedModel"], [0, 1, 1, "", "TunedModelDict"], [0, 5, 1, "", "TunedModelInfo"], [0, 1, 1, "", "TunedModelInfoDict"], [0, 5, 1, "", "TuningDataStats"], [0, 1, 1, "", "TuningDataStatsDict"], [0, 5, 1, "", "TuningDataset"], [0, 1, 1, "", "TuningDatasetDict"], [0, 5, 1, "", "TuningExample"], [0, 1, 1, "", "TuningExampleDict"], [0, 5, 1, "", "TuningJob"], [0, 1, 1, "", "TuningJobDict"], [0, 5, 1, "", "TuningValidationDataset"], [0, 1, 1, "", "TuningValidationDatasetDict"], [0, 1, 1, "", "Type"], [0, 5, 1, "", "UpdateCachedContentConfig"], [0, 1, 1, "", "UpdateCachedContentConfigDict"], [0, 5, 1, "", "UpdateModelConfig"], [0, 1, 1, "", "UpdateModelConfigDict"], [0, 5, 1, "", "UploadFileConfig"], [0, 1, 1, "", "UploadFileConfigDict"], [0, 5, 1, "", "UpscaleImageConfig"], [0, 1, 1, "", "UpscaleImageConfigDict"], [0, 5, 1, "", "UpscaleImageParameters"], [0, 1, 1, "", "UpscaleImageParametersDict"], [0, 5, 1, "", "UpscaleImageResponse"], [0, 1, 1, "", "UpscaleImageResponseDict"], [0, 5, 1, "", "VertexAISearch"], [0, 1, 1, "", "VertexAISearchDict"], [0, 5, 1, "", "VertexRagStore"], [0, 1, 1, "", "VertexRagStoreDict"], [0, 5, 1, "", "VertexRagStoreRagResource"], [0, 1, 1, "", "VertexRagStoreRagResourceDict"], [0, 5, 1, "", "VideoMetadata"], [0, 1, 1, "", "VideoMetadataDict"], [0, 5, 1, "", "VoiceConfig"], [0, 1, 1, "", "VoiceConfigDict"]], "genai.types.AdapterSize": [[0, 4, 1, "", "ADAPTER_SIZE_EIGHT"], [0, 4, 1, "", "ADAPTER_SIZE_FOUR"], [0, 4, 1, "", "ADAPTER_SIZE_ONE"], [0, 4, 1, "", "ADAPTER_SIZE_SIXTEEN"], [0, 4, 1, "", "ADAPTER_SIZE_THIRTY_TWO"], [0, 4, 1, "", "ADAPTER_SIZE_UNSPECIFIED"]], "genai.types.AutomaticFunctionCallingConfig": [[0, 6, 1, "", "disable"], [0, 6, 1, "", "ignore_call_history"], [0, 6, 1, "", "maximum_remote_calls"]], "genai.types.AutomaticFunctionCallingConfigDict": [[0, 4, 1, "", "disable"], [0, 4, 1, "", "ignore_call_history"], [0, 4, 1, "", "maximum_remote_calls"]], "genai.types.BatchJob": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "dest"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "end_time"], [0, 6, 1, "", "error"], [0, 6, 1, "", "model"], [0, 6, 1, "", "name"], [0, 6, 1, "", "src"], [0, 6, 1, "", "start_time"], [0, 6, 1, "", "state"], [0, 6, 1, "", "update_time"]], "genai.types.BatchJobDestination": [[0, 6, 1, "", "bigquery_uri"], [0, 6, 1, "", "format"], [0, 6, 1, "", "gcs_uri"]], "genai.types.BatchJobDestinationDict": [[0, 4, 1, "", "bigquery_uri"], [0, 4, 1, "", "format"], [0, 4, 1, "", "gcs_uri"]], "genai.types.BatchJobDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "dest"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "end_time"], [0, 4, 1, "", "error"], [0, 4, 1, "", "model"], [0, 4, 1, "", "name"], [0, 4, 1, "", "src"], [0, 4, 1, "", "start_time"], [0, 4, 1, "", "state"], [0, 4, 1, "", "update_time"]], "genai.types.BatchJobSource": [[0, 6, 1, "", "bigquery_uri"], [0, 6, 1, "", "format"], [0, 6, 1, "", "gcs_uri"]], "genai.types.BatchJobSourceDict": [[0, 4, 1, "", "bigquery_uri"], [0, 4, 1, "", "format"], [0, 4, 1, "", "gcs_uri"]], "genai.types.Blob": [[0, 6, 1, "", "data"], [0, 6, 1, "", "mime_type"]], "genai.types.BlobDict": [[0, 4, 1, "", "data"], [0, 4, 1, "", "mime_type"]], "genai.types.BlockedReason": [[0, 4, 1, "", "BLOCKED_REASON_UNSPECIFIED"], [0, 4, 1, "", "BLOCKLIST"], [0, 4, 1, "", "OTHER"], [0, 4, 1, "", "PROHIBITED_CONTENT"], [0, 4, 1, "", "SAFETY"]], "genai.types.CachedContent": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "expire_time"], [0, 6, 1, "", "model"], [0, 6, 1, "", "name"], [0, 6, 1, "", "update_time"], [0, 6, 1, "", "usage_metadata"]], "genai.types.CachedContentDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "expire_time"], [0, 4, 1, "", "model"], [0, 4, 1, "", "name"], [0, 4, 1, "", "update_time"], [0, 4, 1, "", "usage_metadata"]], "genai.types.CachedContentUsageMetadata": [[0, 6, 1, "", "audio_duration_seconds"], [0, 6, 1, "", "image_count"], [0, 6, 1, "", "text_count"], [0, 6, 1, "", "total_token_count"], [0, 6, 1, "", "video_duration_seconds"]], "genai.types.CachedContentUsageMetadataDict": [[0, 4, 1, "", "audio_duration_seconds"], [0, 4, 1, "", "image_count"], [0, 4, 1, "", "text_count"], [0, 4, 1, "", "total_token_count"], [0, 4, 1, "", "video_duration_seconds"]], "genai.types.CancelBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.CancelBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.Candidate": [[0, 6, 1, "", "avg_logprobs"], [0, 6, 1, "", "citation_metadata"], [0, 6, 1, "", "content"], [0, 6, 1, "", "finish_message"], [0, 6, 1, "", "finish_reason"], [0, 6, 1, "", "grounding_metadata"], [0, 6, 1, "", "index"], [0, 6, 1, "", "logprobs_result"], [0, 6, 1, "", "safety_ratings"], [0, 6, 1, "", "token_count"]], "genai.types.CandidateDict": [[0, 4, 1, "", "avg_logprobs"], [0, 4, 1, "", "citation_metadata"], [0, 4, 1, "", "content"], [0, 4, 1, "", "finish_message"], [0, 4, 1, "", "finish_reason"], [0, 4, 1, "", "grounding_metadata"], [0, 4, 1, "", "index"], [0, 4, 1, "", "logprobs_result"], [0, 4, 1, "", "safety_ratings"], [0, 4, 1, "", "token_count"]], "genai.types.Citation": [[0, 6, 1, "", "end_index"], [0, 6, 1, "", "license"], [0, 6, 1, "", "publication_date"], [0, 6, 1, "", "start_index"], [0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.CitationDict": [[0, 4, 1, "", "end_index"], [0, 4, 1, "", "license"], [0, 4, 1, "", "publication_date"], [0, 4, 1, "", "start_index"], [0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.CitationMetadata": [[0, 6, 1, "", "citations"]], "genai.types.CitationMetadataDict": [[0, 4, 1, "", "citations"]], "genai.types.CodeExecutionResult": [[0, 6, 1, "", "outcome"], [0, 6, 1, "", "output"]], "genai.types.CodeExecutionResultDict": [[0, 4, 1, "", "outcome"], [0, 4, 1, "", "output"]], "genai.types.ComputeTokensConfig": [[0, 6, 1, "", "http_options"]], "genai.types.ComputeTokensConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.ComputeTokensResponse": [[0, 6, 1, "", "tokens_info"]], "genai.types.ComputeTokensResponseDict": [[0, 4, 1, "", "tokens_info"]], "genai.types.Content": [[0, 6, 1, "", "parts"], [0, 6, 1, "", "role"]], "genai.types.ContentDict": [[0, 4, 1, "", "parts"], [0, 4, 1, "", "role"]], "genai.types.ContentEmbedding": [[0, 6, 1, "", "statistics"], [0, 6, 1, "", "values"]], "genai.types.ContentEmbeddingDict": [[0, 4, 1, "", "statistics"]], "genai.types.ContentEmbeddingStatistics": [[0, 6, 1, "", "token_count"], [0, 6, 1, "", "truncated"]], "genai.types.ContentEmbeddingStatisticsDict": [[0, 4, 1, "", "token_count"], [0, 4, 1, "", "truncated"]], "genai.types.ControlReferenceConfig": [[0, 6, 1, "", "control_type"], [0, 6, 1, "", "enable_control_image_computation"]], "genai.types.ControlReferenceConfigDict": [[0, 4, 1, "", "control_type"], [0, 4, 1, "", "enable_control_image_computation"]], "genai.types.ControlReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "control_image_config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.ControlReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.ControlReferenceType": [[0, 4, 1, "", "CONTROL_TYPE_CANNY"], [0, 4, 1, "", "CONTROL_TYPE_DEFAULT"], [0, 4, 1, "", "CONTROL_TYPE_FACE_MESH"], [0, 4, 1, "", "CONTROL_TYPE_SCRIBBLE"]], "genai.types.CountTokensConfig": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.CountTokensConfigDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.CountTokensResponse": [[0, 6, 1, "", "cached_content_token_count"], [0, 6, 1, "", "total_tokens"]], "genai.types.CountTokensResponseDict": [[0, 4, 1, "", "cached_content_token_count"], [0, 4, 1, "", "total_tokens"]], "genai.types.CreateBatchJobConfig": [[0, 6, 1, "", "dest"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"]], "genai.types.CreateBatchJobConfigDict": [[0, 4, 1, "", "dest"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"]], "genai.types.CreateCachedContentConfig": [[0, 6, 1, "", "contents"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "expire_time"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tool_config"], [0, 6, 1, "", "tools"], [0, 6, 1, "", "ttl"]], "genai.types.CreateCachedContentConfigDict": [[0, 4, 1, "", "contents"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "expire_time"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tool_config"], [0, 4, 1, "", "tools"], [0, 4, 1, "", "ttl"]], "genai.types.CreateFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.CreateFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.CreateFileResponse": [[0, 6, 1, "", "http_headers"]], "genai.types.CreateFileResponseDict": [[0, 4, 1, "", "http_headers"]], "genai.types.CreateTuningJobConfig": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "batch_size"], [0, 6, 1, "", "description"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "learning_rate"], [0, 6, 1, "", "learning_rate_multiplier"], [0, 6, 1, "", "tuned_model_display_name"], [0, 6, 1, "", "validation_dataset"]], "genai.types.CreateTuningJobConfigDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "batch_size"], [0, 4, 1, "", "description"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "learning_rate"], [0, 4, 1, "", "learning_rate_multiplier"], [0, 4, 1, "", "tuned_model_display_name"], [0, 4, 1, "", "validation_dataset"]], "genai.types.DatasetDistribution": [[0, 6, 1, "", "buckets"], [0, 6, 1, "", "max"], [0, 6, 1, "", "mean"], [0, 6, 1, "", "median"], [0, 6, 1, "", "min"], [0, 6, 1, "", "p5"], [0, 6, 1, "", "p95"], [0, 6, 1, "", "sum"]], "genai.types.DatasetDistributionDict": [[0, 4, 1, "", "buckets"], [0, 4, 1, "", "max"], [0, 4, 1, "", "mean"], [0, 4, 1, "", "median"], [0, 4, 1, "", "min"], [0, 4, 1, "", "p5"], [0, 4, 1, "", "p95"], [0, 4, 1, "", "sum"]], "genai.types.DatasetDistributionDistributionBucket": [[0, 6, 1, "", "count"], [0, 6, 1, "", "left"], [0, 6, 1, "", "right"]], "genai.types.DatasetDistributionDistributionBucketDict": [[0, 4, 1, "", "count"], [0, 4, 1, "", "left"], [0, 4, 1, "", "right"]], "genai.types.DatasetStats": [[0, 6, 1, "", "total_billable_character_count"], [0, 6, 1, "", "total_tuning_character_count"], [0, 6, 1, "", "tuning_dataset_example_count"], [0, 6, 1, "", "tuning_step_count"], [0, 6, 1, "", "user_dataset_examples"], [0, 6, 1, "", "user_input_token_distribution"], [0, 6, 1, "", "user_message_per_example_distribution"], [0, 6, 1, "", "user_output_token_distribution"]], "genai.types.DatasetStatsDict": [[0, 4, 1, "", "total_billable_character_count"], [0, 4, 1, "", "total_tuning_character_count"], [0, 4, 1, "", "tuning_dataset_example_count"], [0, 4, 1, "", "tuning_step_count"], [0, 4, 1, "", "user_dataset_examples"], [0, 4, 1, "", "user_input_token_distribution"], [0, 4, 1, "", "user_message_per_example_distribution"], [0, 4, 1, "", "user_output_token_distribution"]], "genai.types.DeleteBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteCachedContentConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteCachedContentConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteModelConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DeleteModelConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DeleteResourceJob": [[0, 6, 1, "", "done"], [0, 6, 1, "", "error"], [0, 6, 1, "", "name"]], "genai.types.DeleteResourceJobDict": [[0, 4, 1, "", "done"], [0, 4, 1, "", "error"], [0, 4, 1, "", "name"]], "genai.types.DeploymentResourcesType": [[0, 4, 1, "", "AUTOMATIC_RESOURCES"], [0, 4, 1, "", "DEDICATED_RESOURCES"], [0, 4, 1, "", "DEPLOYMENT_RESOURCES_TYPE_UNSPECIFIED"], [0, 4, 1, "", "SHARED_RESOURCES"]], "genai.types.DistillationDataStats": [[0, 6, 1, "", "training_dataset_stats"]], "genai.types.DistillationDataStatsDict": [[0, 4, 1, "", "training_dataset_stats"]], "genai.types.DistillationHyperParameters": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "learning_rate_multiplier"]], "genai.types.DistillationHyperParametersDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "learning_rate_multiplier"]], "genai.types.DistillationSpec": [[0, 6, 1, "", "base_teacher_model"], [0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "pipeline_root_directory"], [0, 6, 1, "", "student_model"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "tuned_teacher_model_source"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.DistillationSpecDict": [[0, 4, 1, "", "base_teacher_model"], [0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "pipeline_root_directory"], [0, 4, 1, "", "student_model"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "tuned_teacher_model_source"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.DownloadFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.DownloadFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.DynamicRetrievalConfig": [[0, 6, 1, "", "dynamic_threshold"], [0, 6, 1, "", "mode"]], "genai.types.DynamicRetrievalConfigDict": [[0, 4, 1, "", "dynamic_threshold"], [0, 4, 1, "", "mode"]], "genai.types.DynamicRetrievalConfigMode": [[0, 4, 1, "", "MODE_DYNAMIC"], [0, 4, 1, "", "MODE_UNSPECIFIED"]], "genai.types.EditImageConfig": [[0, 6, 1, "", "edit_mode"], [0, 6, 1, "", "guidance_scale"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "include_safety_attributes"], [0, 6, 1, "", "language"], [0, 6, 1, "", "negative_prompt"], [0, 6, 1, "", "number_of_images"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_gcs_uri"], [0, 6, 1, "", "output_mime_type"], [0, 6, 1, "", "person_generation"], [0, 6, 1, "", "safety_filter_level"], [0, 6, 1, "", "seed"]], "genai.types.EditImageConfigDict": [[0, 4, 1, "", "edit_mode"], [0, 4, 1, "", "guidance_scale"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "include_safety_attributes"], [0, 4, 1, "", "language"], [0, 4, 1, "", "negative_prompt"], [0, 4, 1, "", "number_of_images"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_gcs_uri"], [0, 4, 1, "", "output_mime_type"], [0, 4, 1, "", "person_generation"], [0, 4, 1, "", "safety_filter_level"], [0, 4, 1, "", "seed"]], "genai.types.EditImageResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.EditImageResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.EditMode": [[0, 4, 1, "", "EDIT_MODE_BGSWAP"], [0, 4, 1, "", "EDIT_MODE_CONTROLLED_EDITING"], [0, 4, 1, "", "EDIT_MODE_DEFAULT"], [0, 4, 1, "", "EDIT_MODE_INPAINT_INSERTION"], [0, 4, 1, "", "EDIT_MODE_INPAINT_REMOVAL"], [0, 4, 1, "", "EDIT_MODE_OUTPAINT"], [0, 4, 1, "", "EDIT_MODE_PRODUCT_IMAGE"], [0, 4, 1, "", "EDIT_MODE_STYLE"]], "genai.types.EmbedContentConfig": [[0, 6, 1, "", "auto_truncate"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "output_dimensionality"], [0, 6, 1, "", "task_type"], [0, 6, 1, "", "title"]], "genai.types.EmbedContentConfigDict": [[0, 4, 1, "", "auto_truncate"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "output_dimensionality"], [0, 4, 1, "", "task_type"], [0, 4, 1, "", "title"]], "genai.types.EmbedContentMetadata": [[0, 6, 1, "", "billable_character_count"]], "genai.types.EmbedContentMetadataDict": [[0, 4, 1, "", "billable_character_count"]], "genai.types.EmbedContentResponse": [[0, 6, 1, "", "embeddings"], [0, 6, 1, "", "metadata"]], "genai.types.EmbedContentResponseDict": [[0, 4, 1, "", "embeddings"], [0, 4, 1, "", "metadata"]], "genai.types.EncryptionSpec": [[0, 6, 1, "", "kms_key_name"]], "genai.types.EncryptionSpecDict": [[0, 4, 1, "", "kms_key_name"]], "genai.types.Endpoint": [[0, 6, 1, "", "deployed_model_id"], [0, 6, 1, "", "name"]], "genai.types.EndpointDict": [[0, 4, 1, "", "deployed_model_id"], [0, 4, 1, "", "name"]], "genai.types.ExecutableCode": [[0, 6, 1, "", "code"], [0, 6, 1, "", "language"]], "genai.types.ExecutableCodeDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "language"]], "genai.types.FetchPredictOperationConfig": [[0, 6, 1, "", "http_options"]], "genai.types.FetchPredictOperationConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.File": [[0, 6, 1, "", "create_time"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "download_uri"], [0, 6, 1, "", "error"], [0, 6, 1, "", "expiration_time"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "name"], [0, 6, 1, "", "sha256_hash"], [0, 6, 1, "", "size_bytes"], [0, 6, 1, "", "source"], [0, 6, 1, "", "state"], [0, 6, 1, "", "update_time"], [0, 6, 1, "", "uri"], [0, 6, 1, "", "video_metadata"]], "genai.types.FileData": [[0, 6, 1, "", "file_uri"], [0, 6, 1, "", "mime_type"]], "genai.types.FileDataDict": [[0, 4, 1, "", "file_uri"], [0, 4, 1, "", "mime_type"]], "genai.types.FileDict": [[0, 4, 1, "", "create_time"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "download_uri"], [0, 4, 1, "", "error"], [0, 4, 1, "", "expiration_time"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "name"], [0, 4, 1, "", "sha256_hash"], [0, 4, 1, "", "size_bytes"], [0, 4, 1, "", "source"], [0, 4, 1, "", "state"], [0, 4, 1, "", "update_time"], [0, 4, 1, "", "uri"], [0, 4, 1, "", "video_metadata"]], "genai.types.FileSource": [[0, 4, 1, "", "GENERATED"], [0, 4, 1, "", "SOURCE_UNSPECIFIED"], [0, 4, 1, "", "UPLOADED"]], "genai.types.FileState": [[0, 4, 1, "", "ACTIVE"], [0, 4, 1, "", "FAILED"], [0, 4, 1, "", "PROCESSING"], [0, 4, 1, "", "STATE_UNSPECIFIED"]], "genai.types.FileStatus": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.FileStatusDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.FinishReason": [[0, 4, 1, "", "BLOCKLIST"], [0, 4, 1, "", "FINISH_REASON_UNSPECIFIED"], [0, 4, 1, "", "MALFORMED_FUNCTION_CALL"], [0, 4, 1, "", "MAX_TOKENS"], [0, 4, 1, "", "OTHER"], [0, 4, 1, "", "PROHIBITED_CONTENT"], [0, 4, 1, "", "RECITATION"], [0, 4, 1, "", "SAFETY"], [0, 4, 1, "", "SPII"], [0, 4, 1, "", "STOP"]], "genai.types.FunctionCall": [[0, 6, 1, "", "args"], [0, 6, 1, "", "id"], [0, 6, 1, "", "name"]], "genai.types.FunctionCallDict": [[0, 4, 1, "", "args"], [0, 4, 1, "", "id"], [0, 4, 1, "", "name"]], "genai.types.FunctionCallingConfig": [[0, 6, 1, "", "allowed_function_names"], [0, 6, 1, "", "mode"]], "genai.types.FunctionCallingConfigDict": [[0, 4, 1, "", "allowed_function_names"], [0, 4, 1, "", "mode"]], "genai.types.FunctionCallingConfigMode": [[0, 4, 1, "", "ANY"], [0, 4, 1, "", "AUTO"], [0, 4, 1, "", "MODE_UNSPECIFIED"], [0, 4, 1, "", "NONE"]], "genai.types.FunctionDeclaration": [[0, 6, 1, "", "description"], [0, 2, 1, "", "from_callable"], [0, 2, 1, "", "from_callable_with_api_option"], [0, 6, 1, "", "name"], [0, 6, 1, "", "parameters"], [0, 6, 1, "", "response"]], "genai.types.FunctionDeclarationDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "name"], [0, 4, 1, "", "parameters"], [0, 4, 1, "", "response"]], "genai.types.FunctionResponse": [[0, 6, 1, "", "id"], [0, 6, 1, "", "name"], [0, 6, 1, "", "response"]], "genai.types.FunctionResponseDict": [[0, 4, 1, "", "id"], [0, 4, 1, "", "name"], [0, 4, 1, "", "response"]], "genai.types.GenerateContentConfig": [[0, 6, 1, "", "audio_timestamp"], [0, 6, 1, "", "automatic_function_calling"], [0, 6, 1, "", "cached_content"], [0, 6, 1, "", "candidate_count"], [0, 6, 1, "", "frequency_penalty"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "logprobs"], [0, 6, 1, "", "max_output_tokens"], [0, 6, 1, "", "media_resolution"], [0, 6, 1, "", "presence_penalty"], [0, 6, 1, "", "response_logprobs"], [0, 6, 1, "", "response_mime_type"], [0, 6, 1, "", "response_modalities"], [0, 6, 1, "", "response_schema"], [0, 6, 1, "", "routing_config"], [0, 6, 1, "", "safety_settings"], [0, 6, 1, "", "seed"], [0, 6, 1, "", "speech_config"], [0, 6, 1, "", "stop_sequences"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "temperature"], [0, 6, 1, "", "thinking_config"], [0, 6, 1, "", "tool_config"], [0, 6, 1, "", "tools"], [0, 6, 1, "", "top_k"], [0, 6, 1, "", "top_p"]], "genai.types.GenerateContentConfigDict": [[0, 4, 1, "", "audio_timestamp"], [0, 4, 1, "", "automatic_function_calling"], [0, 4, 1, "", "cached_content"], [0, 4, 1, "", "candidate_count"], [0, 4, 1, "", "frequency_penalty"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "logprobs"], [0, 4, 1, "", "max_output_tokens"], [0, 4, 1, "", "media_resolution"], [0, 4, 1, "", "presence_penalty"], [0, 4, 1, "", "response_logprobs"], [0, 4, 1, "", "response_mime_type"], [0, 4, 1, "", "response_modalities"], [0, 4, 1, "", "response_schema"], [0, 4, 1, "", "routing_config"], [0, 4, 1, "", "safety_settings"], [0, 4, 1, "", "seed"], [0, 4, 1, "", "speech_config"], [0, 4, 1, "", "stop_sequences"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "temperature"], [0, 4, 1, "", "thinking_config"], [0, 4, 1, "", "tool_config"], [0, 4, 1, "", "tools"], [0, 4, 1, "", "top_k"], [0, 4, 1, "", "top_p"]], "genai.types.GenerateContentResponse": [[0, 6, 1, "", "automatic_function_calling_history"], [0, 6, 1, "", "candidates"], [0, 3, 1, "", "function_calls"], [0, 6, 1, "", "model_version"], [0, 6, 1, "", "parsed"], [0, 6, 1, "", "prompt_feedback"], [0, 3, 1, "", "text"], [0, 6, 1, "", "usage_metadata"]], "genai.types.GenerateContentResponseDict": [[0, 4, 1, "", "candidates"], [0, 4, 1, "", "model_version"], [0, 4, 1, "", "prompt_feedback"], [0, 4, 1, "", "usage_metadata"]], "genai.types.GenerateContentResponsePromptFeedback": [[0, 6, 1, "", "block_reason"], [0, 6, 1, "", "block_reason_message"], [0, 6, 1, "", "safety_ratings"]], "genai.types.GenerateContentResponsePromptFeedbackDict": [[0, 4, 1, "", "block_reason"], [0, 4, 1, "", "block_reason_message"], [0, 4, 1, "", "safety_ratings"]], "genai.types.GenerateContentResponseUsageMetadata": [[0, 6, 1, "", "cached_content_token_count"], [0, 6, 1, "", "candidates_token_count"], [0, 6, 1, "", "prompt_token_count"], [0, 6, 1, "", "total_token_count"]], "genai.types.GenerateContentResponseUsageMetadataDict": [[0, 4, 1, "", "cached_content_token_count"], [0, 4, 1, "", "candidates_token_count"], [0, 4, 1, "", "prompt_token_count"], [0, 4, 1, "", "total_token_count"]], "genai.types.GenerateImagesConfig": [[0, 6, 1, "", "add_watermark"], [0, 6, 1, "", "aspect_ratio"], [0, 6, 1, "", "enhance_prompt"], [0, 6, 1, "", "guidance_scale"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "include_safety_attributes"], [0, 6, 1, "", "language"], [0, 6, 1, "", "negative_prompt"], [0, 6, 1, "", "number_of_images"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_gcs_uri"], [0, 6, 1, "", "output_mime_type"], [0, 6, 1, "", "person_generation"], [0, 6, 1, "", "safety_filter_level"], [0, 6, 1, "", "seed"]], "genai.types.GenerateImagesConfigDict": [[0, 4, 1, "", "add_watermark"], [0, 4, 1, "", "aspect_ratio"], [0, 4, 1, "", "enhance_prompt"], [0, 4, 1, "", "guidance_scale"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "include_safety_attributes"], [0, 4, 1, "", "language"], [0, 4, 1, "", "negative_prompt"], [0, 4, 1, "", "number_of_images"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_gcs_uri"], [0, 4, 1, "", "output_mime_type"], [0, 4, 1, "", "person_generation"], [0, 4, 1, "", "safety_filter_level"], [0, 4, 1, "", "seed"]], "genai.types.GenerateImagesResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.GenerateImagesResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.GeneratedImage": [[0, 6, 1, "", "enhanced_prompt"], [0, 6, 1, "", "image"], [0, 6, 1, "", "rai_filtered_reason"]], "genai.types.GeneratedImageDict": [[0, 4, 1, "", "enhanced_prompt"], [0, 4, 1, "", "image"], [0, 4, 1, "", "rai_filtered_reason"]], "genai.types.GenerationConfig": [[0, 6, 1, "", "audio_timestamp"], [0, 6, 1, "", "candidate_count"], [0, 6, 1, "", "frequency_penalty"], [0, 6, 1, "", "logprobs"], [0, 6, 1, "", "max_output_tokens"], [0, 6, 1, "", "presence_penalty"], [0, 6, 1, "", "response_logprobs"], [0, 6, 1, "", "response_mime_type"], [0, 6, 1, "", "response_schema"], [0, 6, 1, "", "routing_config"], [0, 6, 1, "", "seed"], [0, 6, 1, "", "stop_sequences"], [0, 6, 1, "", "temperature"], [0, 6, 1, "", "top_k"], [0, 6, 1, "", "top_p"]], "genai.types.GenerationConfigDict": [[0, 4, 1, "", "audio_timestamp"], [0, 4, 1, "", "candidate_count"], [0, 4, 1, "", "frequency_penalty"], [0, 4, 1, "", "logprobs"], [0, 4, 1, "", "max_output_tokens"], [0, 4, 1, "", "presence_penalty"], [0, 4, 1, "", "response_logprobs"], [0, 4, 1, "", "response_mime_type"], [0, 4, 1, "", "response_schema"], [0, 4, 1, "", "routing_config"], [0, 4, 1, "", "seed"], [0, 4, 1, "", "stop_sequences"], [0, 4, 1, "", "temperature"], [0, 4, 1, "", "top_k"], [0, 4, 1, "", "top_p"]], "genai.types.GenerationConfigRoutingConfig": [[0, 6, 1, "", "auto_mode"], [0, 6, 1, "", "manual_mode"]], "genai.types.GenerationConfigRoutingConfigAutoRoutingMode": [[0, 6, 1, "", "model_routing_preference"]], "genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict": [[0, 4, 1, "", "model_routing_preference"]], "genai.types.GenerationConfigRoutingConfigDict": [[0, 4, 1, "", "auto_mode"], [0, 4, 1, "", "manual_mode"]], "genai.types.GenerationConfigRoutingConfigManualRoutingMode": [[0, 6, 1, "", "model_name"]], "genai.types.GenerationConfigRoutingConfigManualRoutingModeDict": [[0, 4, 1, "", "model_name"]], "genai.types.GetBatchJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetBatchJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetCachedContentConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetCachedContentConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetFileConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetFileConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetModelConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetModelConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetOperationConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetOperationConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GetTuningJobConfig": [[0, 6, 1, "", "http_options"]], "genai.types.GetTuningJobConfigDict": [[0, 4, 1, "", "http_options"]], "genai.types.GoogleRpcStatus": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.GoogleRpcStatusDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.GoogleSearchRetrieval": [[0, 6, 1, "", "dynamic_retrieval_config"]], "genai.types.GoogleSearchRetrievalDict": [[0, 4, 1, "", "dynamic_retrieval_config"]], "genai.types.GoogleTypeDate": [[0, 6, 1, "", "day"], [0, 6, 1, "", "month"], [0, 6, 1, "", "year"]], "genai.types.GoogleTypeDateDict": [[0, 4, 1, "", "day"], [0, 4, 1, "", "month"], [0, 4, 1, "", "year"]], "genai.types.GroundingChunk": [[0, 6, 1, "", "retrieved_context"], [0, 6, 1, "", "web"]], "genai.types.GroundingChunkDict": [[0, 4, 1, "", "retrieved_context"], [0, 4, 1, "", "web"]], "genai.types.GroundingChunkRetrievedContext": [[0, 6, 1, "", "text"], [0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.GroundingChunkRetrievedContextDict": [[0, 4, 1, "", "text"], [0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.GroundingChunkWeb": [[0, 6, 1, "", "title"], [0, 6, 1, "", "uri"]], "genai.types.GroundingChunkWebDict": [[0, 4, 1, "", "title"], [0, 4, 1, "", "uri"]], "genai.types.GroundingMetadata": [[0, 6, 1, "", "grounding_chunks"], [0, 6, 1, "", "grounding_supports"], [0, 6, 1, "", "retrieval_metadata"], [0, 6, 1, "", "retrieval_queries"], [0, 6, 1, "", "search_entry_point"], [0, 6, 1, "", "web_search_queries"]], "genai.types.GroundingMetadataDict": [[0, 4, 1, "", "grounding_chunks"], [0, 4, 1, "", "grounding_supports"], [0, 4, 1, "", "retrieval_metadata"], [0, 4, 1, "", "retrieval_queries"], [0, 4, 1, "", "search_entry_point"], [0, 4, 1, "", "web_search_queries"]], "genai.types.GroundingSupport": [[0, 6, 1, "", "confidence_scores"], [0, 6, 1, "", "grounding_chunk_indices"], [0, 6, 1, "", "segment"]], "genai.types.GroundingSupportDict": [[0, 4, 1, "", "confidence_scores"], [0, 4, 1, "", "grounding_chunk_indices"], [0, 4, 1, "", "segment"]], "genai.types.HarmBlockMethod": [[0, 4, 1, "", "HARM_BLOCK_METHOD_UNSPECIFIED"], [0, 4, 1, "", "PROBABILITY"], [0, 4, 1, "", "SEVERITY"]], "genai.types.HarmBlockThreshold": [[0, 4, 1, "", "BLOCK_LOW_AND_ABOVE"], [0, 4, 1, "", "BLOCK_MEDIUM_AND_ABOVE"], [0, 4, 1, "", "BLOCK_NONE"], [0, 4, 1, "", "BLOCK_ONLY_HIGH"], [0, 4, 1, "", "HARM_BLOCK_THRESHOLD_UNSPECIFIED"], [0, 4, 1, "", "OFF"]], "genai.types.HarmCategory": [[0, 4, 1, "", "HARM_CATEGORY_CIVIC_INTEGRITY"], [0, 4, 1, "", "HARM_CATEGORY_DANGEROUS_CONTENT"], [0, 4, 1, "", "HARM_CATEGORY_HARASSMENT"], [0, 4, 1, "", "HARM_CATEGORY_HATE_SPEECH"], [0, 4, 1, "", "HARM_CATEGORY_SEXUALLY_EXPLICIT"], [0, 4, 1, "", "HARM_CATEGORY_UNSPECIFIED"]], "genai.types.HarmProbability": [[0, 4, 1, "", "HARM_PROBABILITY_UNSPECIFIED"], [0, 4, 1, "", "HIGH"], [0, 4, 1, "", "LOW"], [0, 4, 1, "", "MEDIUM"], [0, 4, 1, "", "NEGLIGIBLE"]], "genai.types.HarmSeverity": [[0, 4, 1, "", "HARM_SEVERITY_HIGH"], [0, 4, 1, "", "HARM_SEVERITY_LOW"], [0, 4, 1, "", "HARM_SEVERITY_MEDIUM"], [0, 4, 1, "", "HARM_SEVERITY_NEGLIGIBLE"], [0, 4, 1, "", "HARM_SEVERITY_UNSPECIFIED"]], "genai.types.HttpOptions": [[0, 6, 1, "", "api_version"], [0, 6, 1, "", "base_url"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "timeout"]], "genai.types.HttpOptionsDict": [[0, 4, 1, "", "api_version"], [0, 4, 1, "", "base_url"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "timeout"]], "genai.types.Image": [[0, 2, 1, "", "from_file"], [0, 6, 1, "", "gcs_uri"], [0, 6, 1, "", "image_bytes"], [0, 6, 1, "", "mime_type"], [0, 2, 1, "", "model_post_init"], [0, 2, 1, "", "save"], [0, 2, 1, "", "show"]], "genai.types.ImageDict": [[0, 4, 1, "", "gcs_uri"], [0, 4, 1, "", "image_bytes"], [0, 4, 1, "", "mime_type"]], "genai.types.ImagePromptLanguage": [[0, 4, 1, "", "auto"], [0, 4, 1, "", "en"], [0, 4, 1, "", "hi"], [0, 4, 1, "", "ja"], [0, 4, 1, "", "ko"]], "genai.types.JobError": [[0, 6, 1, "", "code"], [0, 6, 1, "", "details"], [0, 6, 1, "", "message"]], "genai.types.JobErrorDict": [[0, 4, 1, "", "code"], [0, 4, 1, "", "details"], [0, 4, 1, "", "message"]], "genai.types.JobState": [[0, 4, 1, "", "JOB_STATE_CANCELLED"], [0, 4, 1, "", "JOB_STATE_CANCELLING"], [0, 4, 1, "", "JOB_STATE_EXPIRED"], [0, 4, 1, "", "JOB_STATE_FAILED"], [0, 4, 1, "", "JOB_STATE_PARTIALLY_SUCCEEDED"], [0, 4, 1, "", "JOB_STATE_PAUSED"], [0, 4, 1, "", "JOB_STATE_PENDING"], [0, 4, 1, "", "JOB_STATE_QUEUED"], [0, 4, 1, "", "JOB_STATE_RUNNING"], [0, 4, 1, "", "JOB_STATE_SUCCEEDED"], [0, 4, 1, "", "JOB_STATE_UNSPECIFIED"], [0, 4, 1, "", "JOB_STATE_UPDATING"]], "genai.types.Language": [[0, 4, 1, "", "LANGUAGE_UNSPECIFIED"], [0, 4, 1, "", "PYTHON"]], "genai.types.ListBatchJobsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListBatchJobsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListBatchJobsResponse": [[0, 6, 1, "", "batch_jobs"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListBatchJobsResponseDict": [[0, 4, 1, "", "batch_jobs"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListCachedContentsConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListCachedContentsConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListCachedContentsResponse": [[0, 6, 1, "", "cached_contents"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListCachedContentsResponseDict": [[0, 4, 1, "", "cached_contents"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListFilesConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListFilesConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListFilesResponse": [[0, 6, 1, "", "files"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListFilesResponseDict": [[0, 4, 1, "", "files"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListModelsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"], [0, 6, 1, "", "query_base"]], "genai.types.ListModelsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"], [0, 4, 1, "", "query_base"]], "genai.types.ListModelsResponse": [[0, 6, 1, "", "models"], [0, 6, 1, "", "next_page_token"]], "genai.types.ListModelsResponseDict": [[0, 4, 1, "", "models"], [0, 4, 1, "", "next_page_token"]], "genai.types.ListTuningJobsConfig": [[0, 6, 1, "", "filter"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "page_size"], [0, 6, 1, "", "page_token"]], "genai.types.ListTuningJobsConfigDict": [[0, 4, 1, "", "filter"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "page_size"], [0, 4, 1, "", "page_token"]], "genai.types.ListTuningJobsResponse": [[0, 6, 1, "", "next_page_token"], [0, 6, 1, "", "tuning_jobs"]], "genai.types.ListTuningJobsResponseDict": [[0, 4, 1, "", "next_page_token"], [0, 4, 1, "", "tuning_jobs"]], "genai.types.LiveClientContent": [[0, 6, 1, "", "turn_complete"], [0, 6, 1, "", "turns"]], "genai.types.LiveClientContentDict": [[0, 4, 1, "", "turn_complete"], [0, 4, 1, "", "turns"]], "genai.types.LiveClientMessage": [[0, 6, 1, "", "client_content"], [0, 6, 1, "", "realtime_input"], [0, 6, 1, "", "setup"], [0, 6, 1, "", "tool_response"]], "genai.types.LiveClientMessageDict": [[0, 4, 1, "", "client_content"], [0, 4, 1, "", "realtime_input"], [0, 4, 1, "", "setup"], [0, 4, 1, "", "tool_response"]], "genai.types.LiveClientRealtimeInput": [[0, 6, 1, "", "media_chunks"]], "genai.types.LiveClientRealtimeInputDict": [[0, 4, 1, "", "media_chunks"]], "genai.types.LiveClientSetup": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "model"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.LiveClientSetupDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "model"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.LiveClientToolResponse": [[0, 6, 1, "", "function_responses"]], "genai.types.LiveClientToolResponseDict": [[0, 4, 1, "", "function_responses"]], "genai.types.LiveConnectConfig": [[0, 6, 1, "", "generation_config"], [0, 6, 1, "", "response_modalities"], [0, 6, 1, "", "speech_config"], [0, 6, 1, "", "system_instruction"], [0, 6, 1, "", "tools"]], "genai.types.LiveConnectConfigDict": [[0, 4, 1, "", "generation_config"], [0, 4, 1, "", "response_modalities"], [0, 4, 1, "", "speech_config"], [0, 4, 1, "", "system_instruction"], [0, 4, 1, "", "tools"]], "genai.types.LiveServerContent": [[0, 6, 1, "", "interrupted"], [0, 6, 1, "", "model_turn"], [0, 6, 1, "", "turn_complete"]], "genai.types.LiveServerContentDict": [[0, 4, 1, "", "interrupted"], [0, 4, 1, "", "model_turn"], [0, 4, 1, "", "turn_complete"]], "genai.types.LiveServerMessage": [[0, 3, 1, "", "data"], [0, 6, 1, "", "server_content"], [0, 6, 1, "", "setup_complete"], [0, 3, 1, "", "text"], [0, 6, 1, "", "tool_call"], [0, 6, 1, "", "tool_call_cancellation"]], "genai.types.LiveServerMessageDict": [[0, 4, 1, "", "server_content"], [0, 4, 1, "", "setup_complete"], [0, 4, 1, "", "tool_call"], [0, 4, 1, "", "tool_call_cancellation"]], "genai.types.LiveServerToolCall": [[0, 6, 1, "", "function_calls"]], "genai.types.LiveServerToolCallCancellation": [[0, 6, 1, "", "ids"]], "genai.types.LiveServerToolCallCancellationDict": [[0, 4, 1, "", "ids"]], "genai.types.LiveServerToolCallDict": [[0, 4, 1, "", "function_calls"]], "genai.types.LogprobsResult": [[0, 6, 1, "", "chosen_candidates"], [0, 6, 1, "", "top_candidates"]], "genai.types.LogprobsResultCandidate": [[0, 6, 1, "", "log_probability"], [0, 6, 1, "", "token"], [0, 6, 1, "", "token_id"]], "genai.types.LogprobsResultCandidateDict": [[0, 4, 1, "", "log_probability"], [0, 4, 1, "", "token"], [0, 4, 1, "", "token_id"]], "genai.types.LogprobsResultDict": [[0, 4, 1, "", "chosen_candidates"], [0, 4, 1, "", "top_candidates"]], "genai.types.LogprobsResultTopCandidates": [[0, 6, 1, "", "candidates"]], "genai.types.LogprobsResultTopCandidatesDict": [[0, 4, 1, "", "candidates"]], "genai.types.MaskReferenceConfig": [[0, 6, 1, "", "mask_dilation"], [0, 6, 1, "", "mask_mode"], [0, 6, 1, "", "segmentation_classes"]], "genai.types.MaskReferenceConfigDict": [[0, 4, 1, "", "mask_dilation"], [0, 4, 1, "", "mask_mode"], [0, 4, 1, "", "segmentation_classes"]], "genai.types.MaskReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "mask_image_config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.MaskReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.MaskReferenceMode": [[0, 4, 1, "", "MASK_MODE_BACKGROUND"], [0, 4, 1, "", "MASK_MODE_DEFAULT"], [0, 4, 1, "", "MASK_MODE_FOREGROUND"], [0, 4, 1, "", "MASK_MODE_SEMANTIC"], [0, 4, 1, "", "MASK_MODE_USER_PROVIDED"]], "genai.types.MediaResolution": [[0, 4, 1, "", "MEDIA_RESOLUTION_HIGH"], [0, 4, 1, "", "MEDIA_RESOLUTION_LOW"], [0, 4, 1, "", "MEDIA_RESOLUTION_MEDIUM"], [0, 4, 1, "", "MEDIA_RESOLUTION_UNSPECIFIED"]], "genai.types.Modality": [[0, 4, 1, "", "AUDIO"], [0, 4, 1, "", "IMAGE"], [0, 4, 1, "", "MODALITY_UNSPECIFIED"], [0, 4, 1, "", "TEXT"]], "genai.types.Mode": [[0, 4, 1, "", "MODE_DYNAMIC"], [0, 4, 1, "", "MODE_UNSPECIFIED"]], "genai.types.Model": [[0, 6, 1, "", "description"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "endpoints"], [0, 6, 1, "", "input_token_limit"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "name"], [0, 6, 1, "", "output_token_limit"], [0, 6, 1, "", "supported_actions"], [0, 6, 1, "", "tuned_model_info"], [0, 6, 1, "", "version"]], "genai.types.ModelDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "endpoints"], [0, 4, 1, "", "input_token_limit"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "name"], [0, 4, 1, "", "output_token_limit"], [0, 4, 1, "", "supported_actions"], [0, 4, 1, "", "tuned_model_info"], [0, 4, 1, "", "version"]], "genai.types.Operation": [[0, 6, 1, "", "done"], [0, 6, 1, "", "error"], [0, 6, 1, "", "metadata"], [0, 6, 1, "", "name"], [0, 6, 1, "", "response"]], "genai.types.OperationDict": [[0, 4, 1, "", "done"], [0, 4, 1, "", "error"], [0, 4, 1, "", "metadata"], [0, 4, 1, "", "name"], [0, 4, 1, "", "response"]], "genai.types.Outcome": [[0, 4, 1, "", "OUTCOME_DEADLINE_EXCEEDED"], [0, 4, 1, "", "OUTCOME_FAILED"], [0, 4, 1, "", "OUTCOME_OK"], [0, 4, 1, "", "OUTCOME_UNSPECIFIED"]], "genai.types.Part": [[0, 6, 1, "", "code_execution_result"], [0, 6, 1, "", "executable_code"], [0, 6, 1, "", "file_data"], [0, 2, 1, "", "from_bytes"], [0, 2, 1, "", "from_code_execution_result"], [0, 2, 1, "", "from_executable_code"], [0, 2, 1, "", "from_function_call"], [0, 2, 1, "", "from_function_response"], [0, 2, 1, "", "from_text"], [0, 2, 1, "", "from_uri"], [0, 2, 1, "", "from_video_metadata"], [0, 6, 1, "", "function_call"], [0, 6, 1, "", "function_response"], [0, 6, 1, "", "inline_data"], [0, 6, 1, "", "text"], [0, 6, 1, "", "thought"], [0, 6, 1, "", "video_metadata"]], "genai.types.PartDict": [[0, 4, 1, "", "code_execution_result"], [0, 4, 1, "", "executable_code"], [0, 4, 1, "", "file_data"], [0, 4, 1, "", "function_call"], [0, 4, 1, "", "function_response"], [0, 4, 1, "", "inline_data"], [0, 4, 1, "", "text"], [0, 4, 1, "", "thought"], [0, 4, 1, "", "video_metadata"]], "genai.types.PartnerModelTuningSpec": [[0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.PartnerModelTuningSpecDict": [[0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.PersonGeneration": [[0, 4, 1, "", "ALLOW_ADULT"], [0, 4, 1, "", "ALLOW_ALL"], [0, 4, 1, "", "DONT_ALLOW"]], "genai.types.PrebuiltVoiceConfig": [[0, 6, 1, "", "voice_name"]], "genai.types.PrebuiltVoiceConfigDict": [[0, 4, 1, "", "voice_name"]], "genai.types.RawReferenceImage": [[0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"]], "genai.types.RawReferenceImageDict": [[0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.ReplayFile": [[0, 6, 1, "", "interactions"], [0, 6, 1, "", "replay_id"]], "genai.types.ReplayFileDict": [[0, 4, 1, "", "interactions"], [0, 4, 1, "", "replay_id"]], "genai.types.ReplayInteraction": [[0, 6, 1, "", "request"], [0, 6, 1, "", "response"]], "genai.types.ReplayInteractionDict": [[0, 4, 1, "", "request"], [0, 4, 1, "", "response"]], "genai.types.ReplayRequest": [[0, 6, 1, "", "body_segments"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "method"], [0, 6, 1, "", "url"]], "genai.types.ReplayRequestDict": [[0, 4, 1, "", "body_segments"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "method"], [0, 4, 1, "", "url"]], "genai.types.ReplayResponse": [[0, 6, 1, "", "body_segments"], [0, 6, 1, "", "headers"], [0, 6, 1, "", "sdk_response_segments"], [0, 6, 1, "", "status_code"]], "genai.types.ReplayResponseDict": [[0, 4, 1, "", "body_segments"], [0, 4, 1, "", "headers"], [0, 4, 1, "", "sdk_response_segments"], [0, 4, 1, "", "status_code"]], "genai.types.Retrieval": [[0, 6, 1, "", "disable_attribution"], [0, 6, 1, "", "vertex_ai_search"], [0, 6, 1, "", "vertex_rag_store"]], "genai.types.RetrievalDict": [[0, 4, 1, "", "disable_attribution"], [0, 4, 1, "", "vertex_ai_search"], [0, 4, 1, "", "vertex_rag_store"]], "genai.types.RetrievalMetadata": [[0, 6, 1, "", "google_search_dynamic_retrieval_score"]], "genai.types.RetrievalMetadataDict": [[0, 4, 1, "", "google_search_dynamic_retrieval_score"]], "genai.types.SafetyFilterLevel": [[0, 4, 1, "", "BLOCK_LOW_AND_ABOVE"], [0, 4, 1, "", "BLOCK_MEDIUM_AND_ABOVE"], [0, 4, 1, "", "BLOCK_NONE"], [0, 4, 1, "", "BLOCK_ONLY_HIGH"]], "genai.types.SafetyRating": [[0, 6, 1, "", "blocked"], [0, 6, 1, "", "category"], [0, 6, 1, "", "probability"], [0, 6, 1, "", "probability_score"], [0, 6, 1, "", "severity"], [0, 6, 1, "", "severity_score"]], "genai.types.SafetyRatingDict": [[0, 4, 1, "", "blocked"], [0, 4, 1, "", "category"], [0, 4, 1, "", "probability"], [0, 4, 1, "", "probability_score"], [0, 4, 1, "", "severity"], [0, 4, 1, "", "severity_score"]], "genai.types.SafetySetting": [[0, 6, 1, "", "category"], [0, 6, 1, "", "method"], [0, 6, 1, "", "threshold"]], "genai.types.SafetySettingDict": [[0, 4, 1, "", "category"], [0, 4, 1, "", "method"], [0, 4, 1, "", "threshold"]], "genai.types.Schema": [[0, 6, 1, "", "any_of"], [0, 6, 1, "", "default"], [0, 6, 1, "", "description"], [0, 6, 1, "", "enum"], [0, 6, 1, "", "example"], [0, 6, 1, "", "format"], [0, 6, 1, "", "items"], [0, 6, 1, "", "max_items"], [0, 6, 1, "", "max_length"], [0, 6, 1, "", "max_properties"], [0, 6, 1, "", "maximum"], [0, 6, 1, "", "min_items"], [0, 6, 1, "", "min_length"], [0, 6, 1, "", "min_properties"], [0, 6, 1, "", "minimum"], [0, 6, 1, "", "nullable"], [0, 6, 1, "", "pattern"], [0, 6, 1, "", "properties"], [0, 6, 1, "", "property_ordering"], [0, 6, 1, "", "required"], [0, 6, 1, "", "title"], [0, 6, 1, "", "type"]], "genai.types.SchemaDict": [[0, 4, 1, "", "any_of"], [0, 4, 1, "", "default"], [0, 4, 1, "", "description"], [0, 4, 1, "", "enum"], [0, 4, 1, "", "example"], [0, 4, 1, "", "format"], [0, 4, 1, "", "max_items"], [0, 4, 1, "", "max_length"], [0, 4, 1, "", "max_properties"], [0, 4, 1, "", "maximum"], [0, 4, 1, "", "min_items"], [0, 4, 1, "", "min_length"], [0, 4, 1, "", "min_properties"], [0, 4, 1, "", "minimum"], [0, 4, 1, "", "nullable"], [0, 4, 1, "", "pattern"], [0, 4, 1, "", "properties"], [0, 4, 1, "", "property_ordering"], [0, 4, 1, "", "required"], [0, 4, 1, "", "title"], [0, 4, 1, "", "type"]], "genai.types.SearchEntryPoint": [[0, 6, 1, "", "rendered_content"], [0, 6, 1, "", "sdk_blob"]], "genai.types.SearchEntryPointDict": [[0, 4, 1, "", "rendered_content"], [0, 4, 1, "", "sdk_blob"]], "genai.types.Segment": [[0, 6, 1, "", "end_index"], [0, 6, 1, "", "part_index"], [0, 6, 1, "", "start_index"], [0, 6, 1, "", "text"]], "genai.types.SegmentDict": [[0, 4, 1, "", "end_index"], [0, 4, 1, "", "part_index"], [0, 4, 1, "", "start_index"], [0, 4, 1, "", "text"]], "genai.types.SpeechConfig": [[0, 6, 1, "", "voice_config"]], "genai.types.SpeechConfigDict": [[0, 4, 1, "", "voice_config"]], "genai.types.State": [[0, 4, 1, "", "ACTIVE"], [0, 4, 1, "", "ERROR"], [0, 4, 1, "", "STATE_UNSPECIFIED"]], "genai.types.StyleReferenceConfig": [[0, 6, 1, "", "style_description"]], "genai.types.StyleReferenceConfigDict": [[0, 4, 1, "", "style_description"]], "genai.types.StyleReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"], [0, 6, 1, "", "style_image_config"]], "genai.types.StyleReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.SubjectReferenceConfig": [[0, 6, 1, "", "subject_description"], [0, 6, 1, "", "subject_type"]], "genai.types.SubjectReferenceConfigDict": [[0, 4, 1, "", "subject_description"], [0, 4, 1, "", "subject_type"]], "genai.types.SubjectReferenceImage": [[0, 6, 1, "", "config"], [0, 6, 1, "", "reference_id"], [0, 6, 1, "", "reference_image"], [0, 6, 1, "", "reference_type"], [0, 6, 1, "", "subject_image_config"]], "genai.types.SubjectReferenceImageDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "reference_id"], [0, 4, 1, "", "reference_image"], [0, 4, 1, "", "reference_type"]], "genai.types.SubjectReferenceType": [[0, 4, 1, "", "SUBJECT_TYPE_ANIMAL"], [0, 4, 1, "", "SUBJECT_TYPE_DEFAULT"], [0, 4, 1, "", "SUBJECT_TYPE_PERSON"], [0, 4, 1, "", "SUBJECT_TYPE_PRODUCT"]], "genai.types.SupervisedHyperParameters": [[0, 6, 1, "", "adapter_size"], [0, 6, 1, "", "epoch_count"], [0, 6, 1, "", "learning_rate_multiplier"]], "genai.types.SupervisedHyperParametersDict": [[0, 4, 1, "", "adapter_size"], [0, 4, 1, "", "epoch_count"], [0, 4, 1, "", "learning_rate_multiplier"]], "genai.types.SupervisedTuningDataStats": [[0, 6, 1, "", "total_billable_character_count"], [0, 6, 1, "", "total_billable_token_count"], [0, 6, 1, "", "total_truncated_example_count"], [0, 6, 1, "", "total_tuning_character_count"], [0, 6, 1, "", "truncated_example_indices"], [0, 6, 1, "", "tuning_dataset_example_count"], [0, 6, 1, "", "tuning_step_count"], [0, 6, 1, "", "user_dataset_examples"], [0, 6, 1, "", "user_input_token_distribution"], [0, 6, 1, "", "user_message_per_example_distribution"], [0, 6, 1, "", "user_output_token_distribution"]], "genai.types.SupervisedTuningDataStatsDict": [[0, 4, 1, "", "total_billable_character_count"], [0, 4, 1, "", "total_billable_token_count"], [0, 4, 1, "", "total_truncated_example_count"], [0, 4, 1, "", "total_tuning_character_count"], [0, 4, 1, "", "truncated_example_indices"], [0, 4, 1, "", "tuning_dataset_example_count"], [0, 4, 1, "", "tuning_step_count"], [0, 4, 1, "", "user_dataset_examples"], [0, 4, 1, "", "user_input_token_distribution"], [0, 4, 1, "", "user_message_per_example_distribution"], [0, 4, 1, "", "user_output_token_distribution"]], "genai.types.SupervisedTuningDatasetDistribution": [[0, 6, 1, "", "billable_sum"], [0, 6, 1, "", "buckets"], [0, 6, 1, "", "max"], [0, 6, 1, "", "mean"], [0, 6, 1, "", "median"], [0, 6, 1, "", "min"], [0, 6, 1, "", "p5"], [0, 6, 1, "", "p95"], [0, 6, 1, "", "sum"]], "genai.types.SupervisedTuningDatasetDistributionDatasetBucket": [[0, 6, 1, "", "count"], [0, 6, 1, "", "left"], [0, 6, 1, "", "right"]], "genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict": [[0, 4, 1, "", "count"], [0, 4, 1, "", "left"], [0, 4, 1, "", "right"]], "genai.types.SupervisedTuningDatasetDistributionDict": [[0, 4, 1, "", "billable_sum"], [0, 4, 1, "", "buckets"], [0, 4, 1, "", "max"], [0, 4, 1, "", "mean"], [0, 4, 1, "", "median"], [0, 4, 1, "", "min"], [0, 4, 1, "", "p5"], [0, 4, 1, "", "p95"], [0, 4, 1, "", "sum"]], "genai.types.SupervisedTuningSpec": [[0, 6, 1, "", "hyper_parameters"], [0, 6, 1, "", "training_dataset_uri"], [0, 6, 1, "", "validation_dataset_uri"]], "genai.types.SupervisedTuningSpecDict": [[0, 4, 1, "", "hyper_parameters"], [0, 4, 1, "", "training_dataset_uri"], [0, 4, 1, "", "validation_dataset_uri"]], "genai.types.TestTableFile": [[0, 6, 1, "", "comment"], [0, 6, 1, "", "parameter_names"], [0, 6, 1, "", "test_method"], [0, 6, 1, "", "test_table"]], "genai.types.TestTableFileDict": [[0, 4, 1, "", "comment"], [0, 4, 1, "", "parameter_names"], [0, 4, 1, "", "test_method"], [0, 4, 1, "", "test_table"]], "genai.types.TestTableItem": [[0, 6, 1, "", "exception_if_mldev"], [0, 6, 1, "", "exception_if_vertex"], [0, 6, 1, "", "has_union"], [0, 6, 1, "", "name"], [0, 6, 1, "", "override_replay_id"], [0, 6, 1, "", "parameters"], [0, 6, 1, "", "skip_in_api_mode"]], "genai.types.TestTableItemDict": [[0, 4, 1, "", "exception_if_mldev"], [0, 4, 1, "", "exception_if_vertex"], [0, 4, 1, "", "has_union"], [0, 4, 1, "", "name"], [0, 4, 1, "", "override_replay_id"], [0, 4, 1, "", "parameters"], [0, 4, 1, "", "skip_in_api_mode"]], "genai.types.ThinkingConfig": [[0, 6, 1, "", "include_thoughts"]], "genai.types.ThinkingConfigDict": [[0, 4, 1, "", "include_thoughts"]], "genai.types.TokensInfo": [[0, 6, 1, "", "role"], [0, 6, 1, "", "token_ids"], [0, 6, 1, "", "tokens"]], "genai.types.TokensInfoDict": [[0, 4, 1, "", "role"], [0, 4, 1, "", "token_ids"], [0, 4, 1, "", "tokens"]], "genai.types.Tool": [[0, 6, 1, "", "code_execution"], [0, 6, 1, "", "function_declarations"], [0, 6, 1, "", "google_search"], [0, 6, 1, "", "google_search_retrieval"], [0, 6, 1, "", "retrieval"]], "genai.types.ToolConfig": [[0, 6, 1, "", "function_calling_config"]], "genai.types.ToolConfigDict": [[0, 4, 1, "", "function_calling_config"]], "genai.types.ToolDict": [[0, 4, 1, "", "code_execution"], [0, 4, 1, "", "function_declarations"], [0, 4, 1, "", "google_search"], [0, 4, 1, "", "google_search_retrieval"], [0, 4, 1, "", "retrieval"]], "genai.types.TunedModel": [[0, 6, 1, "", "endpoint"], [0, 6, 1, "", "model"]], "genai.types.TunedModelDict": [[0, 4, 1, "", "endpoint"], [0, 4, 1, "", "model"]], "genai.types.TunedModelInfo": [[0, 6, 1, "", "base_model"], [0, 6, 1, "", "create_time"], [0, 6, 1, "", "update_time"]], "genai.types.TunedModelInfoDict": [[0, 4, 1, "", "base_model"], [0, 4, 1, "", "create_time"], [0, 4, 1, "", "update_time"]], "genai.types.TuningDataStats": [[0, 6, 1, "", "distillation_data_stats"], [0, 6, 1, "", "supervised_tuning_data_stats"]], "genai.types.TuningDataStatsDict": [[0, 4, 1, "", "distillation_data_stats"], [0, 4, 1, "", "supervised_tuning_data_stats"]], "genai.types.TuningDataset": [[0, 6, 1, "", "examples"], [0, 6, 1, "", "gcs_uri"]], "genai.types.TuningDatasetDict": [[0, 4, 1, "", "examples"], [0, 4, 1, "", "gcs_uri"]], "genai.types.TuningExample": [[0, 6, 1, "", "output"], [0, 6, 1, "", "text_input"]], "genai.types.TuningExampleDict": [[0, 4, 1, "", "output"], [0, 4, 1, "", "text_input"]], "genai.types.TuningJob": [[0, 6, 1, "", "base_model"], [0, 6, 1, "", "create_time"], [0, 6, 1, "", "description"], [0, 6, 1, "", "distillation_spec"], [0, 6, 1, "", "encryption_spec"], [0, 6, 1, "", "end_time"], [0, 6, 1, "", "error"], [0, 6, 1, "", "experiment"], [0, 3, 1, "", "has_ended"], [0, 3, 1, "", "has_succeeded"], [0, 6, 1, "", "labels"], [0, 6, 1, "", "name"], [0, 6, 1, "", "partner_model_tuning_spec"], [0, 6, 1, "", "pipeline_job"], [0, 6, 1, "", "start_time"], [0, 6, 1, "", "state"], [0, 6, 1, "", "supervised_tuning_spec"], [0, 6, 1, "", "tuned_model"], [0, 6, 1, "", "tuned_model_display_name"], [0, 6, 1, "", "tuning_data_stats"], [0, 6, 1, "", "update_time"]], "genai.types.TuningJobDict": [[0, 4, 1, "", "base_model"], [0, 4, 1, "", "create_time"], [0, 4, 1, "", "description"], [0, 4, 1, "", "distillation_spec"], [0, 4, 1, "", "encryption_spec"], [0, 4, 1, "", "end_time"], [0, 4, 1, "", "error"], [0, 4, 1, "", "experiment"], [0, 4, 1, "", "labels"], [0, 4, 1, "", "name"], [0, 4, 1, "", "partner_model_tuning_spec"], [0, 4, 1, "", "pipeline_job"], [0, 4, 1, "", "start_time"], [0, 4, 1, "", "state"], [0, 4, 1, "", "supervised_tuning_spec"], [0, 4, 1, "", "tuned_model"], [0, 4, 1, "", "tuned_model_display_name"], [0, 4, 1, "", "tuning_data_stats"], [0, 4, 1, "", "update_time"]], "genai.types.TuningValidationDataset": [[0, 6, 1, "", "gcs_uri"]], "genai.types.TuningValidationDatasetDict": [[0, 4, 1, "", "gcs_uri"]], "genai.types.Type": [[0, 4, 1, "", "ARRAY"], [0, 4, 1, "", "BOOLEAN"], [0, 4, 1, "", "INTEGER"], [0, 4, 1, "", "NUMBER"], [0, 4, 1, "", "OBJECT"], [0, 4, 1, "", "STRING"], [0, 4, 1, "", "TYPE_UNSPECIFIED"]], "genai.types.UpdateCachedContentConfig": [[0, 6, 1, "", "expire_time"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "ttl"]], "genai.types.UpdateCachedContentConfigDict": [[0, 4, 1, "", "expire_time"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "ttl"]], "genai.types.UpdateModelConfig": [[0, 6, 1, "", "description"], [0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"]], "genai.types.UpdateModelConfigDict": [[0, 4, 1, "", "description"], [0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"]], "genai.types.UploadFileConfig": [[0, 6, 1, "", "display_name"], [0, 6, 1, "", "http_options"], [0, 6, 1, "", "mime_type"], [0, 6, 1, "", "name"]], "genai.types.UploadFileConfigDict": [[0, 4, 1, "", "display_name"], [0, 4, 1, "", "http_options"], [0, 4, 1, "", "mime_type"], [0, 4, 1, "", "name"]], "genai.types.UpscaleImageConfig": [[0, 6, 1, "", "http_options"], [0, 6, 1, "", "include_rai_reason"], [0, 6, 1, "", "output_compression_quality"], [0, 6, 1, "", "output_mime_type"]], "genai.types.UpscaleImageConfigDict": [[0, 4, 1, "", "http_options"], [0, 4, 1, "", "include_rai_reason"], [0, 4, 1, "", "output_compression_quality"], [0, 4, 1, "", "output_mime_type"]], "genai.types.UpscaleImageParameters": [[0, 6, 1, "", "config"], [0, 6, 1, "", "image"], [0, 6, 1, "", "model"], [0, 6, 1, "", "upscale_factor"]], "genai.types.UpscaleImageParametersDict": [[0, 4, 1, "", "config"], [0, 4, 1, "", "image"], [0, 4, 1, "", "model"], [0, 4, 1, "", "upscale_factor"]], "genai.types.UpscaleImageResponse": [[0, 6, 1, "", "generated_images"]], "genai.types.UpscaleImageResponseDict": [[0, 4, 1, "", "generated_images"]], "genai.types.VertexAISearch": [[0, 6, 1, "", "datastore"]], "genai.types.VertexAISearchDict": [[0, 4, 1, "", "datastore"]], "genai.types.VertexRagStore": [[0, 6, 1, "", "rag_corpora"], [0, 6, 1, "", "rag_resources"], [0, 6, 1, "", "similarity_top_k"], [0, 6, 1, "", "vector_distance_threshold"]], "genai.types.VertexRagStoreDict": [[0, 4, 1, "", "rag_corpora"], [0, 4, 1, "", "rag_resources"], [0, 4, 1, "", "similarity_top_k"], [0, 4, 1, "", "vector_distance_threshold"]], "genai.types.VertexRagStoreRagResource": [[0, 6, 1, "", "rag_corpus"], [0, 6, 1, "", "rag_file_ids"]], "genai.types.VertexRagStoreRagResourceDict": [[0, 4, 1, "", "rag_corpus"], [0, 4, 1, "", "rag_file_ids"]], "genai.types.VideoMetadata": [[0, 6, 1, "", "end_offset"], [0, 6, 1, "", "start_offset"]], "genai.types.VideoMetadataDict": [[0, 4, 1, "", "end_offset"], [0, 4, 1, "", "start_offset"]], "genai.types.VoiceConfig": [[0, 6, 1, "", "prebuilt_voice_config"]], "genai.types.VoiceConfigDict": [[0, 4, 1, "", "prebuilt_voice_config"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "pydantic_model", "Python model"], "6": ["py", "pydantic_field", "Python field"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:property", "4": "py:attribute", "5": "py:pydantic_model", "6": "py:pydantic_field"}, "terms": {"": [0, 1], "0": [0, 1], "0002": 0, "001": [0, 1], "002": [0, 1], "004": [0, 1], "006": [], "01": [], "03": 0, "05530": 1, "06": 0, "0930": 0, "1": [0, 1], "10": [0, 1], "100": 1, "101": 0, "11805v3": 1, "12": 0, "123": 0, "123456789": 0, "1234567890123456789": 0, "128": 0, "156": [], "16": 0, "1841": 0, "1_5": 1, "2": [0, 1], "20": 1, "201": 0, "2024": 0, "21": [], "2312": 1, "2403": 1, "256": 0, "2b": 0, "3": [0, 1], "30": 1, "300": 1, "301": 0, "31": 0, "3600": 1, "4": 0, "40": 0, "405b": 0, "456": 0, "5": [0, 1], "512": 0, "5th": 0, "64": 0, "7600": 0, "8": 0, "86400": 0, "9": 0, "95": 1, "95th": 0, "9999": 0, "A": 0, "And": 1, "By": 0, "FOR": 0, "For": [0, 1], "If": [0, 1], "In": 0, "It": [0, 1], "No": 0, "Not": 0, "One": 0, "The": [0, 1], "Then": [0, 1], "There": [0, 1], "These": 0, "To": [0, 1], "Will": 0, "With": 0, "_": 0, "_api_cli": [], "_basechat": 0, "_convert_literal_to_enum": 0, "_uniongenericalia": 0, "a11": 1, "abl": 0, "about": [0, 1], "abov": 1, "accept": 0, "access": 0, "accumul": 0, "across": 0, "action": 0, "activ": [0, 1, 2], "ad": 0, "adapt": 0, "adapter_s": [0, 1, 2], "adapter_size_eight": [0, 1, 2], "adapter_size_four": [0, 1, 2], "adapter_size_on": [0, 1, 2], "adapter_size_sixteen": [0, 1, 2], "adapter_size_thirty_two": [0, 1, 2], "adapter_size_unspecifi": [0, 1, 2], "adapters": [0, 1, 2], "add": 0, "add_watermark": [0, 1, 2], "addit": 0, "addition": 0, "additionalproperti": 0, "addwatermark": 0, "adher": 0, "adjust": 0, "after": 1, "ag": 1, "against": 0, "agent": 0, "ai": 0, "aim": 0, "aio": [0, 1, 2], "alia": 0, "align": 0, "all": [0, 1], "allow": 0, "allow_adult": [0, 1, 2], "allow_al": [0, 1, 2], "allowed_function_nam": [0, 1, 2], "allowedfunctionnam": 0, "allowlist": 1, "alongsid": 0, "alphanumer": 0, "alreadi": 0, "also": [0, 1], "alwai": [0, 1], "amount": 0, "an": [0, 1], "analog": 1, "ani": [0, 1, 2], "anniversari": 0, "anoth": 0, "answer": 0, "any_of": [0, 1, 2], "anyof": 0, "apart": 0, "api": 0, "api_cli": 0, "api_client_": 0, "api_kei": [0, 1, 2], "api_opt": 0, "api_vers": [0, 1, 2], "apivers": 0, "app": 0, "appear": 0, "append": 0, "appli": 0, "applic": [0, 1], "appropri": 0, "ar": [0, 1], "area": 0, "arg": [0, 1, 2], "argument": 0, "arithmet": 0, "arrai": [0, 1, 2], "arrang": 0, "artifact": 0, "aspect": 0, "aspect_ratio": [0, 1, 2], "aspectratio": 0, "assign": 0, "assioci": [], "associ": 0, "assum": [0, 1], "async": 0, "async_pag": 1, "asyncbatch": [0, 1, 2], "asynccach": [0, 1, 2], "asyncchat": [0, 1, 2], "asynccli": [0, 1, 2], "asyncfil": [0, 1, 2], "asynchron": 0, "asynciter": 0, "asyncl": [0, 1, 2], "asyncmodel": [0, 1, 2], "asyncpag": 0, "asyncsess": [0, 1, 2], "asynctun": [0, 1, 2], "attempt": 0, "attribut": 0, "audio": [0, 1, 2], "audio_duration_second": [0, 1, 2], "audio_stream": 0, "audio_timestamp": [0, 1, 2], "audiodurationsecond": 0, "audiotimestamp": 0, "auth": 0, "authent": 0, "auto": [0, 1, 2], "auto_mod": [0, 1, 2], "auto_trunc": [0, 1, 2], "autom": 0, "automat": [0, 1], "automatic_function_cal": [0, 1, 2], "automatic_function_calling_histori": [0, 1, 2], "automatic_resourc": [0, 1, 2], "automaticfunctioncal": 0, "automaticfunctioncallingconfig": [0, 1, 2], "automaticfunctioncallingconfigdict": [0, 1, 2], "automaticfunctioncallinghistori": 0, "automod": 0, "autotrunc": 0, "avail": [0, 1], "averag": 0, "avg_logprob": [0, 1, 2], "avglogprob": 0, "await": [0, 1], "awiat": 0, "b": 0, "backend": 0, "background": 1, "bad": 1, "bagel": 0, "bake": 0, "balanc": 0, "base": 0, "base64": 0, "base64url": 0, "base_model": [0, 1, 2], "base_teacher_model": [0, 1, 2], "base_url": [0, 1, 2], "basemodel": [0, 1], "basemodul": 0, "baseteachermodel": 0, "baseurl": 0, "basic": 0, "batch": 2, "batch_job": [0, 1, 2], "batch_jobs_pag": 0, "batch_siz": [0, 1, 2], "batchjob": [0, 1, 2], "batchjobdestin": [0, 1, 2], "batchjobdestinationdict": [0, 1, 2], "batchjobdict": [0, 1, 2], "batchjobsourc": [0, 1, 2], "batchjobsourcedict": [0, 1, 2], "batchpredictionjob": 0, "batchsiz": 0, "becaus": 0, "been": 0, "befor": 0, "behav": [0, 1], "behavior": 0, "behind": 1, "being": 0, "belong": 0, "below": 1, "best": 0, "better": 0, "between": 0, "bidi": 0, "bidiclientcontentupd": [], "bidiclientcontentupdatedict": [], "bidiclientmessag": [], "bidiclientmessagedict": [], "bidiclientrealtimeuserinput": [], "bidiclientrealtimeuserinputdict": [], "bidiclientsetup": [], "bidiclientsetupdict": [], "bidiclienttoolrespons": [], "bidiclienttoolresponsedict": [], "bidiconnectconfig": [], "bidiconnectconfigdict": [], "bidigeneratecontentclientcont": [], "bidigeneratecontentclientmessag": [], "bidigeneratecontentrealtimeinput": [], "bidigeneratecontentservercont": [], "bidigeneratecontentservermessag": [], "bidigeneratecontentsetup": [], "bidigeneratecontentsetupcomplet": [], "bidigeneratecontenttoolcal": [], "bidigeneratecontenttoolcallcancel": [], "bidigeneratecontenttoolrespons": [], "bidiservercontentupd": [], "bidiservercontentupdatedict": [], "bidiservermessag": [], "bidiservermessagedict": [], "bidiserversetupcomplet": [], "bidiserversetupcompletedict": [], "bidiservertoolcal": [], "bidiservertoolcallcancel": [], "bidiservertoolcallcancellationdict": [], "bidiservertoolcalldict": [], "bigqueri": 0, "bigquery_uri": [0, 1, 2], "bigqueryuri": 0, "bill": 0, "billabl": 0, "billable_character_count": [0, 1, 2], "billable_sum": [0, 1, 2], "billablecharactercount": 0, "billablesum": 0, "binari": 0, "birthdai": 0, "blank": 0, "blob": [0, 1, 2], "blobdict": [0, 1, 2], "block": [0, 1, 2], "block_low_and_abov": [0, 1, 2], "block_medium_and_abov": [0, 1, 2], "block_non": [0, 1, 2], "block_only_high": [0, 1, 2], "block_reason": [0, 1, 2], "block_reason_messag": [0, 1, 2], "blocked_reason_unspecifi": [0, 1, 2], "blockedreason": [0, 1, 2], "blocklist": [0, 1, 2], "blockreason": 0, "blockreasonmessag": 0, "bloom": 0, "blue": [0, 1], "blueberri": 0, "body_seg": [0, 1, 2], "bodyseg": 0, "bool": 0, "boolean": [0, 1, 2], "boston": 1, "both": 0, "bound": 0, "boundari": 0, "bouquet": 0, "bq": [0, 1], "bqdatasetid": 0, "bqtableid": 0, "brass": 1, "break": 0, "bucket": [0, 1, 2], "buffer": 0, "builder": 0, "byte": [0, 1], "bytesio": [], "ca": 1, "cach": 2, "cached_cont": [0, 1, 2], "cached_content_token_count": [0, 1, 2], "cachedcont": [0, 1, 2], "cachedcontentdict": [0, 1, 2], "cachedcontenttokencount": 0, "cachedcontentusagemetadata": [0, 1, 2], "cachedcontentusagemetadatadict": [0, 1, 2], "calcul": 0, "calendar": 0, "call": 0, "callabl": 0, "can": [0, 1], "cancel": [0, 1, 2], "cancelbatchjobconfig": [0, 1, 2], "cancelbatchjobconfigdict": [0, 1, 2], "candid": [0, 1, 2], "candidate_count": [0, 1, 2], "candidatecount": 0, "candidatedict": [0, 1, 2], "candidates_token_count": [0, 1, 2], "candidatestokencount": 0, "cannot": 0, "capabl": [0, 1], "capit": 1, "card": 0, "carri": 0, "case": 0, "caseinsensitiveenum": 0, "cat": 0, "categori": [0, 1, 2], "cell": [], "central1": [0, 1], "chang": 0, "char": 0, "charact": 0, "charg": 0, "chat": 2, "check": 0, "choos": 0, "chosen": 0, "chosen_candid": [0, 1, 2], "chosencandid": 0, "chunk": [0, 1], "citat": [0, 1, 2], "citation_metadata": [0, 1, 2], "citationdict": [0, 1, 2], "citationmetadata": [0, 1, 2], "citationmetadatadict": [0, 1, 2], "citi": 1, "claim": 0, "class": [0, 1], "classic": 0, "classmethod": 0, "clear": 1, "client": 2, "client_cont": [0, 1, 2], "client_mod": [0, 1, 2], "clientcont": 0, "clientcontentupd": 0, "close": [0, 1, 2], "cloud": [0, 1], "code": [0, 1, 2], "code_execut": [0, 1, 2], "code_execution_result": [0, 1, 2], "codeexecut": 0, "codeexecutionresult": [0, 1, 2], "codeexecutionresultdict": [0, 1, 2], "codepoint": 0, "collect": 0, "color": 0, "com": [0, 1], "comment": [0, 1, 2], "commit": 0, "common": 0, "compar": 0, "compat": 0, "complet": 0, "completed_st": 1, "compress": 0, "compromis": 0, "comput": 0, "compute_token": [0, 1, 2], "computetokensconfig": [0, 1, 2], "computetokensconfigdict": [0, 1, 2], "computetokensrequest": 0, "computetokensrespons": [0, 1, 2], "computetokensresponsedict": [0, 1, 2], "concaten": 0, "concis": 0, "confid": 0, "confidence_scor": [0, 1, 2], "confidencescor": 0, "config": [0, 2], "configur": [0, 1], "connect": [0, 1, 2], "consid": 0, "consist": 0, "consol": 1, "constitut": 0, "constructor": 0, "consum": 0, "contain": [0, 1], "content": [0, 2], "contentdict": [0, 1, 2], "contentembed": [0, 1, 2], "contentembeddingdict": [0, 1, 2], "contentembeddingstatist": [0, 1, 2], "contentembeddingstatisticsdict": [0, 1, 2], "context": 0, "contin": 1, "continu": 0, "control": [0, 1], "control_image_config": [0, 1, 2], "control_reference_config": 0, "control_typ": [0, 1, 2], "control_type_canni": [0, 1, 2], "control_type_default": [0, 1, 2], "control_type_face_mesh": [0, 1, 2], "control_type_scribbl": [0, 1, 2], "controlimageconfig": 0, "controlreferenceconfig": [0, 1, 2], "controlreferenceconfigdict": [0, 1, 2], "controlreferenceimag": [0, 1, 2], "controlreferenceimagedict": [0, 1, 2], "controlreferencetyp": [0, 1, 2], "controltyp": 0, "convei": 0, "convers": [0, 1], "convert": 0, "core": 0, "corpora": 0, "corpu": 0, "correspond": 0, "could": [0, 1], "count": [0, 2], "count_token": [0, 1, 2], "countryinfo": 1, "counttokensconfig": [0, 1, 2], "counttokensconfigdict": [0, 1, 2], "counttokensrespons": [0, 1, 2], "counttokensresponsedict": [0, 1, 2], "cp": 1, "creat": [0, 2], "creatat": [], "create_batch_job_demo": [], "create_tim": [0, 1, 2], "createbatchjobconfig": [0, 1, 2], "createbatchjobconfigdict": [0, 1, 2], "createcachedcontentconfig": [0, 1, 2], "createcachedcontentconfigdict": [0, 1, 2], "createdistillationjobconfig": [], "createdistillationjobconfigdict": [], "createfileconfig": [0, 1, 2], "createfileconfigdict": [0, 1, 2], "createfilerespons": [0, 1, 2], "createfileresponsedict": [0, 1, 2], "createtim": 0, "createtuningjobconfig": [0, 1, 2], "createtuningjobconfigdict": [0, 1, 2], "creation": 0, "creativ": 0, "credenti": [0, 1, 2], "credit": 0, "cryptokei": 0, "current": [0, 1], "custom": 0, "d": 1, "dai": [0, 1, 2], "dash": 0, "data": [0, 1, 2], "dataset": [0, 1], "datasetdistribut": [0, 1, 2], "datasetdistributiondict": [0, 1, 2], "datasetdistributiondistributionbucket": [0, 1, 2], "datasetdistributiondistributionbucketdict": [0, 1, 2], "datasetstat": [0, 1, 2], "datasetstatsdict": [0, 1, 2], "datastor": [0, 1, 2], "datatyp": 0, "date": 0, "datetim": 0, "de": 0, "debug_config": [0, 1, 2], "debugconfig": [0, 1, 2], "decid": 0, "decim": 0, "declar": [0, 1], "decod": 0, "dedic": 0, "dedicated_resourc": [0, 1, 2], "def": [0, 1], "default": [0, 1, 2], "defin": 0, "definit": 0, "degre": 0, "delet": [0, 2], "delete_job": 1, "deletebatchjobconfig": [0, 1, 2], "deletebatchjobconfigdict": [0, 1, 2], "deletecachedcontentconfig": [0, 1, 2], "deletecachedcontentconfigdict": [0, 1, 2], "deletecachedcontentrespons": [0, 1, 2], "deletecachedcontentresponsedict": [0, 1, 2], "deletefileconfig": [0, 1, 2], "deletefileconfigdict": [0, 1, 2], "deletefilerespons": [0, 1, 2], "deletefileresponsedict": [0, 1, 2], "deletemodelconfig": [0, 1, 2], "deletemodelconfigdict": [0, 1, 2], "deletemodelrespons": [0, 1, 2], "deletemodelresponsedict": [0, 1, 2], "deleteresourcejob": [0, 1, 2], "deleteresourcejobdict": [0, 1, 2], "deliv": 0, "depend": [0, 1], "deploi": 0, "deployed_model_id": [0, 1, 2], "deployedmodelid": 0, "deployment_resources_type_unspecifi": [0, 1, 2], "deploymentresourcestyp": [0, 1, 2], "deprec": 0, "deprecated_response_payload": [], "deprecatedresponsepayload": [], "deriv": 0, "descend": 0, "describ": 0, "descript": [0, 1, 2], "design": 0, "dest": [0, 1, 2], "destin": [0, 1], "detail": [0, 1, 2], "determin": 0, "dev": 1, "develop": [0, 1], "dict": 0, "dictionari": 1, "differ": [0, 1], "dilat": 0, "dimens": 0, "diplay_nam": 0, "direct": 0, "directli": [0, 1], "directori": 0, "disabl": [0, 1, 2], "disable_attribut": [0, 1, 2], "disableattribut": 0, "discourag": 0, "displai": [0, 1], "display_nam": [0, 1, 2], "displaynam": 0, "distanc": 0, "distial": [], "distil": 0, "distillation_data_stat": [0, 1, 2], "distillation_job": [], "distillation_pipeline_root": [], "distillation_spec": [0, 1, 2], "distillationdataset": [], "distillationdatasetdict": [], "distillationdatastat": [0, 1, 2], "distillationdatastatsdict": [0, 1, 2], "distillationhyperparamet": [0, 1, 2], "distillationhyperparametersdict": [0, 1, 2], "distillationspec": [0, 1, 2], "distillationspecdict": [0, 1, 2], "distillationvalidationdataset": [], "distillationvalidationdatasetdict": [], "distribut": 0, "divers": 0, "do": [0, 1], "doc": 0, "document": 0, "dog": 0, "don": [0, 1], "done": [0, 1, 2], "dont_allow": [0, 1, 2], "dot": 0, "doubl": 0, "down": 0, "download": [0, 1, 2], "download_uri": [0, 1, 2], "downloadfileconfig": [0, 1, 2], "downloadfileconfigdict": [0, 1, 2], "downloadfileconfigordict": 0, "downloaduri": 0, "dri": 0, "due": 0, "durat": 0, "dure": 0, "dynam": 0, "dynamic_retrieval_config": [0, 1, 2], "dynamic_threshold": [0, 1, 2], "dynamicretrievalconfig": [0, 1, 2], "dynamicretrievalconfigdict": [0, 1, 2], "dynamicretrievalconfigmod": [0, 1, 2], "dynamicthreshold": 0, "e": [0, 1], "each": 0, "earli": [], "earlier": 0, "east": 0, "edit": [0, 1], "edit_imag": [0, 1, 2], "edit_mod": [0, 1, 2], "edit_mode_bgswap": [0, 1, 2], "edit_mode_controlled_edit": [0, 1, 2], "edit_mode_default": [0, 1, 2], "edit_mode_inpaint_insert": [0, 1, 2], "edit_mode_inpaint_remov": [0, 1, 2], "edit_mode_outpaint": [0, 1, 2], "edit_mode_product_imag": [0, 1, 2], "edit_mode_styl": [0, 1, 2], "editimageconfig": [0, 1, 2], "editimageconfigdict": [0, 1, 2], "editimagerespons": [0, 1, 2], "editimageresponsedict": [0, 1, 2], "editmod": [0, 1, 2], "effect": 0, "effort": 0, "either": [0, 1], "eleg": 0, "element": 0, "els": [0, 1], "elsewher": 0, "email": 0, "emb": 0, "embed": [0, 1, 2], "embed_cont": [0, 1, 2], "embedcontentconfig": [0, 1, 2], "embedcontentconfigdict": [0, 1, 2], "embedcontentmetadata": [0, 1, 2], "embedcontentmetadatadict": [0, 1, 2], "embedcontentrespons": [0, 1, 2], "embedcontentresponsedict": [0, 1, 2], "empti": 0, "en": [0, 1, 2], "enabl": 0, "enable_control_image_comput": [0, 1, 2], "enablecontrolimagecomput": 0, "encapsul": 0, "encod": 0, "encount": 0, "encrypt": 0, "encryption_spec": [0, 1, 2], "encryptionspec": [0, 1, 2], "encryptionspecdict": [0, 1, 2], "end": [0, 1], "end_index": [0, 1, 2], "end_of_turn": 0, "end_offset": [0, 1, 2], "end_tim": [0, 1, 2], "endindex": 0, "endoffset": 0, "endpoint": [0, 1, 2], "endpointdict": [0, 1, 2], "endtim": 0, "english": 0, "enhanc": 0, "enhance_prompt": [0, 1, 2], "enhanced_prompt": [0, 1, 2], "enhancedprompt": 0, "enhanceprompt": 0, "enter": 0, "entir": 0, "entri": 0, "enum": [0, 2], "enumer": 0, "environ": [0, 1], "environment": 1, "epoch_count": [0, 1, 2], "epochcount": 0, "equal": 0, "error": [0, 1, 2], "etc": 0, "even": 0, "everlast": 0, "exactli": 0, "exampl": [0, 1, 2], "exce": 1, "except": [0, 1], "exception_if_mldev": [0, 1, 2], "exception_if_vertex": [0, 1, 2], "exceptionifmldev": 0, "exceptionifvertex": 0, "excess": 0, "exchang": 0, "exclud": 0, "exclus": 0, "execut": 0, "executable_cod": [0, 1, 2], "executablecod": [0, 1, 2], "executablecodedict": [0, 1, 2], "exist": 0, "exp": 0, "expect": 0, "experi": [0, 1, 2], "experiment": 0, "expir": 0, "expiration_tim": [0, 1, 2], "expirationtim": 0, "expire_tim": [0, 1, 2], "expiretim": 0, "explicitli": 0, "export": [0, 1], "expos": 1, "express": 0, "extens": 0, "extern": 0, "extra": [], "f": [0, 1], "face": 0, "factor": 0, "fail": [0, 1, 2], "failur": 0, "fals": [0, 1], "fast": 0, "favorit": 0, "featur": 0, "feel": 1, "fetch": 0, "fetchpredictoperationconfig": [0, 1, 2], "fetchpredictoperationconfigdict": [0, 1, 2], "few": 0, "field": 0, "file": 2, "file1": 1, "file2": 1, "file3": 1, "file_data": [0, 1, 2], "file_info": 1, "file_uri": [0, 1, 2], "filedata": [0, 1, 2], "filedatadict": [0, 1, 2], "filedict": [0, 1, 2], "filesourc": [0, 1, 2], "filest": [0, 1, 2], "filestatu": [0, 1, 2], "filestatusdict": [0, 1, 2], "fileuri": 0, "fill": 0, "filter": [0, 1, 2], "final": 0, "find": 0, "fine": [0, 1], "finish_messag": [0, 1, 2], "finish_reason": [0, 1, 2], "finish_reason_unspecifi": [0, 1, 2], "finishmessag": 0, "finishreason": [0, 1, 2], "first": 0, "fix": 0, "flag": 0, "flash": [0, 1], "flat": 0, "float": 0, "floral": 0, "flow": 0, "flower": 0, "foe": 0, "follow": [0, 1], "foreground": 1, "form": 0, "format": [0, 1, 2], "found": 0, "francisco": 1, "free": 1, "french": 0, "frequenc": 0, "frequency_penalti": [0, 1, 2], "frequencypenalti": 0, "freshli": 0, "from": [0, 1], "from_byt": [0, 1, 2], "from_cal": [0, 1, 2], "from_callable_with_api_opt": [0, 1, 2], "from_code_execution_result": [0, 1, 2], "from_executable_cod": [0, 1, 2], "from_fil": [0, 1, 2], "from_funct": [], "from_function_cal": [0, 1, 2], "from_function_respons": [0, 1, 2], "from_function_with_opt": [], "from_text": [0, 1, 2], "from_uri": [0, 1, 2], "from_video_metadata": [0, 1, 2], "fuction": [], "full": 0, "fulli": 0, "func": [], "function": 0, "function_cal": [0, 1, 2], "function_call_cont": 1, "function_call_part": 1, "function_calling_config": [0, 1, 2], "function_declar": [0, 1, 2], "function_repons": [], "function_respons": [0, 1, 2], "function_response_cont": 1, "function_response_part": 1, "function_result": 1, "functioncal": [0, 1, 2], "functioncalldict": [0, 1, 2], "functioncallingconfig": [0, 1, 2], "functioncallingconfigdict": [0, 1, 2], "functioncallingconfigmod": [0, 1, 2], "functiondeclar": [0, 1, 2], "functiondeclarationdict": [0, 1, 2], "functionparamet": [], "functionrespons": [0, 1, 2], "functionresponsedict": [0, 1, 2], "fune": [], "further": 0, "futur": 0, "g": [0, 1], "gc": [0, 1], "gcs_uri": [0, 1, 2], "gcsuri": 0, "gdp": 1, "gemini": 0, "gemini_api": 0, "gemini_api_kei": 1, "gemma": 0, "genai": [1, 2], "genai__types__tuningexampl": 0, "gener": [0, 2], "generate_cont": [0, 1, 2], "generate_content_request": [], "generate_content_respons": [], "generate_content_stream": [0, 1, 2], "generate_imag": [0, 1, 2], "generatecont": 0, "generatecontentconfig": [0, 1, 2], "generatecontentconfigdict": [0, 1, 2], "generatecontentrespons": [0, 1, 2], "generatecontentresponsedict": [0, 1, 2], "generatecontentresponsepromptfeedback": [0, 1, 2], "generatecontentresponsepromptfeedbackdict": [0, 1, 2], "generatecontentresponseusagemetadata": [0, 1, 2], "generatecontentresponseusagemetadatadict": [0, 1, 2], "generated_imag": [0, 1, 2], "generatedimag": [0, 1, 2], "generatedimagedict": [0, 1, 2], "generateimageconfig": [], "generateimageconfigdict": [], "generateimagerespons": [], "generateimageresponsedict": [], "generateimagesconfig": [0, 1, 2], "generateimagesconfigdict": [0, 1, 2], "generateimagesrespons": [0, 1, 2], "generateimagesresponsedict": [0, 1, 2], "generation_config": [0, 1, 2], "generationconfig": [0, 1, 2], "generationconfigdict": [0, 1, 2], "generationconfigroutingconfig": [0, 1, 2], "generationconfigroutingconfigautoroutingmod": [0, 1, 2], "generationconfigroutingconfigautoroutingmodedict": [0, 1, 2], "generationconfigroutingconfigdict": [0, 1, 2], "generationconfigroutingconfigmanualroutingmod": [0, 1, 2], "generationconfigroutingconfigmanualroutingmodedict": [0, 1, 2], "generative_ai": 1, "generativeai": [0, 1], "genericalia": 0, "get": [0, 2], "get_current_weath": 1, "getbatchjobconfig": [0, 1, 2], "getbatchjobconfigdict": [0, 1, 2], "getcachedcontentconfig": [0, 1, 2], "getcachedcontentconfigdict": [0, 1, 2], "getfileconfig": [0, 1, 2], "getfileconfigdict": [0, 1, 2], "getmodelconfig": [0, 1, 2], "getmodelconfigdict": [0, 1, 2], "getoperationconfig": [0, 1, 2], "getoperationconfigdict": [0, 1, 2], "getter": 1, "gettuningjobconfig": [0, 1, 2], "gettuningjobconfigdict": [0, 1, 2], "github": [0, 1], "give": 1, "given": [0, 1], "gl": 0, "goo": 0, "good": 0, "googl": 0, "google_ai": [], "google_api_kei": [0, 1], "google_cloud_loc": [0, 1], "google_cloud_project": [0, 1], "google_genai_use_vertexai": [0, 1], "google_search": [0, 1, 2], "google_search_dynamic_retrieval_scor": [0, 1, 2], "google_search_retriev": [0, 1, 2], "googleapi": 1, "googlerpcstatu": [0, 1, 2], "googlerpcstatusdict": [0, 1, 2], "googlesearch": [0, 1, 2], "googlesearchdict": [0, 1, 2], "googlesearchdynamicretrievalscor": 0, "googlesearchretriev": [0, 1, 2], "googlesearchretrievaldict": [0, 1, 2], "googletyped": [0, 1, 2], "googletypedatedict": [0, 1, 2], "green": 0, "gregorian": 0, "ground": 0, "grounding_chunk": [0, 1, 2], "grounding_chunk_indic": [0, 1, 2], "grounding_metadata": [0, 1, 2], "grounding_support": [0, 1, 2], "groundingchunk": [0, 1, 2], "groundingchunkdict": [0, 1, 2], "groundingchunkindic": 0, "groundingchunkretrievedcontext": [0, 1, 2], "groundingchunkretrievedcontextdict": [0, 1, 2], "groundingchunkweb": [0, 1, 2], "groundingchunkwebdict": [0, 1, 2], "groundingmetadata": [0, 1, 2], "groundingmetadatadict": [0, 1, 2], "groundingsupport": [0, 1, 2], "groundingsupportdict": [0, 1, 2], "grpc": 0, "gsutil": 1, "guarante": 0, "guid": 0, "guidance_scal": [0, 1, 2], "guidancescal": 0, "ha": 0, "handl": [0, 1], "happen": 0, "harm": 0, "harm_block_method_unspecifi": [0, 1, 2], "harm_block_threshold_unspecifi": [0, 1, 2], "harm_category_civic_integr": [0, 1, 2], "harm_category_dangerous_cont": [0, 1, 2], "harm_category_harass": [0, 1, 2], "harm_category_hate_speech": [0, 1, 2], "harm_category_sexually_explicit": [0, 1, 2], "harm_category_unspecifi": [0, 1, 2], "harm_probability_unspecifi": [0, 1, 2], "harm_severity_high": [0, 1, 2], "harm_severity_low": [0, 1, 2], "harm_severity_medium": [0, 1, 2], "harm_severity_neglig": [0, 1, 2], "harm_severity_unspecifi": [0, 1, 2], "harmblockmethod": [0, 1, 2], "harmblockthreshold": [0, 1, 2], "harmcategori": [0, 1, 2], "harmprob": [0, 1, 2], "harmsever": [0, 1, 2], "has_end": [0, 1, 2], "has_succeed": [0, 1, 2], "has_union": [0, 1, 2], "hash": 0, "hasunion": 0, "have": 0, "header": [0, 1, 2], "hello": 0, "help": 0, "here": 0, "hi": [0, 1, 2], "high": [0, 1, 2], "higher": 0, "highest": 0, "histogram": 0, "histori": 0, "hold": [], "how": 0, "http": [0, 1], "http_header": [0, 1, 2], "http_option": [0, 1, 2], "httpheader": 0, "httpoption": [0, 1, 2], "httpoptionsdict": [0, 1, 2], "human": [0, 1], "hyper_paramet": [0, 1, 2], "hyperparamet": 0, "i": [0, 1], "iana": 0, "id": [0, 1, 2], "ident": 1, "identifi": 0, "ignor": 0, "ignore_call_histori": [0, 1, 2], "ignorecallhistori": 0, "imag": [0, 1, 2], "image_byt": [0, 1, 2], "image_count": [0, 1, 2], "image_file_path": 0, "imagebyt": 0, "imagecount": 0, "imagedict": [0, 1, 2], "imagegener": [], "imagen": 0, "imagepromptlanguag": [0, 1, 2], "implement": 0, "import": 0, "includ": 0, "include_rai_reason": [0, 1, 2], "include_safety_attribut": [0, 1, 2], "include_thought": [0, 1, 2], "includeraireason": 0, "includesafetyattribut": 0, "includethought": 0, "inclus": 0, "increas": 0, "increment": 0, "index": [0, 1, 2], "indic": 0, "individu": 0, "infer": 0, "inferenc": 1, "info": 0, "inform": [0, 1], "initi": [0, 1], "initialis": 0, "inlin": [0, 1], "inline_data": [0, 1, 2], "inlinedata": 0, "inpaint": [], "input": [0, 1], "input__1": 0, "input_token_limit": [0, 1, 2], "inputtokenlimit": 0, "insert": [], "insignific": 0, "instanc": [0, 1], "instead": [0, 1], "instruct": 0, "instrument": 1, "instrumentenum": 1, "int": [0, 1], "int32": 0, "int64": 0, "integ": [0, 1, 2], "integr": 1, "interact": [0, 1, 2], "interfac": 1, "interleav": 0, "intern": 0, "interrupt": [0, 1, 2], "invalid": 0, "invalid_argu": 0, "invoc": 1, "invok": 1, "iobas": 0, "isn": 0, "issu": 0, "item": [0, 1, 2], "iter": 0, "its": 0, "itself": 0, "j": 0, "ja": [0, 1, 2], "job": 0, "job_state_cancel": [0, 1, 2], "job_state_expir": [0, 1, 2], "job_state_fail": [0, 1, 2], "job_state_partially_succeed": [0, 1, 2], "job_state_paus": [0, 1, 2], "job_state_pend": [0, 1, 2], "job_state_queu": [0, 1, 2], "job_state_run": [0, 1, 2], "job_state_succeed": [0, 1, 2], "job_state_unspecifi": [0, 1, 2], "job_state_upd": [0, 1, 2], "joberror": [0, 1, 2], "joberrordict": [0, 1, 2], "jobstat": [0, 1, 2], "jpeg": [0, 1], "jpg": [0, 1], "json": 0, "jsonl": [0, 1], "k": 0, "kei": [0, 1], "keyboard": 1, "keyr": 0, "keyword": 0, "km": 0, "kms_key_nam": [0, 1, 2], "kmskeynam": 0, "know": 0, "knowledg": 0, "ko": [0, 1, 2], "kr": 0, "label": [0, 1, 2], "lai": 0, "languag": [0, 1, 2], "language_unspecifi": [0, 1, 2], "larg": 0, "last": 0, "latest": 0, "latter": 0, "lazi": 0, "le": 0, "lead": 0, "learn": 0, "learning_r": [0, 1, 2], "learning_rate_multipli": [0, 1, 2], "learningr": 0, "learningratemultipli": 0, "least": 0, "left": [0, 1, 2], "len": 0, "length": 0, "less": 0, "let": 1, "letter": 0, "level": 0, "librari": 1, "licens": [0, 1, 2], "lifecycl": 0, "like": [0, 1], "likelihood": 0, "list": [0, 2], "listbatchjobconfig": [], "listbatchjobconfigdict": [], "listbatchjobrespons": [], "listbatchjobresponsedict": [], "listbatchjobsconfig": [0, 1, 2], "listbatchjobsconfigdict": [0, 1, 2], "listbatchjobsrespons": [0, 1, 2], "listbatchjobsresponsedict": [0, 1, 2], "listcachedcontentsconfig": [0, 1, 2], "listcachedcontentsconfigdict": [0, 1, 2], "listcachedcontentsrespons": [0, 1, 2], "listcachedcontentsresponsedict": [0, 1, 2], "listfilesconfig": [0, 1, 2], "listfilesconfigdict": [0, 1, 2], "listfilesrespons": [0, 1, 2], "listfilesresponsedict": [0, 1, 2], "listmodelsconfig": [0, 1, 2], "listmodelsconfigdict": [0, 1, 2], "listmodelsconfigordict": 0, "listmodelsrespons": [0, 1, 2], "listmodelsresponsedict": [0, 1, 2], "listtuningjobsconfig": [0, 1, 2], "listtuningjobsconfigdict": [0, 1, 2], "listtuningjobsrequest": 0, "listtuningjobsrespons": [0, 1, 2], "listtuningjobsresponsedict": [0, 1, 2], "liter": 0, "live": [1, 2], "liveclientcont": [0, 1, 2], "liveclientcontentdict": [0, 1, 2], "liveclientcontentupd": [], "liveclientcontentupdatedict": [], "liveclientmessag": [0, 1, 2], "liveclientmessagedict": [0, 1, 2], "liveclientrealtimeinput": [0, 1, 2], "liveclientrealtimeinputdict": [0, 1, 2], "liveclientrealtimeupd": [], "liveclientrealtimeupdatedict": [], "liveclientsetup": [0, 1, 2], "liveclientsetupdict": [0, 1, 2], "liveclienttoolrespons": [0, 1, 2], "liveclienttoolresponsedict": [0, 1, 2], "liveconnectconfig": [0, 1, 2], "liveconnectconfigdict": [0, 1, 2], "livegeneratecontentsetup": 0, "liveservercont": [0, 1, 2], "liveservercontentdict": [0, 1, 2], "liveservercontentupd": [], "liveservercontentupdatedict": [], "liveservermessag": [0, 1, 2], "liveservermessagedict": [0, 1, 2], "liveserversetupcomplet": [0, 1, 2], "liveserversetupcompletedict": [0, 1, 2], "liveservertoolcal": [0, 1, 2], "liveservertoolcallcancel": [0, 1, 2], "liveservertoolcallcancellationdict": [0, 1, 2], "liveservertoolcalldict": [0, 1, 2], "llama": 0, "llm": 0, "load": 0, "local": [0, 1], "locat": [0, 1, 2], "log": 0, "log_prob": [0, 1, 2], "logic": 0, "logit": 0, "logprob": [0, 1, 2], "logprobs_result": [0, 1, 2], "logprobsresult": [0, 1, 2], "logprobsresultcandid": [0, 1, 2], "logprobsresultcandidatedict": [0, 1, 2], "logprobsresultdict": [0, 1, 2], "logprobsresulttopcandid": [0, 1, 2], "logprobsresulttopcandidatesdict": [0, 1, 2], "long": 0, "longer": 0, "lookup": 0, "low": [0, 1, 2], "lower": 0, "lowercas": 0, "maa": 0, "machin": 0, "made": [], "mai": 0, "main": 0, "make": 0, "malformed_function_cal": [0, 1, 2], "man": 0, "manag": 0, "mani": 0, "manual": [0, 1], "manual_mod": [0, 1, 2], "manualmod": 0, "map": 0, "mask": [0, 1], "mask_dil": [0, 1, 2], "mask_image_config": [0, 1, 2], "mask_mod": [0, 1, 2], "mask_mode_background": [0, 1, 2], "mask_mode_default": [0, 1, 2], "mask_mode_foreground": [0, 1, 2], "mask_mode_semant": [0, 1, 2], "mask_mode_user_provid": [0, 1, 2], "mask_ref_imag": [0, 1], "mask_reference_config": 0, "mask_typ": [], "maskdil": 0, "maskimageconfig": 0, "maskmod": 0, "maskreferenceconfig": [0, 1, 2], "maskreferenceconfigdict": [0, 1, 2], "maskreferenceimag": [0, 1, 2], "maskreferenceimagedict": [0, 1, 2], "maskreferencemod": [0, 1, 2], "match": 0, "max": [0, 1, 2], "max_item": [0, 1, 2], "max_length": [0, 1, 2], "max_output_token": [0, 1, 2], "max_properti": [0, 1, 2], "max_token": [0, 1, 2], "maximum": [0, 1, 2], "maximum_remote_cal": [0, 1, 2], "maximumremotecal": 0, "maxitem": 0, "maxlength": 0, "maxoutputtoken": 0, "maxproperti": 0, "me": [0, 1], "mean": [0, 1, 2], "meaning": 0, "meant": 0, "measur": 0, "media": 0, "media_chunk": [0, 1, 2], "media_resolut": [0, 1, 2], "media_resolution_high": [0, 1, 2], "media_resolution_low": [0, 1, 2], "media_resolution_medium": [0, 1, 2], "media_resolution_unspecifi": [0, 1, 2], "mediachunk": 0, "median": [0, 1, 2], "mediaresolut": [0, 1, 2], "medium": [0, 1, 2], "member": 0, "messag": [0, 2], "meta": 0, "metadata": [0, 1, 2], "method": [0, 1, 2], "might": 0, "millisecond": 0, "mime": 0, "mime_typ": [0, 1, 2], "mimetyp": 0, "min": [0, 1, 2], "min_item": [0, 1, 2], "min_length": [0, 1, 2], "min_properti": [0, 1, 2], "minimum": [0, 1, 2], "minitem": 0, "minlength": 0, "minproperti": 0, "mission": 0, "mix": 0, "ml": 1, "mldev": 0, "modal": [0, 1, 2], "modality_unspecifi": [0, 1, 2], "mode": [0, 1, 2], "mode_dynam": [0, 1, 2], "mode_unspecifi": [0, 1, 2], "model": 2, "model_nam": [0, 1, 2], "model_post_init": [0, 1, 2], "model_routing_prefer": [0, 1, 2], "model_turn": [0, 1, 2], "model_vers": [0, 1, 2], "modeldict": [0, 1, 2], "modelnam": 0, "modelroutingprefer": 0, "modelturn": 0, "modelvers": 0, "modul": [1, 2], "month": [0, 1, 2], "more": [0, 1], "most": 0, "much": 0, "multi": [0, 1], "multimod": 0, "multipl": [0, 1], "multipli": 0, "must": 0, "my": [0, 1], "my_model": 0, "n": 0, "n3": 0, "na": 0, "naccess": 0, "naddition": 0, "nall": 0, "nalwai": 0, "name": [0, 1, 2], "nattribut": 0, "natur": [], "nbe": 0, "nby": 0, "ncall": 0, "ncontent": 0, "ncontrol": 0, "ndai": 0, "ndesign": 0, "ndimens": 0, "necessari": 1, "need": 0, "negative_prompt": [0, 1, 2], "negativeprompt": 0, "neglig": [0, 1, 2], "nenable_control_image_comput": 0, "nenumer": 0, "network": 0, "new": [0, 1], "newer": 0, "nexactli": 0, "nexampl": 0, "next": 0, "next_pag": [0, 1], "next_page_token": [0, 1, 2], "nextpagetoken": 0, "nfind": 0, "nfor": 0, "ngener": 0, "ngeneratecont": 0, "ngoogl": 0, "nhistori": 0, "nif": 0, "night": 1, "nimag": 0, "nindividu": 0, "ninsignific": 0, "ninstanc": 0, "nit": 0, "nmai": 0, "nmessag": 0, "nmethod": 0, "nmodel": 0, "nnot": 0, "nnote": 0, "nof": 0, "non": 0, "none": [0, 1, 2], "normal": 0, "north": 0, "note": [0, 1], "notebook": 0, "notif": 0, "now": 0, "npredict": [], "nrepres": 0, "nsee": 0, "nserver": 0, "nspecifi": 0, "nthe": 0, "nthi": 0, "nthree": 0, "nto": 0, "nucleu": 0, "null": 0, "nullabl": [0, 1, 2], "number": [0, 1, 2], "number_of_imag": [0, 1, 2], "numberofimag": 0, "numer": 0, "nunion": [], "nwith": 0, "oa": 0, "object": [0, 1, 2], "objection": 0, "obtain": 0, "occur": 0, "off": [0, 1, 2], "official_languag": 1, "offset": 0, "ok": 0, "onc": 1, "one": [0, 1], "onli": 0, "open": [0, 1], "openapi": 0, "oper": [0, 1, 2], "operationdict": [0, 1, 2], "optim": 0, "option": [0, 1], "order": 0, "org": 0, "organ": 0, "origin": 0, "other": [0, 2], "otherwis": 0, "out": 0, "outcom": [0, 1, 2], "outcome_deadline_exceed": [0, 1, 2], "outcome_fail": [0, 1, 2], "outcome_ok": [0, 1, 2], "outcome_unspecifi": [0, 1, 2], "output": [0, 1, 2], "output_compression_qu": [0, 1, 2], "output_dimension": [0, 1, 2], "output_gcs_uri": [0, 1, 2], "output_mime_typ": [0, 1, 2], "output_token_limit": [0, 1, 2], "outputcompressionqu": 0, "outputdimension": 0, "outputgcsuri": 0, "outputmimetyp": 0, "outputtokenlimit": 0, "outsid": 0, "over": 0, "overrid": 0, "override_replay_id": [0, 1, 2], "overridereplayid": 0, "overs": 0, "own": 0, "p5": [0, 1, 2], "p95": [0, 1, 2], "page": 0, "page_s": [0, 1, 2], "page_token": [0, 1, 2], "pager": [0, 1], "pages": 0, "pagetoken": 0, "pai": 0, "pair": 0, "paragraph": 0, "param1": 0, "param2": 0, "paramet": [0, 1, 2], "parameter_nam": [0, 1, 2], "parameternam": 0, "parametertyp": [], "parent": 0, "pars": [0, 1, 2], "part": [0, 1, 2], "part_index": [0, 1, 2], "partdict": [0, 1, 2], "parti": 0, "partial": 0, "partindex": 0, "partner": 0, "partner_model_tuning_spec": [0, 1, 2], "partnermodeltuningspec": [0, 1, 2], "partnermodeltuningspecdict": [0, 1, 2], "pass": [0, 1], "path": 0, "pattern": [0, 1, 2], "payload": [], "pcm": 0, "pdf": [0, 1], "penal": 0, "penalti": 0, "pend": 0, "peopl": 0, "per": 0, "percentag": 0, "percentil": 0, "percuss": 1, "perform": [0, 1], "person_gener": [0, 1, 2], "persongener": [0, 1, 2], "petal": 0, "pictur": 1, "piec": 0, "pil": 0, "pip": 1, "pipelin": 0, "pipeline_job": [0, 1, 2], "pipeline_root_directori": [0, 1, 2], "pipelinejob": 0, "pipelinerootdirectori": 0, "plai": [0, 1], "plain": 0, "plane": 1, "platform": [0, 1], "play_audio_chunk": 0, "playback": [], "pleas": [0, 1], "png": 0, "point": 0, "popul": [0, 1], "posit": 0, "possibl": 0, "power": 0, "prebuilt": 0, "prebuilt_voice_config": [0, 1, 2], "prebuiltvoiceconfig": [0, 1, 2], "prebuiltvoiceconfigdict": [0, 1, 2], "predict": 0, "predictionservic": 0, "predictor": 0, "prefer": [0, 1], "prefix": 0, "prefixitem": [], "presence_penalti": [0, 1, 2], "presencepenalti": 0, "present": 0, "pretrain": 0, "preview": 0, "previous": 0, "primit": 0, "print": [0, 1], "prioritize_cost": 0, "prioritize_qu": 0, "privat": 0, "pro": [0, 1], "probability_scor": [0, 1, 2], "probabilityscor": 0, "probabl": [0, 1, 2], "process": [0, 1, 2], "produc": 0, "product": 0, "product_posit": [], "program": 0, "progress": 0, "prohibited_cont": [0, 1, 2], "project": [0, 1, 2], "projectid": 0, "prompt": [0, 1], "prompt_feedback": [0, 1, 2], "prompt_token_count": [0, 1, 2], "promptfeedback": 0, "prompttokencount": 0, "properti": [0, 1, 2], "property_ord": [0, 1, 2], "propertyord": 0, "protect": 0, "proto": [], "protobuf": 0, "provid": [0, 1], "public": 0, "publication_d": [0, 1, 2], "publicationd": 0, "publish": 0, "purpos": 0, "pydant": [0, 1], "pydantic_cor": 0, "python": [0, 1, 2], "q": 1, "qualifi": 0, "qualiti": 0, "qualnam": 0, "queri": 0, "query_bas": [0, 1, 2], "querybas": 0, "queue": 0, "quickli": 0, "quot": [0, 1], "quota": 0, "rag": 0, "rag_corpora": [0, 1, 2], "rag_corpu": [0, 1, 2], "rag_file_id": [0, 1, 2], "rag_resourc": [0, 1, 2], "ragcorpora": 0, "ragcorpu": 0, "ragfil": 0, "ragfileid": 0, "ragresourc": 0, "rai_filtered_reason": [0, 1, 2], "raifilteredreason": 0, "raini": 1, "rais": [0, 1], "random": 0, "rang": [0, 1], "rate": 0, "rather": 0, "ratio": 0, "raw": 0, "raw_ref_imag": [0, 1], "rawreferenceimag": [0, 1, 2], "rawreferenceimagedict": [0, 1, 2], "rb": 1, "re": 0, "read": 1, "read_audio": 0, "readabl": 0, "real": 0, "realtim": 0, "realtime_input": [0, 1, 2], "realtime_upd": [], "realtimeinput": 0, "realtimeupd": 0, "reason": 0, "receiv": [0, 1, 2], "recent": 0, "recit": [0, 1, 2], "recommend": 1, "record": 0, "red": 0, "reduc": 0, "ref": 0, "refer": 0, "reference_id": [0, 1, 2], "reference_imag": [0, 1, 2], "reference_typ": [0, 1, 2], "referenceid": 0, "referenceimag": 0, "referencetyp": 0, "reflect": 0, "region": 0, "regular": 0, "rel": 0, "relat": 0, "releas": [], "remap": [], "remot": [0, 1], "rendered_cont": [0, 1, 2], "renderedcont": 0, "repeat": 0, "repeatedli": 0, "replai": 0, "replay_id": [0, 1, 2], "replayfil": [0, 1, 2], "replayfiledict": [0, 1, 2], "replayid": 0, "replayinteract": [0, 1, 2], "replayinteractiondict": [0, 1, 2], "replayrequest": [0, 1, 2], "replayrequestdict": [0, 1, 2], "replayrespons": [0, 1, 2], "replayresponsedict": [0, 1, 2], "replays_directori": [0, 1, 2], "report": 0, "reposit": [], "repositori": 0, "repres": 0, "represent": 0, "reproduc": 0, "request": [0, 1, 2], "requir": [0, 1, 2], "resolut": 0, "resolv": [], "resourc": [0, 1], "respect": 0, "respond": 1, "respons": [0, 2], "response1": 1, "response2": 1, "response3": 1, "response_logprob": [0, 1, 2], "response_mime_typ": [0, 1, 2], "response_mod": [0, 1, 2], "response_payload": 0, "response_schema": [0, 1, 2], "responselogprob": 0, "responsemimetyp": 0, "responsemod": 0, "responseschema": 0, "rest": 0, "restrict": 0, "result": [0, 1], "retain": 0, "retriev": [0, 1, 2], "retrieval_docu": 0, "retrieval_metadata": [0, 1, 2], "retrieval_queri": [0, 1, 2], "retrievaldict": [0, 1, 2], "retrievalmetadata": [0, 1, 2], "retrievalmetadatadict": [0, 1, 2], "retrievalqueri": 0, "retrieved_context": [0, 1, 2], "retrievedcontext": 0, "return": [0, 1], "rewrit": 0, "rewritten": 0, "right": [0, 1, 2], "robot": [], "role": [0, 1, 2], "root": 0, "rout": 0, "router": 0, "routing_config": [0, 1, 2], "routingconfig": 0, "rpc": 0, "rtype": 0, "run": [0, 1], "running_st": 1, "safeti": [0, 2], "safety_filter_level": [0, 1, 2], "safety_r": [0, 1, 2], "safety_set": [0, 1, 2], "safetyfilterlevel": [0, 1, 2], "safetyr": [0, 1, 2], "safetyratingdict": [0, 1, 2], "safetyset": [0, 1, 2], "safetysettingdict": [0, 1, 2], "sai": 1, "same": 0, "sampl": [0, 1], "san": 1, "save": [0, 1, 2], "schedul": 0, "schema": [0, 2], "schemadict": [0, 1, 2], "scone": [0, 1], "scope": 0, "score": 0, "sdk": 0, "sdk_blob": [0, 1, 2], "sdk_response_seg": [0, 1, 2], "sdkblob": 0, "sdkresponseseg": 0, "search": 0, "search_entry_point": [0, 1, 2], "searchentrypoint": [0, 1, 2], "searchentrypointdict": [0, 1, 2], "second": 0, "see": [0, 1], "seed": [0, 1, 2], "seek": 0, "seekabl": 0, "segment": [0, 1, 2], "segmentation_class": [0, 1, 2], "segmentationclass": 0, "segmentdict": [0, 1, 2], "select": 0, "self": 0, "sell": 0, "semant": 0, "send": [0, 2], "send_messag": [0, 1, 2], "send_message_stream": [0, 1, 2], "sensit": 0, "sent": 0, "separ": [0, 1], "sequenc": 0, "server": 0, "server_cont": [0, 1, 2], "server_content_mod": [], "servercont": 0, "servic": [0, 1], "session": [0, 1], "set": 0, "setup": [0, 1, 2], "setup_complet": [0, 1, 2], "setupcomplet": 0, "sever": [0, 1, 2], "severity_scor": [0, 1, 2], "severityscor": 0, "sft": 0, "sft_train_data": 1, "sha": 0, "sha256_hash": [0, 1, 2], "sha256hash": 0, "share": 0, "shared_resourc": [0, 1, 2], "shop": 0, "should": 0, "show": [0, 1, 2], "shown": [0, 1], "side": 0, "signal": 0, "signific": 0, "silent": 0, "similar": 0, "similarity_top_k": [0, 1, 2], "similaritytopk": 0, "simpl": [0, 1], "sinc": 0, "singl": [0, 1], "size": 0, "size_byt": [0, 1, 2], "sizebyt": 0, "skateboard": [], "sketch": 0, "skip": 0, "skip_in_api_mod": [0, 1, 2], "skipinapimod": 0, "sky": 1, "sleep": 1, "smaller": 0, "snippet": 0, "some": [0, 1], "someth": 1, "sort": 0, "sourc": [0, 1, 2], "source_unspecifi": [0, 1, 2], "south": 0, "space": 0, "speaker": 0, "spec": 0, "special": 0, "specif": 0, "specifi": [0, 1], "speech": 0, "speech_config": [0, 1, 2], "speechconfig": [0, 1, 2], "speechconfigdict": [0, 1, 2], "spii": [0, 1, 2], "src": [0, 1, 2], "stage": [], "stai": [], "standard": 0, "start": [0, 1], "start_index": [0, 1, 2], "start_offset": [0, 1, 2], "start_stream": [0, 1, 2], "start_tim": [0, 1, 2], "startindex": 0, "startoffset": 0, "starttim": 0, "stat": 0, "state": [0, 1, 2], "state_unspecifi": [0, 1, 2], "static": [], "statist": [0, 1, 2], "statu": 0, "status_cod": [0, 1, 2], "statuscod": 0, "stderr": 0, "stdout": 0, "steer": 0, "step": 0, "still": 0, "stop": [0, 1, 2], "stop_sequ": [0, 1, 2], "stopsequ": 0, "storag": [0, 1], "store": [0, 1], "stori": [0, 1], "str": [0, 1], "stream": 0, "string": [0, 1, 2], "structur": 0, "student": 0, "student_model": [0, 1, 2], "studentmodel": 0, "style": 0, "style_descript": [0, 1, 2], "style_image_config": [0, 1, 2], "style_reference_config": 0, "styledescript": 0, "styleimageconfig": 0, "stylereferenceconfig": [0, 1, 2], "stylereferenceconfigdict": [0, 1, 2], "stylereferenceimag": [0, 1, 2], "stylereferenceimagedict": [0, 1, 2], "subject": 0, "subject_descript": [0, 1, 2], "subject_image_config": [0, 1, 2], "subject_reference_config": 0, "subject_typ": [0, 1, 2], "subject_type_anim": [0, 1, 2], "subject_type_default": [0, 1, 2], "subject_type_person": [0, 1, 2], "subject_type_product": [0, 1, 2], "subjectdescript": 0, "subjectimageconfig": 0, "subjectreferenceconfig": [0, 1, 2], "subjectreferenceconfigdict": [0, 1, 2], "subjectreferenceimag": [0, 1, 2], "subjectreferenceimagedict": [0, 1, 2], "subjectreferencetyp": [0, 1, 2], "subjecttyp": 0, "submodul": [1, 2], "subschema": 0, "subsequ": 0, "subset": 0, "succeed": 0, "success": 0, "suitabl": 0, "sum": [0, 1, 2], "summar": 1, "sunlight": 1, "sunni": 1, "supervis": [0, 1], "supervised_tuning_data_stat": [0, 1, 2], "supervised_tuning_spec": [0, 1, 2], "supervisedhyperparamet": [0, 1, 2], "supervisedhyperparametersdict": [0, 1, 2], "supervisedtuningdatasetdistribut": [0, 1, 2], "supervisedtuningdatasetdistributiondatasetbucket": [0, 1, 2], "supervisedtuningdatasetdistributiondatasetbucketdict": [0, 1, 2], "supervisedtuningdatasetdistributiondict": [0, 1, 2], "supervisedtuningdatastat": [0, 1, 2], "supervisedtuningdatastatsdict": [0, 1, 2], "supervisedtuningspec": [0, 1, 2], "supervisedtuningspecdict": [0, 1, 2], "suppli": [], "support": [0, 1], "supported_act": [0, 1, 2], "supportedact": 0, "surfboard": [], "switch": 1, "synchron": 0, "system": 0, "system_instruct": [0, 1, 2], "systeminstruct": 0, "t": [0, 1], "tabl": [0, 1], "take": 0, "task": 0, "task_typ": [0, 1, 2], "tasktyp": 0, "tcompleted_st": [], "teacher": 0, "teacher_model": [], "technic": 0, "tell": [0, 1], "temperatur": [0, 1, 2], "term": 0, "termin": 0, "test": [0, 1], "test_dataset_exampl": 1, "test_method": [0, 1, 2], "test_tabl": [0, 1, 2], "testmethod": 0, "testtabl": 0, "testtablefil": [0, 1, 2], "testtablefiledict": [0, 1, 2], "testtableitem": [0, 1, 2], "testtableitemdict": [0, 1, 2], "text": [0, 2], "text_count": [0, 1, 2], "text_input": [0, 1, 2], "textcount": 0, "textinput": 0, "than": [0, 1], "thei": 0, "them": 0, "thi": [0, 1], "thing": 1, "think": 0, "thinking_config": [0, 1, 2], "thinkingconfig": [0, 1, 2], "thinkingconfigdict": [0, 1, 2], "third": 0, "those": [0, 1], "thought": [0, 1, 2], "three": 0, "threshold": [0, 1, 2], "through": 1, "time": [0, 1], "timeless": 0, "timeofdai": 0, "timeout": [0, 1, 2], "timestamp": 0, "titl": [0, 1, 2], "tmp": [], "token": [0, 2], "token_count": [0, 1, 2], "token_id": [0, 1, 2], "tokencount": 0, "tokenid": 0, "tokens_info": [0, 1, 2], "tokensinfo": [0, 1, 2], "tokensinfodict": [0, 1, 2], "tool": [0, 1, 2], "tool_cal": [0, 1, 2], "tool_call_cancel": [0, 1, 2], "tool_config": [0, 1, 2], "tool_respons": [0, 1, 2], "toolcal": 0, "toolcallcancel": 0, "toolcallmessag": 0, "toolcodeexecut": [0, 1, 2], "toolcodeexecutiondict": [0, 1, 2], "toolconfig": [0, 1, 2], "toolconfigdict": [0, 1, 2], "tooldict": [0, 1, 2], "toolrespons": 0, "top": 0, "top_candid": [0, 1, 2], "top_k": [0, 1, 2], "top_p": [0, 1, 2], "topcandid": 0, "topk": 0, "topp": 0, "total": 0, "total_area_sq_mi": 1, "total_billable_character_count": [0, 1, 2], "total_billable_token_count": [0, 1, 2], "total_token": [0, 1, 2], "total_token_count": [0, 1, 2], "total_truncated_example_count": [0, 1, 2], "total_tuning_character_count": [0, 1, 2], "totalbillablecharactercount": 0, "totalbillabletokencount": 0, "totaltoken": 0, "totaltokencount": 0, "totaltruncatedexamplecount": 0, "totaltuningcharactercount": 0, "toward": 0, "tradit": 0, "train": 0, "training_dataset": [0, 1], "training_dataset_stat": [0, 1, 2], "training_dataset_uri": [0, 1, 2], "trainingdatasetstat": 0, "trainingdataseturi": 0, "translat": 0, "treat": 0, "trigger": 0, "true": [0, 1], "truncat": [0, 1, 2], "truncated_example_indic": [0, 1, 2], "truncatedexampleindic": 0, "try": 1, "ttl": [0, 1, 2], "tune": 2, "tuned_model": [0, 1, 2], "tuned_model_display_nam": [0, 1, 2], "tuned_model_info": [0, 1, 2], "tuned_teacher_model_sourc": [0, 1, 2], "tunedmodel": [0, 1, 2], "tunedmodeldict": [0, 1, 2], "tunedmodeldisplaynam": 0, "tunedmodelinfo": [0, 1, 2], "tunedmodelinfodict": [0, 1, 2], "tunedteachermodelsourc": 0, "tuning_data_stat": [0, 1, 2], "tuning_dataset_example_count": [0, 1, 2], "tuning_job": [0, 1, 2], "tuning_step_count": [0, 1, 2], "tuningdataset": [0, 1, 2], "tuningdatasetdict": [0, 1, 2], "tuningdatasetexamplecount": 0, "tuningdatastat": [0, 1, 2], "tuningdatastatsdict": [0, 1, 2], "tuningexampl": [0, 1, 2], "tuningexampledict": [0, 1, 2], "tuningjob": [0, 1, 2], "tuningjobdict": [0, 1, 2], "tuningjoboroper": [], "tuningjoboroperationdict": [], "tuningstepcount": 0, "tuningvalidationdataset": [0, 1, 2], "tuningvalidationdatasetdict": [0, 1, 2], "tupl": 0, "turn": [0, 1, 2], "turn_complet": [0, 1, 2], "turncomplet": 0, "two": [0, 1], "txt": 1, "type": 2, "type_unspecifi": [0, 1, 2], "typeddict": [0, 1], "typic": 0, "u": [0, 1], "umbrella": 1, "unari": 0, "uncondition": 0, "undefin": 0, "under": [0, 1], "underscor": 0, "undo": 0, "unicod": 0, "unified_genai_tests_batch": [], "union": 0, "uniontyp": 0, "uniqu": 0, "unique_id": 0, "unit": 1, "unknown": 0, "unless": 0, "unsaf": 0, "unset": 0, "unsupport": 0, "until": [0, 1], "up": 0, "updat": [0, 2], "update_tim": [0, 1, 2], "updatecachedcontentconfig": [0, 1, 2], "updatecachedcontentconfigdict": [0, 1, 2], "updatemodelconfig": [0, 1, 2], "updatemodelconfigdict": [0, 1, 2], "updatetim": 0, "upload": [0, 2], "uploadfileconfig": [0, 1, 2], "uploadfileconfigdict": [0, 1, 2], "upscal": [0, 1], "upscale_factor": [0, 1, 2], "upscale_imag": [0, 1, 2], "upscalefactor": 0, "upscaleimageconfig": [0, 1, 2], "upscaleimageconfigdict": [0, 1, 2], "upscaleimageparamet": [0, 1, 2], "upscaleimageparametersdict": [0, 1, 2], "upscaleimagerespons": [0, 1, 2], "upscaleimageresponsedict": [0, 1, 2], "uri": [0, 1, 2], "url": [0, 1, 2], "us": [0, 1], "usag": 0, "usage_metadata": [0, 1, 2], "usagemetadata": 0, "user": [0, 1], "user_dataset_exampl": [0, 1, 2], "user_input_token_distribut": [0, 1, 2], "user_message_per_example_distribut": [0, 1, 2], "user_output_token_distribut": [0, 1, 2], "user_prompt_cont": 1, "userdatasetexampl": 0, "userinputtokendistribut": 0, "usermessageperexampledistribut": 0, "useroutputtokendistribut": 0, "utc": 0, "utf": 0, "util": 0, "v1": 1, "v1alpha": 1, "v3": 0, "valid": 0, "validation_dataset": [0, 1, 2], "validation_dataset_uri": [0, 1, 2], "validationdataset": 0, "validationdataseturi": 0, "validationerror": 0, "valu": [0, 1, 2], "valueerror": 0, "variabl": [0, 1], "variant": [], "variat": 0, "vector": 0, "vector_distance_threshold": [0, 1, 2], "vectordistancethreshold": 0, "version": [0, 1, 2], "vertex": [0, 1], "vertex_ai": 0, "vertex_ai_search": [0, 1, 2], "vertex_rag_stor": [0, 1, 2], "vertexai": [0, 1, 2], "vertexaisearch": [0, 1, 2], "vertexaisearchdict": [0, 1, 2], "vertexragdataservic": 0, "vertexragstor": [0, 1, 2], "vertexragstoredict": [0, 1, 2], "vertexragstoreragresourc": [0, 1, 2], "vertexragstoreragresourcedict": [0, 1, 2], "via": 0, "video": 0, "video_duration_second": [0, 1, 2], "video_metadata": [0, 1, 2], "videodurationsecond": 0, "videometadata": [0, 1, 2], "videometadatadict": [0, 1, 2], "violat": 0, "voic": 0, "voice_config": [0, 1, 2], "voice_nam": [0, 1, 2], "voiceconfig": [0, 1, 2], "voiceconfigdict": [0, 1, 2], "voicenam": 0, "wa": 0, "wai": [0, 1], "wait": 0, "want": [0, 1], "watermark": 0, "we": 0, "weather": 1, "web": [0, 1, 2], "web_search_queri": [0, 1, 2], "websearchqueri": 0, "websit": 0, "websocket": 0, "webview": 0, "welcom": 0, "well": 1, "were": 0, "west": 0, "wget": 1, "what": [0, 1], "when": [0, 1], "where": 0, "whether": [0, 1], "which": 0, "while": [0, 1], "whole": 0, "whose": 0, "why": [0, 1], "winter": 1, "within": 0, "without": 0, "woodwind": 1, "word": [0, 1], "work": 0, "world": 0, "would": 0, "x": 1, "x2": [0, 1], "x4": 0, "xmqnxf": 0, "year": [0, 1, 2], "yellow": [], "yield": 0, "york": 1, "you": [0, 1], "your": [0, 1], "your_api_kei": [], "your_image_mime_typ": 1, "your_image_path": 1, "yourself": [], "z": 0, "zero": 0, "zone": 0}, "titles": ["Submodules", "Google Gen AI SDK", "google"], "titleterms": {"ai": 1, "api": 1, "async": 1, "automat": [], "base": 1, "batch": [0, 1], "cach": [0, 1], "call": 1, "chat": [0, 1], "client": [0, 1], "comput": 1, "config": 1, "content": 1, "count": 1, "creat": 1, "delet": 1, "distil": [], "edit": [], "emb": 1, "enum": 1, "file": [0, 1], "function": 1, "gemini": 1, "gen": 1, "genai": 0, "gener": 1, "get": 1, "googl": [1, 2], "how": 1, "imag": [], "imagen": 1, "import": 1, "instal": 1, "instruct": 1, "job": 1, "json": 1, "list": 1, "live": 0, "messag": 1, "model": [0, 1], "modul": 0, "onli": 1, "other": 1, "predict": 1, "pydant": [], "python": [], "refer": 1, "respons": 1, "safeti": 1, "schema": 1, "sdk": 1, "select": 1, "send": 1, "set": 1, "stream": 1, "structur": 1, "submodul": 0, "support": [], "system": 1, "text": 1, "think": [], "token": 1, "tune": [0, 1], "type": [0, 1], "updat": 1, "upload": 1, "upscal": [], "us": []}})
\ No newline at end of file