We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0dae69 commit de0cde1Copy full SHA for de0cde1
README.md
@@ -87,14 +87,15 @@ pip install arcadepy[aiohttp]
87
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
88
89
```python
90
+import os
91
import asyncio
92
from arcadepy import DefaultAioHttpClient
93
from arcadepy import AsyncArcade
94
95
96
async def main() -> None:
97
async with AsyncArcade(
- api_key="My API Key",
98
+ api_key=os.environ.get("ARCADE_API_KEY"), # This is the default and can be omitted
99
http_client=DefaultAioHttpClient(),
100
) as client:
101
execute_tool_response = await client.tools.execute(
0 commit comments