antigravity-usage 0.2.2 → 0.2.3
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 +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1397,6 +1397,7 @@ function statusCommand(options = {}) {
|
|
|
1397
1397
|
}
|
|
1398
1398
|
|
|
1399
1399
|
// src/google/cloudcode.ts
|
|
1400
|
+
import { randomUUID } from "crypto";
|
|
1400
1401
|
var BASE_URLS = [
|
|
1401
1402
|
"https://cloudcode-pa.googleapis.com",
|
|
1402
1403
|
"https://daily-cloudcode-pa.sandbox.googleapis.com"
|
|
@@ -1586,8 +1587,8 @@ var CloudCodeClient = class {
|
|
|
1586
1587
|
} catch (err) {
|
|
1587
1588
|
debug("cloudcode", "Warmup failed (continuing anyway):", err);
|
|
1588
1589
|
}
|
|
1589
|
-
const requestId =
|
|
1590
|
-
const sessionId =
|
|
1590
|
+
const requestId = randomUUID();
|
|
1591
|
+
const sessionId = randomUUID();
|
|
1591
1592
|
const systemInstruction = {
|
|
1592
1593
|
parts: [{ text: SYSTEM_PROMPT }]
|
|
1593
1594
|
};
|