
    tni                     `    d Z ddlZd Zedk    rej                            dei           dS dS )a   
This is the starting point for your serverless API.
It can be named anything you want, but needs to have the following:

- import runpod
- start function

To return an error, return a dictionary with the key "error" and the value being the error message.
    Nc                 n    | d         }|d         }t          |t                    sddiS |dz  dk    rdS dS )	az  
    Example function that returns True if the input is even, False otherwise.

    "job_input" will contain the input that was passed to the API along with some other metadata.
    The structure will look like this:
    {
        "id": "some-id",
        "input": {"number": 2}
    }

    Whatever is returned from this function will be returned to the user as the output.
    inputnumbererrorz)Silly human, you need to pass an integer.   r   TF)
isinstanceint)job	job_input
the_numbers      K/var/www/html/gpu-tools/venv/lib/python3.11/site-packages/tests/whatever.pyis_evenr      sO     GI8$Jj#&& FDEEA~t5    __main__handler)__doc__runpodr   __name__
serverlessstart r   r   <module>r      s`       4 z
Y011111 r   