@infersec/conduit 1.39.0 → 1.39.2
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/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{start-BvzHFdA_.js → start-Dw1tdbuz.js} +11 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ const __dirname = __pathDirname(__filename);
|
|
|
6
6
|
|
|
7
7
|
import { parseArgs } from 'node:util';
|
|
8
8
|
import 'node:crypto';
|
|
9
|
-
import { a as asError, s as startInferenceAgent } from './start-
|
|
9
|
+
import { a as asError, s as startInferenceAgent } from './start-Dw1tdbuz.js';
|
|
10
10
|
import 'argon2';
|
|
11
11
|
import 'node:child_process';
|
|
12
12
|
import 'node:stream';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ const __filename = __fileURLToPath(import.meta.url);
|
|
|
5
5
|
const __dirname = __pathDirname(__filename);
|
|
6
6
|
|
|
7
7
|
import 'node:crypto';
|
|
8
|
-
import { s as startInferenceAgent, a as asError } from './start-
|
|
8
|
+
import { s as startInferenceAgent, a as asError } from './start-Dw1tdbuz.js';
|
|
9
9
|
import 'argon2';
|
|
10
10
|
import 'node:child_process';
|
|
11
11
|
import 'node:stream';
|
|
@@ -120051,6 +120051,17 @@ async function createApplication({ abortController, apiClient, configuration, lo
|
|
|
120051
120051
|
let machine = null;
|
|
120052
120052
|
try {
|
|
120053
120053
|
machine = await collectMachineMetadata();
|
|
120054
|
+
logger.info("Detected machine hardware", {
|
|
120055
|
+
gpuCount: machine.gpus.length
|
|
120056
|
+
});
|
|
120057
|
+
for (const gpu of machine.gpus) {
|
|
120058
|
+
logger.info("Detected GPU", {
|
|
120059
|
+
gpuBus: gpu.bus ?? undefined,
|
|
120060
|
+
gpuMemoryTotalBytes: gpu.memoryTotalBytes,
|
|
120061
|
+
gpuModel: gpu.model ?? undefined,
|
|
120062
|
+
gpuVendor: gpu.vendor ?? undefined
|
|
120063
|
+
});
|
|
120064
|
+
}
|
|
120054
120065
|
await apiClient.reportMachineMetadata({
|
|
120055
120066
|
machine
|
|
120056
120067
|
});
|