New:Socket for Asana Is Now Available.Learn more
Get Started

@prismnetwork/agent-sdk

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prismnetwork/agent-sdk - npm Package Compare versions

Comparing version
0.7.1
to
0.7.2
+7
-1
attest.mjs

@@ -686,3 +686,9 @@ // Agent-side verification of a confidential generation: the checks an agent

try {
const query = model ? `?model=${encodeURIComponent(model)}` : "";
// Name the instance we need. The model runs on several, and the endpoint
// answers from whichever the upstream picks, so asking blind returns a
// sibling most of the time: same image, same compose, different RTMR3.
const params = new URLSearchParams();
if (model) params.set("model", model);
if (digest) params.set("keyset_digest", digest);
const query = params.size ? `?${params}` : "";
fetched = await getJson(fetchImpl, `${root}/v1/gpu-evidence${query}`, "the GPU evidence endpoint");

@@ -689,0 +695,0 @@ } catch (err) {

+1
-1
{
"name": "@prismnetwork/agent-sdk",
"version": "0.7.1",
"version": "0.7.2",
"description": "Headless GPU leasing and renter-encrypted storage on Prism Network for wallet-holding agents.",

@@ -5,0 +5,0 @@ "type": "module",