@pinta-ai/pinta-gemini 0.3.0 → 0.4.0
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/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -130,6 +130,7 @@ function asString(v) {
|
|
|
130
130
|
|
|
131
131
|
// src/core/guard.ts
|
|
132
132
|
var TIMEOUT_MS = 50;
|
|
133
|
+
var GUARD_UA = "pinta-gemini/0.4.0";
|
|
133
134
|
function shellCommandText(toolInput) {
|
|
134
135
|
if (!toolInput || typeof toolInput !== "object" || Array.isArray(toolInput)) return void 0;
|
|
135
136
|
const o = toolInput;
|
|
@@ -155,6 +156,7 @@ async function evaluateGuard(input, endpoint, relayToken) {
|
|
|
155
156
|
method: "POST",
|
|
156
157
|
headers: {
|
|
157
158
|
"content-type": "application/json",
|
|
159
|
+
"user-agent": GUARD_UA,
|
|
158
160
|
"x-pinta-relay-token": relayToken ?? process.env.PINTA_RELAY_TOKEN ?? ""
|
|
159
161
|
},
|
|
160
162
|
body: JSON.stringify({ input })
|
package/package.json
CHANGED