@visibe.ai/node 0.1.11 → 0.1.13
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 +16 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
# Visibe SDK for Node.js
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
**Observability for AI agents.** Track costs, performance, and errors across your entire AI stack — whether you're using LangChain, LangGraph, Vercel AI, Anthropic, AWS Bedrock, or direct OpenAI calls.
|
|
6
8
|
|
|
7
9
|
[](https://www.npmjs.com/package/@visibe.ai/node)
|
|
@@ -14,15 +16,21 @@
|
|
|
14
16
|
|
|
15
17
|
## 📦 Getting Started
|
|
16
18
|
|
|
17
|
-
###
|
|
19
|
+
### 1. Create an account
|
|
20
|
+
|
|
21
|
+
Sign up at **[app.visibe.ai](https://app.visibe.ai)** and create a project.
|
|
22
|
+
|
|
23
|
+
### 2. Get an API key
|
|
24
|
+
|
|
25
|
+
In your project, go to **Settings → API Keys** and generate a new key. It will look like `sk_live_...`.
|
|
26
|
+
|
|
27
|
+
### 3. Install the SDK
|
|
18
28
|
|
|
19
29
|
```bash
|
|
20
30
|
npm install @visibe.ai/node
|
|
21
31
|
```
|
|
22
32
|
|
|
23
|
-
###
|
|
24
|
-
|
|
25
|
-
Set your API key:
|
|
33
|
+
### 4. Set your API key
|
|
26
34
|
|
|
27
35
|
```bash
|
|
28
36
|
export VISIBE_API_KEY=sk_live_your_api_key_here
|
|
@@ -34,7 +42,7 @@ Or in a `.env` file:
|
|
|
34
42
|
VISIBE_API_KEY=sk_live_your_api_key_here
|
|
35
43
|
```
|
|
36
44
|
|
|
37
|
-
###
|
|
45
|
+
### 5. Instrument your app
|
|
38
46
|
|
|
39
47
|
```typescript
|
|
40
48
|
import { init } from '@visibe.ai/node'
|
|
@@ -320,8 +328,9 @@ await shutdown()
|
|
|
320
328
|
|
|
321
329
|
## 🔗 Resources
|
|
322
330
|
|
|
323
|
-
- [
|
|
324
|
-
- [
|
|
331
|
+
- [visibe.ai](https://visibe.ai) — Product website
|
|
332
|
+
- [app.visibe.ai](https://app.visibe.ai) — Dashboard (sign up, manage API keys, view traces)
|
|
333
|
+
- [npm Package](https://www.npmjs.com/package/@visibe.ai/node) — Latest version on npm
|
|
325
334
|
|
|
326
335
|
---
|
|
327
336
|
|
package/package.json
CHANGED