diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 000000000..f68748040 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,37 @@ + +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. diff --git a/docs/_sources/genai.rst.txt b/docs/_sources/genai.rst.txt index 7ebbdcbbc..32ee1cd3f 100644 --- a/docs/_sources/genai.rst.txt +++ b/docs/_sources/genai.rst.txt @@ -1,3 +1,4 @@ + Submodules ---------- diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index 81d079a0b..2ef7a0250 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -1,3 +1,4 @@ + Google Gen AI SDK ================= diff --git a/docs/_sources/modules.rst.txt b/docs/_sources/modules.rst.txt index ff03010d6..69467cb89 100644 --- a/docs/_sources/modules.rst.txt +++ b/docs/_sources/modules.rst.txt @@ -1,3 +1,4 @@ + google ====== diff --git a/docs/_static/autodoc_pydantic.css b/docs/_static/autodoc_pydantic.css index 994a3e548..f299b3581 100644 --- a/docs/_static/autodoc_pydantic.css +++ b/docs/_static/autodoc_pydantic.css @@ -1,3 +1,4 @@ + .autodoc_pydantic_validator_arrow { padding-left: 8px; } @@ -8,4 +9,4 @@ .autodoc_pydantic_collapsable_erd { cursor: pointer; - } \ No newline at end of file + } diff --git a/docs/_static/basic.css b/docs/_static/basic.css index 4738b2edc..45c832121 100644 --- a/docs/_static/basic.css +++ b/docs/_static/basic.css @@ -1,3 +1,4 @@ + /* * Sphinx stylesheet -- basic theme. */ @@ -903,4 +904,4 @@ div.math:hover a.headerlink { #top-link { display: none; } -} \ No newline at end of file +} diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js index 0398ebb9f..5c0420f9c 100644 --- a/docs/_static/doctools.js +++ b/docs/_static/doctools.js @@ -1,3 +1,4 @@ + /* * Base JavaScript utilities for all Sphinx HTML documentation. */ diff --git a/docs/_static/language_data.js b/docs/_static/language_data.js index c7fe6c6fa..31ecb7e25 100644 --- a/docs/_static/language_data.js +++ b/docs/_static/language_data.js @@ -1,3 +1,4 @@ + /* * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. diff --git a/docs/_static/pygments.css b/docs/_static/pygments.css index 9d1083bfc..4cf48d004 100644 --- a/docs/_static/pygments.css +++ b/docs/_static/pygments.css @@ -247,4 +247,4 @@ body:not([data-theme="light"]) .highlight .vi { color: #40FFFF } /* Name.Variabl 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/_static/searchtools.js b/docs/_static/searchtools.js index 91f4be57f..92a5ed011 100644 --- a/docs/_static/searchtools.js +++ b/docs/_static/searchtools.js @@ -1,3 +1,5 @@ + + /* * Sphinx JavaScript utilities for the full-text search. */ diff --git a/docs/_static/skeleton.css b/docs/_static/skeleton.css index 467c878c6..0dfb6a18e 100644 --- a/docs/_static/skeleton.css +++ b/docs/_static/skeleton.css @@ -1,3 +1,4 @@ + /* Some sane resets. */ html { height: 100%; diff --git a/google/genai/__init__.py b/google/genai/__init__.py index 9c98f6ef6..95d263bd4 100644 --- a/google/genai/__init__.py +++ b/google/genai/__init__.py @@ -1,3 +1,4 @@ + # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/google/genai/_adapters.py b/google/genai/_adapters.py index d1dddb2b2..d09aff9af 100644 --- a/google/genai/_adapters.py +++ b/google/genai/_adapters.py @@ -1,3 +1,4 @@ + # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/google/genai/_api_client.py b/google/genai/_api_client.py index 7710c4487..6a69d06c3 100644 --- a/google/genai/_api_client.py +++ b/google/genai/_api_client.py @@ -1,3 +1,5 @@ + + # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/google/genai/_api_module.py b/google/genai/_api_module.py index bd5abd4d7..34c7ae9ee 100644 --- a/google/genai/_api_module.py +++ b/google/genai/_api_module.py @@ -1,3 +1,4 @@ + # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/google/genai/_replay_api_client.py b/google/genai/_replay_api_client.py index d00be982c..c9e3c9ccb 100644 --- a/google/genai/_replay_api_client.py +++ b/google/genai/_replay_api_client.py @@ -1,3 +1,4 @@ + # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/google/genai/models.py b/google/genai/models.py index 478c8a6c6..c71c29aa5 100644 --- a/google/genai/models.py +++ b/google/genai/models.py @@ -1,4 +1,4 @@ -# Copyright 2025 Google LLC +r# Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.