kontext-sdk 0.1.0 → 0.2.1
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/dist/index.d.mts +1379 -4
- package/dist/index.d.ts +1379 -4
- package/dist/index.js +2397 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2386 -99
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# kontext-sdk
|
|
2
2
|
|
|
3
3
|
Trust and compliance layer for agentic crypto workflows.
|
|
4
4
|
|
|
@@ -7,13 +7,13 @@ Kontext provides structured action logging, tamper-evident audit trails, trust s
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
10
|
+
npm install kontext-sdk
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
15
15
|
```typescript
|
|
16
|
-
import { Kontext } from '
|
|
16
|
+
import { Kontext } from 'kontext-sdk';
|
|
17
17
|
|
|
18
18
|
// Initialize in local mode (no API key needed)
|
|
19
19
|
const kontext = Kontext.init({
|