Skip to content
Merged
Changes from 1 commit
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
5 changes: 2 additions & 3 deletions agentops/client/api/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"""

from typing import TypedDict
from pydantic import BaseModel


class AuthTokenResponse(TypedDict):
Expand All @@ -15,8 +14,8 @@ class AuthTokenResponse(TypedDict):
project_id: str


class UploadedObjectResponse(BaseModel):
class UploadedObjectResponse(TypedDict):
"""Response from the v4/objects/upload endpoint"""

url: str
size: int

Loading