We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b9f74 commit 442b9fdCopy full SHA for 442b9fd
README.md
@@ -83,14 +83,15 @@ pip install 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(
- api_key="My API Key",
94
+ api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
response = await client.search.documents(
0 commit comments