Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions google/genai/_gaos/_hooks/google_genai_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def _apply_default_headers(




def _apply_user_project(
hook_ctx: BeforeRequestContext, request: httpx.Request
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion google/genai/_gaos/_hooks/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""

from ..sdkconfiguration import SDKConfiguration
from abc import ABC, abstractmethod
from ..sdkconfiguration import SDKConfiguration
import httpx
from typing import Any, Callable, Dict, List, Literal, Optional, Tuple, Union

Expand Down
6 changes: 4 additions & 2 deletions google/genai/_gaos/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
__version__: str = "2.4.1-preview.5"
__response_mode_header__: str = "x-google-genai-response-mode"
__openapi_doc_version__: str = "v1beta"
__gen_version__: str = "2.924.0"
__user_agent__: str = "speakeasy-sdk/python 2.4.1-preview.5 2.924.0 v1beta google-genai"
__gen_version__: str = "internal"
__user_agent__: str = (
"speakeasy-sdk/python 2.4.1-preview.5 internal v1beta google-genai"
)

try:
if __package__ is not None:
Expand Down
615 changes: 309 additions & 306 deletions google/genai/_gaos/agents.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion google/genai/_gaos/basesdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@

"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""

from .sdkconfiguration import SDKConfiguration
from . import errors, types, utils
from ._hooks import (
AfterErrorContext,
AfterSuccessContext,
BeforeRequestContext,
HookContext,
)
from .sdkconfiguration import SDKConfiguration
from .utils import RetryConfig, SerializedRequestBody, get_body_content
import httpx

Expand Down
Loading
Loading