Skip to content

Commit 48d5fc8

Browse files
committed
Add the Arize Phonex
1 parent 9f85db6 commit 48d5fc8

55 files changed

Lines changed: 2012 additions & 1179 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,17 @@ jobs:
6969
-c oai-instance-name=${{ secrets.AZURE_OPENAI_API_INSTANCE_NAME }} \
7070
-c oai-api-key=${{ secrets.AZURE_OPENAI_API_KEY }} \
7171
-c oai-api-version=${{ vars.AZURE_OPENAI_API_VERSION }} \
72+
-c anthropic-api-key=${{ secrets.ANTHROPIC_API_KEY }} \
73+
-c claude-model=${{ vars.CLAUDE_MODEL }} \
74+
-c enabled-openinference-telemetry=${{ vars.ENABLED_OPENINFERENCE_TELEMETRY }} \
7275
-c langfuse-endpoint=${{ secrets.LANGFUSE_ENDPOINT }} \
7376
-c langfuse-public-key=${{ secrets.LANGFUSE_PUBLIC_KEY }} \
7477
-c langfuse-secret-key=${{ secrets.LANGFUSE_SECRET_KEY }} \
7578
-c langsmith-api-key=${{ secrets.LANGCHAIN_API_KEY }} \
7679
-c langsmith-project=${{ secrets.LANGCHAIN_PROJECT }} \
77-
-c anthropic-api-key=${{ secrets.ANTHROPIC_API_KEY }} \
78-
-c claude-model=${{ vars.CLAUDE_MODEL }}
80+
-c phoenix-api-key=${{ secrets.PHOENIX_API_KEY }} \
81+
-c phoenix-space-id=${{ vars.PHOENIX_SPACE_ID }} \
82+
-c otel-traces-endpoint=${{ vars.OTEL_EXPORTER_OTLP_TRACE_ENDPOINT }}
7983
8084
deploy-rag:
8185
# 同時実行すると CREATE_IN_PROGRESS や UPDATE_IN_PROGRESS 状態で cdk deploy を行う可能性があるため抑止する

