-
Notifications
You must be signed in to change notification settings - Fork 1
Add Agent support to Python OOP SDK #691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| @@ -0,0 +1,67 @@ | |||
| """Agent resource class for asynchronous operations.""" | |||
|
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs smoke tests
|
@dino - FYI, I made a new branch from Jon's PR, and have added / fixed some
things there. We can safely consider this PR abandoned. (And adding tests
is one of the bits I've done --- although I'll def want feedback on whether
or not I've found all of the reasonable places / followed the existing test
style well. :)
…On Mon, Nov 24, 2025 at 11:53 AM Alexander Dines ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In src/runloop_api_client/sdk/async_agent.py
<#691 (comment)>
:
> @@ -0,0 +1,67 @@
+"""Agent resource class for asynchronous operations."""
+
needs smoke tests
—
Reply to this email directly, view it on GitHub
<#691 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BYWPRMBXKWPQQPMDWFZ6YHD36NO4PAVCNFSM6AAAAACM4HM3YWVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTKMBSGAYTQMRWG4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
fcaab24 to
3bf240b
Compare
| ) -> Agent: | ||
| """Create a new agent. | ||
| :param params: See :typeddict:`~runloop_api_client.sdk._types.SDKAgentCreateParams` for available parameters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not trying to overload this pr but would be great to have createFromNpmPackage(pkgname, ect), one for each type so the user doesn't have to figure out our weird format
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right! Good point. If it's quick, I'll do it here; if not I'll do as a follow-on PR
6cfd4c4 to
ea7b0b8
Compare
Forked from wall-rl's:
#683
Rebased to main, and added a few fixes