Hi.
Is there an asynchronous way to use the Content Moderation and Computer Vision clients? I need something similar to the Text Analytics client, where you can reference the TA client from azure.ai.textanalytics.aio. This predictably throws an exception:
async with cm_client:
screen = await cm_client.text_moderation.screen_text(text_content_type="text/plain", text_content=io.BytesIO(sentence.encode()),
language="eng", pii=True, classify=True
)
Same for the CV client. Is there a workaround or is this just not supported in these clients?
Thanks.