You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
21 lines
497 B
#!/usr/bin/env python
|
|
''' Contains the handler function that will be called by the serverless. '''
|
|
|
|
import runpod
|
|
|
|
# Load models into VRAM here so they can be warm between requests
|
|
|
|
|
|
def handler(event):
|
|
'''
|
|
This is the handler function that will be called by the serverless.
|
|
'''
|
|
print(event)
|
|
|
|
# do the things
|
|
|
|
# return the output that you want to be returned like pre-signed URLs to output artifacts
|
|
return "Hello World"
|
|
|
|
|
|
runpod.serverless.start({"handler": handler})
|
|
|