sentienceapi 0.92.2__py3-none-any.whl → 0.98.0__py3-none-any.whl

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.

Potentially problematic release.


This version of sentienceapi might be problematic. Click here for more details.

Files changed (64) hide show
  1. sentience/__init__.py +107 -2
  2. sentience/_extension_loader.py +156 -1
  3. sentience/action_executor.py +2 -0
  4. sentience/actions.py +354 -9
  5. sentience/agent.py +4 -0
  6. sentience/agent_runtime.py +840 -0
  7. sentience/asserts/__init__.py +70 -0
  8. sentience/asserts/expect.py +621 -0
  9. sentience/asserts/query.py +383 -0
  10. sentience/async_api.py +8 -1
  11. sentience/backends/__init__.py +137 -0
  12. sentience/backends/actions.py +372 -0
  13. sentience/backends/browser_use_adapter.py +241 -0
  14. sentience/backends/cdp_backend.py +393 -0
  15. sentience/backends/exceptions.py +211 -0
  16. sentience/backends/playwright_backend.py +194 -0
  17. sentience/backends/protocol.py +216 -0
  18. sentience/backends/sentience_context.py +469 -0
  19. sentience/backends/snapshot.py +483 -0
  20. sentience/browser.py +230 -74
  21. sentience/canonicalization.py +207 -0
  22. sentience/cloud_tracing.py +65 -24
  23. sentience/constants.py +6 -0
  24. sentience/cursor_policy.py +142 -0
  25. sentience/extension/content.js +35 -0
  26. sentience/extension/injected_api.js +310 -15
  27. sentience/extension/manifest.json +1 -1
  28. sentience/extension/pkg/sentience_core.d.ts +22 -22
  29. sentience/extension/pkg/sentience_core.js +192 -144
  30. sentience/extension/pkg/sentience_core_bg.wasm +0 -0
  31. sentience/extension/release.json +29 -29
  32. sentience/failure_artifacts.py +241 -0
  33. sentience/integrations/__init__.py +6 -0
  34. sentience/integrations/langchain/__init__.py +12 -0
  35. sentience/integrations/langchain/context.py +18 -0
  36. sentience/integrations/langchain/core.py +326 -0
  37. sentience/integrations/langchain/tools.py +180 -0
  38. sentience/integrations/models.py +46 -0
  39. sentience/integrations/pydanticai/__init__.py +15 -0
  40. sentience/integrations/pydanticai/deps.py +20 -0
  41. sentience/integrations/pydanticai/toolset.py +468 -0
  42. sentience/llm_provider.py +695 -18
  43. sentience/models.py +536 -3
  44. sentience/ordinal.py +280 -0
  45. sentience/query.py +66 -4
  46. sentience/schemas/trace_v1.json +27 -1
  47. sentience/snapshot.py +384 -93
  48. sentience/snapshot_diff.py +39 -54
  49. sentience/text_search.py +1 -0
  50. sentience/trace_event_builder.py +20 -1
  51. sentience/trace_indexing/indexer.py +3 -49
  52. sentience/tracer_factory.py +1 -3
  53. sentience/verification.py +618 -0
  54. sentience/visual_agent.py +3 -1
  55. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/METADATA +198 -40
  56. sentienceapi-0.98.0.dist-info/RECORD +92 -0
  57. sentience/utils.py +0 -296
  58. sentienceapi-0.92.2.dist-info/RECORD +0 -65
  59. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/WHEEL +0 -0
  60. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/entry_points.txt +0 -0
  61. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/licenses/LICENSE +0 -0
  62. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/licenses/LICENSE-APACHE +0 -0
  63. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/licenses/LICENSE-MIT +0 -0
  64. {sentienceapi-0.92.2.dist-info → sentienceapi-0.98.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,181 @@
1
- let wasm;
1
+ export function analyze_page(val) {
2
+ return takeObject(wasm.analyze_page(addHeapObject(val)));
3
+ }
4
+
5
+ export function analyze_page_with_options(val, options) {
6
+ return takeObject(wasm.analyze_page_with_options(addHeapObject(val), addHeapObject(options)));
7
+ }
8
+
9
+ export function decide_and_act(_raw_elements) {
10
+ wasm.decide_and_act(addHeapObject(_raw_elements));
11
+ }
12
+
13
+ export function prune_for_api(val) {
14
+ return takeObject(wasm.prune_for_api(addHeapObject(val)));
15
+ }
16
+
17
+ function __wbg_get_imports() {
18
+ const import0 = {
19
+ __proto__: null,
20
+ __wbg_Error_8c4e43fe74559d73: function(arg0, arg1) {
21
+ return addHeapObject(Error(getStringFromWasm0(arg0, arg1)));
22
+ },
23
+ __wbg_Number_04624de7d0e8332d: function(arg0) {
24
+ return Number(getObject(arg0));
25
+ },
26
+ __wbg___wbindgen_bigint_get_as_i64_8fcf4ce7f1ca72a2: function(arg0, arg1) {
27
+ const v = getObject(arg1), ret = "bigint" == typeof v ? v : void 0;
28
+ getDataViewMemory0().setBigInt64(arg0 + 8, isLikeNone(ret) ? BigInt(0) : ret, !0),
29
+ getDataViewMemory0().setInt32(arg0 + 0, !isLikeNone(ret), !0);
30
+ },
31
+ __wbg___wbindgen_boolean_get_bbbb1c18aa2f5e25: function(arg0) {
32
+ const v = getObject(arg0), ret = "boolean" == typeof v ? v : void 0;
33
+ return isLikeNone(ret) ? 16777215 : ret ? 1 : 0;
34
+ },
35
+ __wbg___wbindgen_debug_string_0bc8482c6e3508ae: function(arg0, arg1) {
36
+ const ptr1 = passStringToWasm0(debugString(getObject(arg1)), wasm.__wbindgen_export, wasm.__wbindgen_export2), len1 = WASM_VECTOR_LEN;
37
+ getDataViewMemory0().setInt32(arg0 + 4, len1, !0), getDataViewMemory0().setInt32(arg0 + 0, ptr1, !0);
38
+ },
39
+ __wbg___wbindgen_in_47fa6863be6f2f25: function(arg0, arg1) {
40
+ return getObject(arg0) in getObject(arg1);
41
+ },
42
+ __wbg___wbindgen_is_bigint_31b12575b56f32fc: function(arg0) {
43
+ return "bigint" == typeof getObject(arg0);
44
+ },
45
+ __wbg___wbindgen_is_function_0095a73b8b156f76: function(arg0) {
46
+ return "function" == typeof getObject(arg0);
47
+ },
48
+ __wbg___wbindgen_is_object_5ae8e5880f2c1fbd: function(arg0) {
49
+ const val = getObject(arg0);
50
+ return "object" == typeof val && null !== val;
51
+ },
52
+ __wbg___wbindgen_is_undefined_9e4d92534c42d778: function(arg0) {
53
+ return void 0 === getObject(arg0);
54
+ },
55
+ __wbg___wbindgen_jsval_eq_11888390b0186270: function(arg0, arg1) {
56
+ return getObject(arg0) === getObject(arg1);
57
+ },
58
+ __wbg___wbindgen_jsval_loose_eq_9dd77d8cd6671811: function(arg0, arg1) {
59
+ return getObject(arg0) == getObject(arg1);
60
+ },
61
+ __wbg___wbindgen_number_get_8ff4255516ccad3e: function(arg0, arg1) {
62
+ const obj = getObject(arg1), ret = "number" == typeof obj ? obj : void 0;
63
+ getDataViewMemory0().setFloat64(arg0 + 8, isLikeNone(ret) ? 0 : ret, !0), getDataViewMemory0().setInt32(arg0 + 0, !isLikeNone(ret), !0);
64
+ },
65
+ __wbg___wbindgen_string_get_72fb696202c56729: function(arg0, arg1) {
66
+ const obj = getObject(arg1), ret = "string" == typeof obj ? obj : void 0;
67
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2), len1 = WASM_VECTOR_LEN;
68
+ getDataViewMemory0().setInt32(arg0 + 4, len1, !0), getDataViewMemory0().setInt32(arg0 + 0, ptr1, !0);
69
+ },
70
+ __wbg___wbindgen_throw_be289d5034ed271b: function(arg0, arg1) {
71
+ throw new Error(getStringFromWasm0(arg0, arg1));
72
+ },
73
+ __wbg_call_389efe28435a9388: function() {
74
+ return handleError(function(arg0, arg1) {
75
+ return addHeapObject(getObject(arg0).call(getObject(arg1)));
76
+ }, arguments);
77
+ },
78
+ __wbg_done_57b39ecd9addfe81: function(arg0) {
79
+ return getObject(arg0).done;
80
+ },
81
+ __wbg_error_9a7fe3f932034cde: function(arg0) {},
82
+ __wbg_get_9b94d73e6221f75c: function(arg0, arg1) {
83
+ return addHeapObject(getObject(arg0)[arg1 >>> 0]);
84
+ },
85
+ __wbg_get_b3ed3ad4be2bc8ac: function() {
86
+ return handleError(function(arg0, arg1) {
87
+ return addHeapObject(Reflect.get(getObject(arg0), getObject(arg1)));
88
+ }, arguments);
89
+ },
90
+ __wbg_get_with_ref_key_1dc361bd10053bfe: function(arg0, arg1) {
91
+ return addHeapObject(getObject(arg0)[getObject(arg1)]);
92
+ },
93
+ __wbg_instanceof_ArrayBuffer_c367199e2fa2aa04: function(arg0) {
94
+ let result;
95
+ try {
96
+ result = getObject(arg0) instanceof ArrayBuffer;
97
+ } catch (_) {
98
+ result = !1;
99
+ }
100
+ return result;
101
+ },
102
+ __wbg_instanceof_Uint8Array_9b9075935c74707c: function(arg0) {
103
+ let result;
104
+ try {
105
+ result = getObject(arg0) instanceof Uint8Array;
106
+ } catch (_) {
107
+ result = !1;
108
+ }
109
+ return result;
110
+ },
111
+ __wbg_isArray_d314bb98fcf08331: function(arg0) {
112
+ return Array.isArray(getObject(arg0));
113
+ },
114
+ __wbg_isSafeInteger_bfbc7332a9768d2a: function(arg0) {
115
+ return Number.isSafeInteger(getObject(arg0));
116
+ },
117
+ __wbg_iterator_6ff6560ca1568e55: function() {
118
+ return addHeapObject(Symbol.iterator);
119
+ },
120
+ __wbg_js_click_element_2fe1e774f3d232c7: function(arg0) {
121
+ js_click_element(arg0);
122
+ },
123
+ __wbg_length_32ed9a279acd054c: function(arg0) {
124
+ return getObject(arg0).length;
125
+ },
126
+ __wbg_length_35a7bace40f36eac: function(arg0) {
127
+ return getObject(arg0).length;
128
+ },
129
+ __wbg_new_361308b2356cecd0: function() {
130
+ return addHeapObject(new Object);
131
+ },
132
+ __wbg_new_3eb36ae241fe6f44: function() {
133
+ return addHeapObject(new Array);
134
+ },
135
+ __wbg_new_dd2b680c8bf6ae29: function(arg0) {
136
+ return addHeapObject(new Uint8Array(getObject(arg0)));
137
+ },
138
+ __wbg_next_3482f54c49e8af19: function() {
139
+ return handleError(function(arg0) {
140
+ return addHeapObject(getObject(arg0).next());
141
+ }, arguments);
142
+ },
143
+ __wbg_next_418f80d8f5303233: function(arg0) {
144
+ return addHeapObject(getObject(arg0).next);
145
+ },
146
+ __wbg_prototypesetcall_bdcdcc5842e4d77d: function(arg0, arg1, arg2) {
147
+ Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
148
+ },
149
+ __wbg_set_3f1d0b984ed272ed: function(arg0, arg1, arg2) {
150
+ getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
151
+ },
152
+ __wbg_set_f43e577aea94465b: function(arg0, arg1, arg2) {
153
+ getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
154
+ },
155
+ __wbg_value_0546255b415e96c1: function(arg0) {
156
+ return addHeapObject(getObject(arg0).value);
157
+ },
158
+ __wbindgen_cast_0000000000000001: function(arg0) {
159
+ return addHeapObject(arg0);
160
+ },
161
+ __wbindgen_cast_0000000000000002: function(arg0, arg1) {
162
+ return addHeapObject(getStringFromWasm0(arg0, arg1));
163
+ },
164
+ __wbindgen_cast_0000000000000003: function(arg0) {
165
+ return addHeapObject(BigInt.asUintN(64, arg0));
166
+ },
167
+ __wbindgen_object_clone_ref: function(arg0) {
168
+ return addHeapObject(getObject(arg0));
169
+ },
170
+ __wbindgen_object_drop_ref: function(arg0) {
171
+ takeObject(arg0);
172
+ }
173
+ };
174
+ return {
175
+ __proto__: null,
176
+ "./sentience_core_bg.js": import0
177
+ };
178
+ }
2
179
 
