Skip to content
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

Fix: is_generator logic #372

Closed
wants to merge 5 commits into from

Conversation

gabewillen
Copy link
Contributor

Fix the is_generator logic to allow passing a callable object as a handler.

# simple example
import runpod


class Handler:

    def __call__(self, job):
        for x in range(10):
            yield {"message": f"Hello, World! {x}"}


runpod.serverless.start(
    {
        "handler": Handler(),
    }
)

@gabewillen
Copy link
Contributor Author

Closing this as it's not absolutely necessary

@gabewillen gabewillen closed this Dec 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants