We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228a8d9 commit 4aaccf1Copy full SHA for 4aaccf1
1 file changed
README.md
@@ -83,15 +83,14 @@ pip install --pre supermemory[aiohttp]
83
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
84
85
```python
86
-import os
87
import asyncio
88
from supermemory import DefaultAioHttpClient
89
from supermemory import AsyncSupermemory
90
91
92
async def main() -> None:
93
async with AsyncSupermemory(
94
- api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
response = await client.search.execute(
0 commit comments