Julep also provides an async client for use with asyncio:
Copy
from julep import AsyncJulepasync def main(): client = AsyncJulep(api_key="your_julep_api_key") # Use the client asynchronously agent = await client.agents.create(name="My Agent")# Run with asyncioimport asyncioasyncio.run(main())