Dockerless dev and deploy, async handler need to use async ?
handler.py in HelloWorld project, there is not 'async' before def handler(job): . But in serverless endpoint, there are Run and RunSync . So if I want to use async handler, Is it necessary to go like this ? Or am I misunderstanding something?
async def async_generator_handler(job): for i in range(5): output = f"Generated async token output {i}" yield output