Skip to content

Commit 395951c

Browse files
committed
adjust for class renames
1 parent fd5578c commit 395951c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/runloop_api_client/sdk/_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,5 @@ class SDKAgentCreateParams(AgentCreateParams, LongRequestOptions):
165165
pass
166166

167167

168-
class SDKAgentListParams(AgentListParams, RequestOptions):
168+
class SDKAgentListParams(AgentListParams, BaseRequestOptions):
169169
pass

src/runloop_api_client/sdk/agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing_extensions import Unpack, override
77

88
from ._types import (
9-
RequestOptions,
9+
BaseRequestOptions,
1010
)
1111
from .._client import Runloop
1212
from ..types.agent_view import AgentView
@@ -47,7 +47,7 @@ def id(self) -> str:
4747

4848
def get_info(
4949
self,
50-
**options: Unpack[RequestOptions],
50+
**options: Unpack[BaseRequestOptions],
5151
) -> AgentView:
5252
"""Retrieve the latest agent information.
5353

src/runloop_api_client/sdk/async_agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing_extensions import Unpack, override
77

88
from ._types import (
9-
RequestOptions,
9+
BaseRequestOptions,
1010
)
1111
from .._client import AsyncRunloop
1212
from ..types.agent_view import AgentView
@@ -47,7 +47,7 @@ def id(self) -> str:
4747

4848
async def get_info(
4949
self,
50-
**options: Unpack[RequestOptions],
50+
**options: Unpack[BaseRequestOptions],
5151
) -> AgentView:
5252
"""Retrieve the latest agent information.
5353

0 commit comments

Comments
 (0)