We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6d583 commit 85c95a8Copy full SHA for 85c95a8
src/google/adk/artifacts/base_artifact_service.py
@@ -15,7 +15,6 @@
15
16
from abc import ABC
17
from abc import abstractmethod
18
-from datetime import datetime
19
from typing import Any
20
from typing import Optional
21
@@ -29,10 +28,6 @@ class ArtifactVersion(BaseModel):
29
28
30
version: int
31
"""The version number of the artifact."""
32
- create_time: float = Field(default_factory=lambda: datetime.now().timestamp())
33
- """The creation time of the artifact version."""
34
- mime_type: Optional[str] = None
35
- """The MIME type of the artifact version."""
36
canonical_uri: str
37
"""The canonical URI of the artifact version."""
38
custom_metadata: dict[str, Any] = Field(default_factory=dict)
0 commit comments