mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-04-29 20:20:09 +00:00
Fixed naming convention of SDK usage examples
This commit is contained in:
parent
457101cb3d
commit
1585c0d651
3 changed files with 36 additions and 36 deletions
|
|
@ -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
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue