The first async AI application most Python developers write looks like this:

import asyncio

from anthropic import AsyncAnthropic

client = AsyncAnthropic()

async def summarize(text: str) -> str: