Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions services/runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@
"dependencies": {
"@agentclientprotocol/claude-agent-acp": "0.58.1",
"@anthropic-ai/sdk": "0.111.0",
"@daytonaio/sdk": "^0.187.0",
"@daytona/sdk": "^0.197.0",
"@earendil-works/pi-coding-agent": "0.80.6",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/core": "1.28.0",
"@opentelemetry/exporter-trace-otlp-proto": "0.54.0",
"@opentelemetry/resources": "1.28.0",
"@opentelemetry/sdk-trace-base": "1.28.0",
"@opentelemetry/sdk-trace-node": "1.28.0",
"@opentelemetry/semantic-conventions": "1.28.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/core": "^2.9.0",
"@opentelemetry/resources": "^2.9.0",
"@opentelemetry/sdk-trace-base": "^2.9.0",
"@opentelemetry/sdk-trace-node": "^2.9.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.220.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"acp-http-client": "0.4.2",
"pi-acp": "0.0.29",
"sandbox-agent": "0.4.2",
"undici": "8.3.0"
"undici": "^8.7.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "0.23.1",
"tsx": "4.19.2",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
"vitest": "^4.1.10"
},
"pnpm": {
"onlyBuiltDependencies": [
Expand Down
2,241 changes: 1,032 additions & 1,209 deletions services/runner/pnpm-lock.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Daytona, DaytonaNotFoundError, type Sandbox } from "@daytonaio/sdk";
import { Daytona, DaytonaNotFoundError, type Sandbox } from "@daytona/sdk";
import { daytona, type DaytonaProviderOptions } from "sandbox-agent/daytona";

import type { RunnerDaytonaConfig } from "../../config/runner-config.ts";
Expand Down
10 changes: 5 additions & 5 deletions services/runner/src/tracing/otel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import {
} from "@opentelemetry/api";
import { ExportResultCode } from "@opentelemetry/core";
import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-proto";
import { Resource } from "@opentelemetry/resources";
import { resourceFromAttributes } from "@opentelemetry/resources";
import type {
ReadableSpan,
SpanExporter,
Expand Down Expand Up @@ -258,7 +258,7 @@ class TraceBatchProcessor implements SpanProcessor {
spans.push(span);
this.buffers.set(traceId, spans);
// No parent in this process => this is the local root and the trace is done.
if (!span.parentSpanId) {
if (!span.parentSpanContext) {
this.flush(traceId);
}
}
Expand Down Expand Up @@ -341,11 +341,11 @@ function ensureProvider(): void {
if (provider) return;
processor = new TraceBatchProcessor();
provider = new NodeTracerProvider({
resource: new Resource({
resource: resourceFromAttributes({
[ATTR_SERVICE_NAME]: process.env.OTEL_SERVICE_NAME || "pi-agent",
}),
spanProcessors: [processor],
});
provider.addSpanProcessor(processor);
provider.register();
}

Expand Down Expand Up @@ -380,7 +380,7 @@ function orderParentFirst(spans: ReadableSpan[]): ReadableSpan[] {
const childrenOf = new Map<string, ReadableSpan[]>();
const roots: ReadableSpan[] = [];
for (const s of spans) {
const parentId = s.parentSpanId;
const parentId = s.parentSpanContext?.spanId;
if (parentId && byId.has(parentId)) {
const list = childrenOf.get(parentId) ?? [];
list.push(s);
Expand Down
98 changes: 49 additions & 49 deletions web/ee/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,79 +19,79 @@
"types:watch": "tsc -w"
},
"dependencies": {
"@agenta/annotation": "workspace:../packages/agenta-annotation",
"@agenta/annotation-ui": "workspace:../packages/agenta-annotation-ui",
"@agenta/entities": "workspace:../packages/agenta-entities",
"@agenta/entity-ui": "workspace:../packages/agenta-entity-ui",
"@agenta/oss": "workspace:../oss",
"@agenta/playground": "workspace:../packages/agenta-playground",
"@agenta/playground-ui": "workspace:../packages/agenta-playground-ui",
"@agenta/shared": "workspace:../packages/agenta-shared",
"@agenta/ui": "workspace:../packages/agenta-ui",
"@agenta/annotation": "link:../packages/agenta-annotation",
"@agenta/annotation-ui": "link:../packages/agenta-annotation-ui",
"@agenta/entities": "link:../packages/agenta-entities",
"@agenta/entity-ui": "link:../packages/agenta-entity-ui",
"@agenta/oss": "link:../oss",
"@agenta/playground": "link:../packages/agenta-playground",
"@agenta/playground-ui": "link:../packages/agenta-playground-ui",
"@agenta/shared": "link:../packages/agenta-shared",
"@agenta/ui": "link:../packages/agenta-ui",
"@ant-design/colors": "^7.2.1",
"@ant-design/cssinjs": "^2.1.0",
"@ant-design/icons": "^6.1.0",
"@lexical/code-shiki": "^0.46.0",
"@lexical/history": "^0.46.0",
"@ant-design/cssinjs": "^2.1.2",
"@ant-design/icons": "^6.3.2",
"@lexical/code-shiki": "^0.47.0",
"@lexical/history": "^0.47.0",
"@phosphor-icons/react": "^2.1.10",
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/query-core": "^5.90.20",
"@tanstack/react-query": "^5.90.21",
"@reduxjs/toolkit": "^2.12.0",
"@tanstack/query-core": "^5.101.2",
"@tanstack/react-query": "^5.101.2",
"@tremor/react": "^3.18.7",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.23",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-resizable": "^3.0.7",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-resizable": "^3.0.8",
"@types/react-window": "^1.8.8",
"antd": "^6.1.3",
"autoprefixer": "10.4.20",
"axios": "1.16.0",
"classnames": "^2.3.2",
"antd": "^6.5.1",
"autoprefixer": "^10.5.3",
"axios": "^1.18.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"crisp-sdk-web": "^1.0.26",
"dayjs": "^1.11.20",
"dotenv": "^16.5.0",
"crisp-sdk-web": "^1.2.0",
"dayjs": "^1.11.21",
"dotenv": "^16.6.1",
"fast-deep-equal": "^3.1.3",
"immer": "^10.1.3",
"jotai": "^2.16.1",
"immer": "^10.2.0",
"jotai": "^2.20.2",
"jotai-eager": "^0.2.6",
"jotai-family": "^1.0.1",
"jotai-family": "^1.0.2",
"jotai-immer": "^0.4.3",
"jotai-scheduler": "^0.0.5",
"jotai-tanstack-query": "^0.11.0",
"js-yaml": "^4.1.1",
"jsonrepair": "^3.13.3",
"lodash": "^4.17.23",
"next": "15.5.18",
"postcss": "^8.5.10",
"posthog-js": "^1.223.3",
"js-yaml": "^4.3.0",
"jsonrepair": "^3.15.0",
"lodash": "^4.18.1",
"next": "15.5.20",
"postcss": "^8.5.19",
"posthog-js": "^1.400.1",
"rc-virtual-list": "^3.19.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-jss": "^10.10.0",
"react-resizable": "^3.0.5",
"react-resizable": "^3.2.0",
"react-virtuoso": "^4.18.10",
"react-window": "^1.8.11",
"recharts": "^3.1.0",
"recharts": "^3.9.2",
"shiki": "^3.23.0",
"supertokens-auth-react": "^0.51.0",
"supertokens-auth-react": "^0.51.2",
"swc-loader": "^0.2.7",
"swr": "^2.4.0",
"tailwindcss": "^3.4.4",
"swr": "^2.4.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"use-animation-frame": "^0.2.1",
"usehooks-ts": "^3.1.1",
"uuid": "^11.1.1",
"webpack": "^5.104.1"
"webpack": "^5.108.4"
},
"devDependencies": {
"@agenta/web-tests": "workspace:../tests",
"@agenta/web-tests": "link:../tests",
"@swc-jotai/debug-label": "^0.5.0",
"@swc-jotai/react-refresh": "^0.5.0",
"@types/node": "^20.19.20",
"@types/prismjs": "^1.26.5",
"node-mocks-http": "^1.17.2",
"tailwind-scrollbar": "^3"
"@types/node": "^20.19.43",
"@types/prismjs": "^1.26.6",
"node-mocks-http": "^1.18.0",
"tailwind-scrollbar": "^3.1.0"
}
}
Loading
Loading