3
180
  function addHeapObject(obj) {
4
181
  heap_next === heap.length && heap.push(heap.length + 1);
@@ -139,32 +316,27 @@ const cachedTextEncoder = new TextEncoder;
139
316
  };
140
317
  });
141
318
 
142
- let WASM_VECTOR_LEN = 0;
143
-
144
- export function analyze_page(val) {
145
- return takeObject(wasm.analyze_page(addHeapObject(val)));
146
- }
319
+ let wasmModule, wasm, WASM_VECTOR_LEN = 0;
147
320
 
148
- export function analyze_page_with_options(val, options) {
149
- return takeObject(wasm.analyze_page_with_options(addHeapObject(val), addHeapObject(options)));
150
- }
151
-
152
- export function decide_and_act(_raw_elements) {
153
- wasm.decide_and_act(addHeapObject(_raw_elements));
154
- }
155
-
156
- export function prune_for_api(val) {
157
- return takeObject(wasm.prune_for_api(addHeapObject(val)));
321
+ function __wbg_finalize_init(instance, module) {
322
+ return wasm = instance.exports, wasmModule = module, cachedDataViewMemory0 = null,
323
+ cachedUint8ArrayMemory0 = null, wasm;
158
324
  }
159
325
 
160
- const EXPECTED_RESPONSE_TYPES = new Set([ "basic", "cors", "default" ]);
161
-
162
326
  async function __wbg_load(module, imports) {
163
327
  if ("function" == typeof Response && module instanceof Response) {
164
328
  if ("function" == typeof WebAssembly.instantiateStreaming) try {
165
329
  return await WebAssembly.instantiateStreaming(module, imports);
166
330
  } catch (e) {
167
- if (!(module.ok && EXPECTED_RESPONSE_TYPES.has(module.type)) || "application/wasm" === module.headers.get("Content-Type")) throw e;
331
+ if (!(module.ok && function(type) {
332
+ switch (type) {
333
+ case "basic":
334
+ case "cors":
335
+ case "default":
336
+ return !0;
337
+ }
338
+ return !1;
339
+ }(module.type)) || "application/wasm" === module.headers.get("Content-Type")) throw e;
168
340
  }
169
341
  const bytes = await module.arrayBuffer();
170
342
  return await WebAssembly.instantiate(bytes, imports);
@@ -178,128 +350,6 @@ async function __wbg_load(module, imports) {
178
350
  }
179
351
  }
180
352
 
181
- function __wbg_get_imports() {
182
- const imports = {
183
- wbg: {}
184
- };
185
- return imports.wbg.__wbg_Error_52673b7de5a0ca89 = function(arg0, arg1) {
186
- return addHeapObject(Error(getStringFromWasm0(arg0, arg1)));
187
- }, imports.wbg.__wbg_Number_2d1dcfcf4ec51736 = function(arg0) {
188
- return Number(getObject(arg0));
189
- }, imports.wbg.__wbg___wbindgen_bigint_get_as_i64_6e32f5e6aff02e1d = function(arg0, arg1) {
190
- const v = getObject(arg1), ret = "bigint" == typeof v ? v : void 0;
191
- getDataViewMemory0().setBigInt64(arg0 + 8, isLikeNone(ret) ? BigInt(0) : ret, !0),
192
- getDataViewMemory0().setInt32(arg0 + 0, !isLikeNone(ret), !0);
193
- }, imports.wbg.__wbg___wbindgen_boolean_get_dea25b33882b895b = function(arg0) {
194
- const v = getObject(arg0), ret = "boolean" == typeof v ? v : void 0;
195
- return isLikeNone(ret) ? 16777215 : ret ? 1 : 0;
196
- }, imports.wbg.__wbg___wbindgen_debug_string_adfb662ae34724b6 = function(arg0, arg1) {
197
- const ptr1 = passStringToWasm0(debugString(getObject(arg1)), wasm.__wbindgen_export, wasm.__wbindgen_export2), len1 = WASM_VECTOR_LEN;
198
- getDataViewMemory0().setInt32(arg0 + 4, len1, !0), getDataViewMemory0().setInt32(arg0 + 0, ptr1, !0);
199
- }, imports.wbg.__wbg___wbindgen_in_0d3e1e8f0c669317 = function(arg0, arg1) {
200
- return getObject(arg0) in getObject(arg1);
201
- }, imports.wbg.__wbg___wbindgen_is_bigint_0e1a2e3f55cfae27 = function(arg0) {
202
- return "bigint" == typeof getObject(arg0);
203
- }, imports.wbg.__wbg___wbindgen_is_function_8d400b8b1af978cd = function(arg0) {
204
- return "function" == typeof getObject(arg0);
205
- }, imports.wbg.__wbg___wbindgen_is_object_ce774f3490692386 = function(arg0) {
206
- const val = getObject(arg0);
207
- return "object" == typeof val && null !== val;
208
- }, imports.wbg.__wbg___wbindgen_is_undefined_f6b95eab589e0269 = function(arg0) {
209
- return void 0 === getObject(arg0);
210
- }, imports.wbg.__wbg___wbindgen_jsval_eq_b6101cc9cef1fe36 = function(arg0, arg1) {
211
- return getObject(arg0) === getObject(arg1);
212
- }, imports.wbg.__wbg___wbindgen_jsval_loose_eq_766057600fdd1b0d = function(arg0, arg1) {
213
- return getObject(arg0) == getObject(arg1);
214
- }, imports.wbg.__wbg___wbindgen_number_get_9619185a74197f95 = function(arg0, arg1) {
215
- const obj = getObject(arg1), ret = "number" == typeof obj ? obj : void 0;
216
- getDataViewMemory0().setFloat64(arg0 + 8, isLikeNone(ret) ? 0 : ret, !0), getDataViewMemory0().setInt32(arg0 + 0, !isLikeNone(ret), !0);
217
- }, imports.wbg.__wbg___wbindgen_string_get_a2a31e16edf96e42 = function(arg0, arg1) {
218
- const obj = getObject(arg1), ret = "string" == typeof obj ? obj : void 0;
219
- var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2), len1 = WASM_VECTOR_LEN;
220
- getDataViewMemory0().setInt32(arg0 + 4, len1, !0), getDataViewMemory0().setInt32(arg0 + 0, ptr1, !0);
221
- }, imports.wbg.__wbg___wbindgen_throw_dd24417ed36fc46e = function(arg0, arg1) {
222
- throw new Error(getStringFromWasm0(arg0, arg1));
223
- }, imports.wbg.__wbg_call_abb4ff46ce38be40 = function() {
224
- return handleError(function(arg0, arg1) {
225
- return addHeapObject(getObject(arg0).call(getObject(arg1)));
226
- }, arguments);
227
- }, imports.wbg.__wbg_done_62ea16af4ce34b24 = function(arg0) {
228
- return getObject(arg0).done;
229
- }, imports.wbg.__wbg_error_7bc7d576a6aaf855 = function(arg0) {}, imports.wbg.__wbg_get_6b7bd52aca3f9671 = function(arg0, arg1) {
230
- return addHeapObject(getObject(arg0)[arg1 >>> 0]);
231
- }, imports.wbg.__wbg_get_af9dab7e9603ea93 = function() {
232
- return handleError(function(arg0, arg1) {
233
- return addHeapObject(Reflect.get(getObject(arg0), getObject(arg1)));
234
- }, arguments);
235
- }, imports.wbg.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
236
- return addHeapObject(getObject(arg0)[getObject(arg1)]);
237
- }, imports.wbg.__wbg_instanceof_ArrayBuffer_f3320d2419cd0355 = function(arg0) {
238
- let result;
239
- try {
240
- result = getObject(arg0) instanceof ArrayBuffer;
241
- } catch (_) {
242
- result = !1;
243
- }
244
- return result;
245
- }, imports.wbg.__wbg_instanceof_Uint8Array_da54ccc9d3e09434 = function(arg0) {
246
- let result;
247
- try {
248
- result = getObject(arg0) instanceof Uint8Array;
249
- } catch (_) {
250
- result = !1;
251
- }
252
- return result;
253
- }, imports.wbg.__wbg_isArray_51fd9e6422c0a395 = function(arg0) {
254
- return Array.isArray(getObject(arg0));
255
- }, imports.wbg.__wbg_isSafeInteger_ae7d3f054d55fa16 = function(arg0) {
256
- return Number.isSafeInteger(getObject(arg0));
257
- }, imports.wbg.__wbg_iterator_27b7c8b35ab3e86b = function() {
258
- return addHeapObject(Symbol.iterator);
259
- }, imports.wbg.__wbg_js_click_element_2fe1e774f3d232c7 = function(arg0) {
260
- js_click_element(arg0);
261
- }, imports.wbg.__wbg_length_22ac23eaec9d8053 = function(arg0) {
262
- return getObject(arg0).length;
263
- }, imports.wbg.__wbg_length_d45040a40c570362 = function(arg0) {
264
- return getObject(arg0).length;
265
- }, imports.wbg.__wbg_new_1ba21ce319a06297 = function() {
266
- return addHeapObject(new Object);
267
- }, imports.wbg.__wbg_new_25f239778d6112b9 = function() {
268
- return addHeapObject(new Array);
269
- }, imports.wbg.__wbg_new_6421f6084cc5bc5a = function(arg0) {
270
- return addHeapObject(new Uint8Array(getObject(arg0)));
271
- }, imports.wbg.__wbg_next_138a17bbf04e926c = function(arg0) {
272
- return addHeapObject(getObject(arg0).next);
273
- }, imports.wbg.__wbg_next_3cfe5c0fe2a4cc53 = function() {
274
- return handleError(function(arg0) {
275
- return addHeapObject(getObject(arg0).next());
276
- }, arguments);
277
- }, imports.wbg.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
278
- Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
279
- }, imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
280
- getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
281
- }, imports.wbg.__wbg_set_7df433eea03a5c14 = function(arg0, arg1, arg2) {
282
- getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
283
- }, imports.wbg.__wbg_value_57b7b035e117f7ee = function(arg0) {
284
- return addHeapObject(getObject(arg0).value);
285
- }, imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
286
- return addHeapObject(getStringFromWasm0(arg0, arg1));
287
- }, imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
288
- return addHeapObject(BigInt.asUintN(64, arg0));
289
- }, imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
290
- return addHeapObject(arg0);
291
- }, imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
292
- return addHeapObject(getObject(arg0));
293
- }, imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
294
- takeObject(arg0);
295
- }, imports;
296
- }
297
-
298
- function __wbg_finalize_init(instance, module) {
299
- return wasm = instance.exports, __wbg_init.__wbindgen_wasm_module = module, cachedDataViewMemory0 = null,
300
- cachedUint8ArrayMemory0 = null, wasm;
301
- }
302
-
303
353
  function initSync(module) {
304
354
  if (void 0 !== wasm) return wasm;
305
355
  void 0 !== module && Object.getPrototypeOf(module) === Object.prototype && ({module: module} = module);
@@ -318,6 +368,4 @@ async function __wbg_init(module_or_path) {
318
368
  return __wbg_finalize_init(instance, module);
319
369
  }
320
370
 
321
- export { initSync };
322
-
323
- export default __wbg_init;
371
+ export { initSync, __wbg_init as default };
@@ -1,9 +1,9 @@
1
1
  {
2
- "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/274400382",
3
- "assets_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/274400382/assets",
4
- "upload_url": "https://uploads.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/274400382/assets{?name,label}",
5
- "html_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/tag/v2.2.0",
6
- "id": 274400382,
2
+ "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/277802850",
3
+ "assets_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/277802850/assets",
4
+ "upload_url": "https://uploads.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/277802850/assets{?name,label}",
5
+ "html_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/tag/v2.7.0",
6
+ "id": 277802850,
7
7
  "author": {
8
8
  "login": "rcholic",
9
9
  "id": 135060,
@@ -25,21 +25,21 @@
25
25
  "user_view_type": "public",
26
26
  "site_admin": false
27
27
  },
28
- "node_id": "RE_kwDOQshiJ84QWwR-",
29
- "tag_name": "v2.2.0",
28
+ "node_id": "RE_kwDOQshiJ84Qju9i",
29
+ "tag_name": "v2.7.0",
30
30
  "target_commitish": "main",
31
- "name": "Release v2.2.0",
31
+ "name": "Release v2.7.0",
32
32
  "draft": false,
33
33
  "immutable": false,
34
34
  "prerelease": false,
35
- "created_at": "2026-01-06T03:10:35Z",
36
- "updated_at": "2026-01-06T03:16:45Z",
37
- "published_at": "2026-01-06T03:16:10Z",
35
+ "created_at": "2026-01-19T05:08:35Z",
36
+ "updated_at": "2026-01-19T05:09:41Z",
37
+ "published_at": "2026-01-19T05:09:31Z",
38
38
  "assets": [
39
39
  {
40
- "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/assets/336823100",
41
- "id": 336823100,
42
- "node_id": "RA_kwDOQshiJ84UE4M8",
40
+ "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/assets/342599449",
41
+ "id": 342599449,
42
+ "node_id": "RA_kwDOQshiJ84Ua6cZ",
43
43
  "name": "extension-files.tar.gz",
44
44
  "label": "",
45
45
  "uploader": {
@@ -65,17 +65,17 @@
65
65
  },
66
66
  "content_type": "application/gzip",
67
67
  "state": "uploaded",
68
- "size": 72250,
69
- "digest": "sha256:adb68bd89b417f23f32c029c6cf045cc3677588e6a7760b7c8d0deb7e2601dd1",
68
+ "size": 79222,
69
+ "digest": "sha256:e0cad96e20e539d62a4777f1c5baedb1c8bd02cd26a8e38f7c1b9c804325f068",
70
70
  "download_count": 0,
71
- "created_at": "2026-01-06T03:16:44Z",
72
- "updated_at": "2026-01-06T03:16:45Z",
73
- "browser_download_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/download/v2.2.0/extension-files.tar.gz"
71
+ "created_at": "2026-01-19T05:09:41Z",
72
+ "updated_at": "2026-01-19T05:09:41Z",
73
+ "browser_download_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/download/v2.7.0/extension-files.tar.gz"
74
74
  },
75
75
  {
76
- "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/assets/336823099",
77
- "id": 336823099,
78
- "node_id": "RA_kwDOQshiJ84UE4M7",
76
+ "url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/assets/342599448",
77
+ "id": 342599448,
78
+ "node_id": "RA_kwDOQshiJ84Ua6cY",
79
79
  "name": "extension-package.zip",
80
80
  "label": "",
81
81
  "uploader": {
@@ -101,15 +101,15 @@
101
101
  },
102
102
  "content_type": "application/zip",
103
103
  "state": "uploaded",
104
- "size": 73962,
105
- "digest": "sha256:7483812c016842fb02add2d6c8d887e321cb9eb89030fee016cf4ea9f812f4bf",
104
+ "size": 80692,
105
+ "digest": "sha256:83de4c4c54f401fc6404c27ef01a9205cf8e3566e81f62a7bc08f7103a2b0cc5",
106
106
  "download_count": 0,
107
- "created_at": "2026-01-06T03:16:44Z",
108
- "updated_at": "2026-01-06T03:16:45Z",
109
- "browser_download_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/download/v2.2.0/extension-package.zip"
107
+ "created_at": "2026-01-19T05:09:41Z",
108
+ "updated_at": "2026-01-19T05:09:41Z",
109
+ "browser_download_url": "https://github.com/SentienceAPI/Sentience-Geometry-Chrome-Extension/releases/download/v2.7.0/extension-package.zip"
110
110
  }
111
111
  ],
112
- "tarball_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/tarball/v2.2.0",
113
- "zipball_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/zipball/v2.2.0",
112
+ "tarball_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/tarball/v2.7.0",
113
+ "zipball_url": "https://api.github.com/repos/SentienceAPI/Sentience-Geometry-Chrome-Extension/zipball/v2.7.0",
114
114
  "body": ""
115
115
  }