Skip to content

Commit fcaab24

Browse files
committed
adjust for class renames
1 parent 91f62c1 commit fcaab24

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/runloop_api_client/sdk/_types.py

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

152152

153-
class SDKAgentListParams(AgentListParams, RequestOptions):
153+
class SDKAgentListParams(AgentListParams, BaseRequestOptions):
154154
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)