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
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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agentops"
version = "0.4.11"
version = "0.4.12"
authors = [
{ name="Alex Reibman", email="[email protected]" },
{ name="Shawn Qiu", email="[email protected]" },
Expand Down Expand Up @@ -59,7 +59,7 @@ test = [
# CI will fail because all tests will automatically pull this dependency group;
# we need a separate group specifically for integration tests which will run on pinned 3.1x
# ------------------------------------------------------------------------------------------------------------------------------------
# "crewai-tools @ git+https://github.com/crewAIInc/crewAI-tools.git@a14091abb24527c97ccfcc8539d529c8b4559a0f; python_version>='3.10'",
# "crewai-tools @ git+https://github.com/crewAIInc/crewAI-tools.git@a14091abb24527c97ccfcc8539d529c8b4559a0f; python_version>='3.10'",
# ------------------------------------------------------------------------------------------------------------------------------------
# ;;
"pytest-cov",
Expand Down
Loading