-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "traced-agent",
"version": "1.0.0",
"description": "A simple example of an Agent that can edit a document. Traced for Arize Phoenix.",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "node --import ./src/instrumentation.ts ./src/index.ts",
"d:up": "docker start arize-phoenix 2>/dev/null || docker run --pull=always -d --name arize-phoenix --rm -p 6006:6006 -e PHOENIX_SQL_DATABASE_URL=\"sqlite:///:memory:\" arizephoenix/phoenix:latest",
"d:down": "docker rm -f arize-phoenix"
},
"keywords": [
"ai",
"agent",
"tracing",
"arize",
"phoenix",
"typescript",
"nodejs"
],
"author": "Tony Powell <powell.anthonyd@proton.me>",
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "^2.0.62",
"@arizeai/openinference-core": "^2.0.0",
"@arizeai/phoenix-otel": "^0.3.0",
"@clack/core": "^0.5.0",
"@clack/prompts": "^0.11.0",
"ai": "^5.0.87",
"tiny-invariant": "^1.3.3",
"zod": "^4.1.12"
},
"pnpm": {
"overrides": {
"import-in-the-middle": "^2.0.0"
}
}
}