We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe82e10 commit 7f38e55Copy full SHA for 7f38e55
1 file changed
google/genai/types.py
@@ -494,10 +494,7 @@ class FunctionResponseDict(TypedDict, total=False):
494
495
496
class Blob(_common.BaseModel):
497
- """Content blob.
498
-
499
- It's preferred to send as text directly rather than raw bytes.
500
- """
+ """Content blob."""
501
502
data: Optional[bytes] = Field(
503
default=None, description="""Required. Raw bytes."""
@@ -509,10 +506,7 @@ class Blob(_common.BaseModel):
509
506
510
507
511
508
class BlobDict(TypedDict, total=False):
512
513
514
515
516
517
data: Optional[bytes]
518
"""Required. Raw bytes."""
0 commit comments