@morphllm/morphsdk 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Production-ready tools for AI coding agents: Fast Apply (10,500 tokens/s)
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@morphllm/morphsdk)
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install @
|
|
10
|
+
npm install @morphllm/morphsdk
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Get your API key: [morphllm.com/dashboard/api-keys](https://morphllm.com/dashboard/api-keys)
|
|
@@ -19,7 +19,7 @@ export MORPH_API_KEY="sk-your-key-here"
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
21
21
|
```typescript
|
|
22
|
-
import { MorphClient } from '@
|
|
22
|
+
import { MorphClient } from '@morphllm/morphsdk';
|
|
23
23
|
|
|
24
24
|
const morph = new MorphClient({
|
|
25
25
|
apiKey: process.env.MORPH_API_KEY
|