Fixed naming convention of SDK usage examples

This commit is contained in:
Usman Sabuwala 2025-10-19 20:08:27 +05:30 committed by GitHub
parent 457101cb3d
commit 1585c0d651
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 36 additions and 36 deletions

View file

@ -31,7 +31,7 @@ pip install --pre supermemory
import os
from supermemory import Supermemory
client = supermemory(
client = Supermemory(
api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
)
@ -52,9 +52,9 @@ npm install supermemory
## Usage
```js
import supermemory from 'supermemory';
import Supermemory from 'supermemory';
const client = new supermemory({
const client = new Supermemory({
apiKey: process.env['SUPERMEMORY_API_KEY'], // This is the default and can be omitted
});