import asyncio
from taskforceai import AsyncTaskForceAIClient
async def main():
async with AsyncTaskForceAIClient(api_key="your-api-key") as client:
result = await client.run_task("Summarize the latest updates")
print(result["result"])
asyncio.run(main())