Runpod Custom API request and rp_handler.py
I try to deploy a runpod worker with a network volume for ComfyUI. The handler should be able to process a minimal request and enhance it to a full-on comfyUI API request. Example Request:
this should be posted to the serverless endpoint. after this it should be going to the handler function as event and is processed there further. Unfortunately it get caught as Error by the get_job() function from the rp_job.py module of the runpod python library and throws a Error: . Is there a way to implement my idea in this way or should i try a other way or skip the error handling in the get_job() function?
Solution:Jump to solution
Payload needs to have everything within the
input
key.
```
{
"input": {}...3 Replies