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 b53392a commit ac22598Copy full SHA for ac22598
README.md
@@ -93,14 +93,15 @@ pip install isaacus[aiohttp]
93
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
94
95
```python
96
+import os
97
import asyncio
98
from isaacus import DefaultAioHttpClient
99
from isaacus import AsyncIsaacus
100
101
102
async def main() -> None:
103
async with AsyncIsaacus(
- api_key="My API Key",
104
+ api_key=os.environ.get("ISAACUS_API_KEY"), # This is the default and can be omitted
105
http_client=DefaultAioHttpClient(),
106
) as client:
107
embedding_response = await client.embeddings.create(
0 commit comments