agents/agent-langchain-nextjs/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
"lint-fix": "eslint --fix"
1111
},
1212
"dependencies": {
13-
"@ai-sdk/langchain": "^2.0.76",
14-
"@ai-sdk/react": "^3.0.73",
13+
"@ai-sdk/langchain": "^2.0.82",
14+
"@ai-sdk/react": "^3.0.79",
1515
"@arizeai/openinference-instrumentation-bedrock": "^0.4.8",
1616
"@arizeai/openinference-instrumentation-langchain": "^4.0.6",
1717
"@aws-lambda-powertools/logger": "^2.30.2",
18-
"@aws-sdk/credential-provider-node": "^3.972.5",
18+
"@aws-sdk/credential-provider-node": "^3.972.6",
1919
"@langchain/aws": "^1.2.2",
20-
"@langchain/classic": "^1.0.14",
20+
"@langchain/classic": "^1.0.15",
2121
"@langchain/core": "^1.1.19",
22-
"@langchain/langgraph": "^1.1.3",
22+
"@langchain/langgraph": "^1.1.4",
2323
"@langchain/mcp-adapters": "^1.1.2",
2424
"@opentelemetry/api": "^1.9.0",
2525
"@opentelemetry/api-logs": "^0.211.0",
@@ -58,16 +58,16 @@
5858
"@streamdown/math": "^1.0.1",
5959
"@streamdown/mermaid": "^1.0.1",
6060
"@xyflow/react": "^12.10.0",
61-
"ai": "^6.0.71",
61+
"ai": "^6.0.77",
6262
"ansi-to-react": "^6.2.6",
6363
"class-variance-authority": "^0.7.1",
6464
"clsx": "^2.1.1",
6565
"cmdk": "^1.1.1",
6666
"embla-carousel-react": "^8.6.0",
67-
"langchain": "^1.2.17",
67+
"langchain": "^1.2.18",
6868
"lucide-react": "^0.563.0",
6969
"media-chrome": "^4.17.2",
70-
"motion": "^12.32.0",
70+
"motion": "^12.33.0",
7171
"nanoid": "^5.1.6",
7272
"next": "^16.1.6",
7373
"react": "19.2.3",
@@ -77,7 +77,7 @@
7777
"streamdown": "^2.1.0",
7878
"tailwind-merge": "^3.4.0",
7979
"tokenlens": "^1.3.1",
80-
"use-stick-to-bottom": "^1.1.2"
80+
"use-stick-to-bottom": "^1.1.3"
8181
},
8282
"devDependencies": {
8383
"@eslint/compat": "^2.0.2",

agents/agent-langchain/eslint.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ export default defineConfig(
4040
parserOptions: {
4141
tsconfigRootDir: __dirname,
4242
project: ['./tsconfig-eslint.json'],
43-
projectService: false,
4443
},
4544
},
4645
extends: [

agents/agent-langchain/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/aws-lambda": "^8.10.160",
2121
"@types/node": "^24.10.11",
2222
"@vitest/eslint-plugin": "^1.6.6",
23-
"dotenv": "^17.2.3",
23+
"dotenv": "^17.2.4",
2424
"eslint": "^9.39.2",
2525
"eslint-import-resolver-typescript": "^4.4.4",
2626
"eslint-plugin-import": "^2.32.0",
@@ -37,13 +37,13 @@
3737
"@arizeai/openinference-instrumentation-bedrock": "^0.4.8",
3838
"@arizeai/openinference-instrumentation-langchain": "^4.0.6",
3939
"@aws-lambda-powertools/logger": "^2.30.2",
40-
"@aws-sdk/credential-provider-node": "^3.972.5",
40+
"@aws-sdk/credential-provider-node": "^3.972.6",
4141
"@langchain/aws": "^1.2.2",
42-
"@langchain/classic": "^1.0.14",
42+
"@langchain/classic": "^1.0.15",
4343
"@langchain/core": "^1.1.19",
44-
"@langchain/langgraph": "^1.1.3",
44+
"@langchain/langgraph": "^1.1.4",
4545
"@langchain/mcp-adapters": "^1.1.2",
46-
"@langchain/openai": "^1.2.4",
46+
"@langchain/openai": "^1.2.5",
4747
"@opentelemetry/api": "^1.9.0",
4848
"@opentelemetry/exporter-trace-otlp-http": "^0.210.0",
4949
"@opentelemetry/exporter-trace-otlp-proto": "^0.210.0",
@@ -55,7 +55,7 @@
5555
"@opentelemetry/semantic-conventions": "^1.39.0",
5656
"@smithy/eventstream-codec": "^4.2.8",
5757
"constructs": "^10.4.5",
58-
"langchain": "^1.2.17",
58+
"langchain": "^1.2.18",
5959
"source-map-support": "^0.5.21",
6060
"uuid": "^13.0.0",
6161
"zod": "^4.3.6"

agents/agent-mastra/eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default defineConfig(
6161
parserOptions: {
6262
project: ['./tsconfig.json'],
6363
tsconfigRootDir: __dirname,
64-
projectService: false,
6564
},
6665
},
6766
settings: {

agents/agent-mastra/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"license": "ISC",
1515
"type": "module",
1616
"dependencies": {
17-
"@ai-sdk/amazon-bedrock": "^4.0.48",
18-
"@ai-sdk/azure": "^3.0.26",
17+
"@ai-sdk/amazon-bedrock": "^4.0.51",
18+
"@ai-sdk/azure": "^3.0.27",
1919
"@mastra/core": "^0.24.9",
2020
"@mastra/libsql": "^0.16.4",
2121
"@mastra/loggers": "^0.10.19",

agents/agent-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"@stylistic/eslint-plugin": "^5.7.1",
2020
"@types/node": "^24.10.11",
2121
"@vitest/eslint-plugin": "^1.6.6",
22-
"dotenv": "^17.2.3",
23-
"esbuild": "^0.27.2",
22+
"dotenv": "^17.2.4",
23+
"esbuild": "^0.27.3",
2424
"eslint": "^9.39.2",
2525
"eslint-import-resolver-typescript": "^4.4.4",
2626
"eslint-plugin-import": "^2.32.0",
@@ -34,7 +34,7 @@
3434
"vitest": "^4.0.18"
3535
},
3636
"dependencies": {
37-
"@anthropic-ai/claude-agent-sdk": "^0.2.31",
37+
"@anthropic-ai/claude-agent-sdk": "^0.2.34",
3838
"source-map-support": "^0.5.21",
3939
"uuid": "^13.0.0",
4040
"zod": "^4.3.6"

agents/agent-strands/bin/cdk.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

agents/agent-strands/bin/cdk.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

agents/agent-strands/eslint.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ const eslintConfig: Config[] = defineConfig(
4747
tsconfigRootDir: __dirname,
4848
project: ['./tsconfig.json'],
4949
allowDefaultProject: ['./eslint.config.ts'],
50-
projectService: false,
5150
},
5251
},
5352
extends: [

0 commit comments

Comments
 (0)