unbrowse 8.1.1 → 8.2.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/package.json +1 -1
- package/runtime/cli.js +69 -12
- package/vendor/kuri/darwin-arm64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/darwin-x64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/linux-arm64/libkuri_ffi.so +0 -0
- package/vendor/kuri/linux-x64/kuri +0 -0
- package/vendor/kuri/linux-x64/libkuri_ffi.so +0 -0
- package/vendor/kuri/manifest.json +7 -7
- package/vendor/kuri/win-x64/kuri.exe +0 -0
package/package.json
CHANGED
package/runtime/cli.js
CHANGED
|
@@ -1203,7 +1203,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
1203
1203
|
});
|
|
1204
1204
|
|
|
1205
1205
|
// .tmp-runtime-src/build-info.generated.ts
|
|
1206
|
-
var BUILD_RELEASE_VERSION = "8.
|
|
1206
|
+
var BUILD_RELEASE_VERSION = "8.2.0", BUILD_GIT_SHA = "03baeaff330e", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOC4yLjAiLCJnaXRfc2hhIjoiMDNiYWVhZmYzMzBlIiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUAwM2JhZWFmZjMzMGUiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTA1VDEyOjQyOjIyLjYyOVoifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "_d25RMrorMhZAMyf8RzJuilrQ_09DKZfX1FKqr_I0RU", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
1207
1207
|
|
|
1208
1208
|
// .tmp-runtime-src/version.ts
|
|
1209
1209
|
var exports_version = {};
|
|
@@ -71494,8 +71494,43 @@ var init_reflect = __esm(() => {
|
|
|
71494
71494
|
VALID_OUTCOMES = new Set(["achieved", "partial", "failed"]);
|
|
71495
71495
|
});
|
|
71496
71496
|
|
|
71497
|
+
// .tmp-runtime-src/compat/sqlite.ts
|
|
71498
|
+
function loadDriver() {
|
|
71499
|
+
if (cachedModule === undefined) {
|
|
71500
|
+
try {
|
|
71501
|
+
cachedModule = __require("node:sqlite");
|
|
71502
|
+
} catch {
|
|
71503
|
+
cachedModule = null;
|
|
71504
|
+
}
|
|
71505
|
+
}
|
|
71506
|
+
if (!cachedModule)
|
|
71507
|
+
throw new Error("node:sqlite unavailable (need Node >= 22.5)");
|
|
71508
|
+
return cachedModule;
|
|
71509
|
+
}
|
|
71510
|
+
|
|
71511
|
+
class Database {
|
|
71512
|
+
#db;
|
|
71513
|
+
constructor(uri, _options) {
|
|
71514
|
+
const path11 = uri.replace(/^file:/, "").replace(/\?.*$/, "");
|
|
71515
|
+
const { DatabaseSync } = loadDriver();
|
|
71516
|
+
this.#db = new DatabaseSync(path11, { readOnly: true });
|
|
71517
|
+
}
|
|
71518
|
+
query(sql) {
|
|
71519
|
+
const stmt = this.#db.prepare(sql);
|
|
71520
|
+
return {
|
|
71521
|
+
all: () => stmt.all(),
|
|
71522
|
+
get: () => stmt.get()
|
|
71523
|
+
};
|
|
71524
|
+
}
|
|
71525
|
+
close() {
|
|
71526
|
+
try {
|
|
71527
|
+
this.#db.close();
|
|
71528
|
+
} catch {}
|
|
71529
|
+
}
|
|
71530
|
+
}
|
|
71531
|
+
var cachedModule;
|
|
71532
|
+
|
|
71497
71533
|
// .tmp-runtime-src/cli-v7/eval/auth-inventory-sources/chrome.ts
|
|
71498
|
-
import { Database } from "bun:sqlite";
|
|
71499
71534
|
import { existsSync as existsSync18, statSync as statSync4, copyFileSync as copyFileSync2, rmSync as rmSync2, mkdtempSync as mkdtempSync3 } from "fs";
|
|
71500
71535
|
import { join as join26 } from "path";
|
|
71501
71536
|
import { tmpdir as tmpdir3, homedir as homedir22 } from "os";
|
|
@@ -71695,7 +71730,6 @@ var CHROME_TIME_EPOCH_OFFSET_S = 11644473600, CHROME_EPOCH_US_TO_UNIX_S = (us) =
|
|
|
71695
71730
|
var init_chrome3 = () => {};
|
|
71696
71731
|
|
|
71697
71732
|
// .tmp-runtime-src/cli-v7/eval/auth-inventory-sources/firefox.ts
|
|
71698
|
-
import { Database as Database2 } from "bun:sqlite";
|
|
71699
71733
|
import { existsSync as existsSync19, statSync as statSync5, copyFileSync as copyFileSync3, rmSync as rmSync3, mkdtempSync as mkdtempSync4 } from "fs";
|
|
71700
71734
|
import { join as join27 } from "path";
|
|
71701
71735
|
import { tmpdir as tmpdir4, homedir as homedir23 } from "os";
|
|
@@ -71735,7 +71769,7 @@ function openRoSqlite2(path11) {
|
|
|
71735
71769
|
if (!existsSync19(path11))
|
|
71736
71770
|
return null;
|
|
71737
71771
|
try {
|
|
71738
|
-
const db = new
|
|
71772
|
+
const db = new Database(`file:${path11}?mode=ro&immutable=1`, { readonly: true });
|
|
71739
71773
|
db.query("SELECT 1").get();
|
|
71740
71774
|
return { db, cleanup: () => db.close() };
|
|
71741
71775
|
} catch {}
|
|
@@ -71744,7 +71778,7 @@ function openRoSqlite2(path11) {
|
|
|
71744
71778
|
tmpDir = mkdtempSync4(join27(tmpdir4(), "unbrowse-auth-inventory-ff-"));
|
|
71745
71779
|
const tmpPath = join27(tmpDir, "db.sqlite");
|
|
71746
71780
|
copyFileSync3(path11, tmpPath);
|
|
71747
|
-
const db = new
|
|
71781
|
+
const db = new Database(`file:${tmpPath}?mode=ro`, { readonly: true });
|
|
71748
71782
|
db.query("SELECT 1").get();
|
|
71749
71783
|
const dirToClean = tmpDir;
|
|
71750
71784
|
return {
|
|
@@ -116484,6 +116518,16 @@ function ledgerConfidenceCached(domain, endpointId, source) {
|
|
|
116484
116518
|
var ALPHA = 1, LEDGER_NEUTRAL = 0.5, MIN_EVIDENCE = 2, MAX_FILES = 20000, cached2 = null;
|
|
116485
116519
|
var init_ledger_confidence = () => {};
|
|
116486
116520
|
|
|
116521
|
+
// .tmp-runtime-src/ranking/signals/route-head.embedded.ts
|
|
116522
|
+
var EMBEDDED_HEAD;
|
|
116523
|
+
var init_route_head_embedded = __esm(() => {
|
|
116524
|
+
EMBEDDED_HEAD = {
|
|
116525
|
+
synthetic: false,
|
|
116526
|
+
sha: "d17682b1",
|
|
116527
|
+
weights: [1.1200965997667967, 0.41823099370352723, -0.050735737433559004, 0.1927777393969477, 0.4050125643874118, -0.21734279905651402, -0.6345948957610889, -0.2571752287184843, 0.10579109786705697, 0.20453078470309052, 0.18066430545378648, 0.07147131241900016, 0.16039569978961923, 0.6564429942699295, 0.7227396519256319, 0.22554514715123294, 0.05868174769765118, 0.16892107255698205, 0.5559571506267219, 0.30854150131843355, 0.17070226081126924, 0.4886356483787111, 0.8980884197492698, 1.2120375247355646, 0.6061413445481292, 2.657053860125323, 0.08070696815898479, 0.11176818488205248, 0.28987648384746983, 0.26828598277886473, 1.0385477152177371, 0.25913825239260224, 0.533419813456814, 0.37108036575013886, 0.059801152426983785, -0.04525989897645159, 0.11484721779034957, 0.39227471541204256, 0.373113102578078, -0.3300973716996794, 0.1819278499889721, 0.3576971866115904, -0.705422289498746, 0.042293515798585285, 0.4308326093667161, -0.011278471107523724, 0.42987365076245704, 0.015752489247034734, 0.028316387317525147, 0.4407636750362365, 0.02292853504018242, 0.327779921985032, 0.36616151505972155, -0.17603704022228644, 0.17536290088005704, 0.27229432120255675, 0.3537630275300333, 0.1486924463096809, 0.1204997474358961, 0.6226219656098081, 0.30002689767657087, 1.196052179777194, 0.14076883642802374, 1.0081885516488818, 0.22622772968686436, 0.2027245281637691, 0.1169706077858624, 0.23714261609291679, 1.1425311623230512, 0.057294454052019515, 0.4047068138994748, 0.30504088640042504, 0.13284526434346391, 0.07930194134374466, -0.06947240404749278, 0.29953767415778976, -0.41541464235329817, 2.7682716798869516, 0.17243329330305657, -0.2522962207616574, -0.36675098666176603, 0.4637224213941468, -0.4460922203475949, 0.1839840566332474, 0.3044186478340045, 0.1472780030109412, 0.6344324063673875, 0.21687721449088318, 0.4948002263342843, 0.16125567627641332, 0.30306127242645864, 0.18962251084373996, 0.10082219582550209, 0.0886401020569541, 0.06764244620037634, 0.5732643244260449, 0.7658276267179951, 0.20528335936008887, 0.08400955487495135, 0.32903077681478377, 0.10866241394720043, -0.17964538328654614, -0.08334135185318835, 0.5507211269639443, 0.16393893799199719, 0.3582149447766569, -0.25805969244564053, 0.16405171911599367, 0.1796509576548428, 0.057057419690701966, 0.44450417935158526, 1.1200645946797188, -0.4092490116739366, 0.06617566265472546, 0.23235144806972788, 0.5016455274405225, -0.06222727837650514, 1.2293712770311362, -1.4547323052702237, -0.058666708320716236, 0.8408613900636982, 0.39208408687774254, 0.08471690540579582, 0.10042019984697079, 0.10118391480812897, 0.14001725350425553, 0.5835486849937673, 0.6510280282123632, 0.3520574239140822, 0.18570684047450767, 0.3789199567748885, -0.036081253696780544, 0.05861626845002184, 0.33078017586720465, 0.06953265553669562, 0.761931570003965, 0.39668277715922995, 0.618127212320667, 0.4440672843049296, -0.25228885718033145, -0.07229793417126738, -0.49896895676886005, 0.31220073686255123, 0.06617870542275778, 0.8615659069437842, 0.4205415469495299, 0.3567244846398371, 0.19487901608957292, -0.14109505624067858, -0.0229686139534101, 0.034343727686340184, 0.19769174925461028, -0.07256763958402121, -0.27289973956471714, 0.12811667649943664, 0.15428945633345842, 0.058080663956402864, 0.5833201294852367, 0.10990303666084117, 0.6857724080013401, 0.15833087028811108, 0.17847213448760282, 0.040554512208768934, 0.4295248047941498, 0.1686376803800911, 0.04513107214379427, 1.937915836098097, 0.28936665940645034, 0.008957095316860238, 0.1236456987782376, -0.07651313112442097, 0.3418885453183374, 0.012745039156627792, 0.5172342425943761, -0.20987978098865928, 1.0179546914219884, 0.32973600450435664, 0.8940700873553001, 0.6416556602476343, 0.3704693094482301, 0.45318946415358435, 0.027336936263109277, -0.1227416906305913, 0.6723921026623033, 0.2829163551082087, 0.40917302508633435, 0.18620337175426657, -0.12967591840851317, -0.03472710965257511, 0.2068431976979246, 0.20742113457157754, 0.29793228779762915, 2.175773579958844, 0.22395245932312358, 0.035274853212874116, 0.28641804917283675, 0.12433114384745535, 0.47278414952230147, 0.31964992842585427, 0.4550331021036623, 0.16129195408671776, -0.04746301165388122, 0.338287112174231, 0.16544637669189893, 0.42018311566530003, 0.576878302939141, -0.17561292809328638, 0.27803713559349325, 0.1272967162748974, -0.3085779419575327, 0.1978853654754794, -0.06295499148669866, 0.31407724617786636, 0.16842371195868486, 0.11935551407417155, 0.2546277635165342, 0.3848773866668411, 0.29793682372035324, 1.0084109389494766, 0.08503169410496018, 0.4893164903003056, -0.07335437610918388, 0.41744140342480723, 0.10487380187323028, 0.0866162712260259, 0.881262968656498, 0.057202302849947845, 0.20287435233015363, 0.214183819614813, 0.1677360522097566, 0.1790302578930702, -0.1305160035613147, 0.2873829221886825, -0.8111537430141802, -0.08454923764697364, 0.1351273362895313, 0.16661283960284198, 0.8051399002935195, 0.5675334080312536, 0.7126338953707406, -0.07824945581382182, -0.00032037100917743796, -0.21630428597821433, 0.27191180275335236, 0.4973832930899585, 0.048594385914757045, -0.6094054393196837, 0.21894155143476648, 0.07277418646309815, 0.08873142342698738, 0.045901187321119995, -0.6412237213920763, -1.2834821269985102, 0.0752401801346363, -0.16279966393671577, 0.2521699130240661, 0.20527038679624815, -0.12422953391909461, 1.1922713130468068, 0.2774003129218227, 0.10251628675718844, 0.24439015586485502, 0.20793468245289556, -0.1914489372377641, 0.0003689215597665321, 0.2956165697299342, 0.3713504218300957, 0.42109030130437447, -0.4284979593741889, 0.49044962158843, 0.14248977003001856, 0.006279084896680073, 0.19878437168420007, 0.09303731683204844, -0.001393433740604027, 0.44783265778951575, 0.03784228660474333, 1.1361230709061834, -0.25238133444291605, 0.3271561082695792, 0.13765777599555562, 0.0870174069629033, 0.3083611986254937, -0.06886768381096357, 0.29085914244389005, 0.21569660837689794, -0.32864353066553353, 0.188030983268892, 0.4673182042413767, 0.18596084593055012, 0.1203552216164842, 0.09806655787866722, 0.28968543638813976, 0.018138065465624676, 0.5094853938466133, 0.15448778708719638, 0.1728731419470397, 0.5243419337091887, 0.5866203626691091, -0.03380444804437746, 0.24233858006440387, 0.1798923691954151, -0.024031748551537484, -4.398581494492908, 0.32503897092431955, 0.28585109356573346, 0.2117010129298193, 0.38135121872738104, 0.36906173050119784, -0.027149389119623293, -0.1551026277806414, -0.3848418693071509, 0.26772148665982654, 0.280108006659077, -0.16090322277584823, 0.2801216886353527, 0.22114822857430824, 0.3443258736273386, 0.1743554836824187, 0.19006908033624828, -0.11671231456926968, -0.2544552416189975, -0.38139193518667835, -0.33335026977079246, 0.5432152129503053, 0.27849761164614545, 0.3070528287605512, 0.4528719035128965, 0.2545421227942069, 0.2508092493399728, 0.11678981321228664, 0.7279033666344272, 0.23567676883627312, -0.04386917707444787, 0.33172702752552713, 0.5381775777803748, -0.1421742137895978, -0.0050312119196971395, 0.1321328947588634, 0.660050924627441, 1.083776552498708, 0.23532782725648246, -0.1460171351643626, -4.209505595424942, 0.30012331759093885, -0.12224137408101263, 0.11426530395905277, 0.20546444988905538, -0.4814285979836148, -0.21877264060590626, 0.11999911651383276, -0.22678853839658547, 0.6694247799740597, 0.28757748518744275, -4.233098901538919, 0.27484076686682574, 0.3191260013134374, -0.3805118523620955, 0.37380683491788047, 0.23055437661846545, 0.13743722653668508, 0.024576447336683238, -0.8371390736152015, -0.016393540214758823, 0.3275078278799076, 0.22575959784998456, 0.1731357767637859, -0.08910217199803735, 0.3008064775898294, 0.1378082455613981, 0.0636449303346482, -0.12493052686665723, -0.005781373549581614, 0.2102077822966723, -0.29204096757620773, 0.31282565241911653, 0.18144396545622798, 0.1918368257144177, 0.21378976178162745, 0.08603204237667317, 0.12129391683947137, 0.1436161834621002, 0.0525849735640036, 0.24453213115893443, -0.15074462700679878, 0.2545609824251321, -0.2605640439040263, 0.2687574392854397, 0.08149370977167501, 2.404867753264851, 0.362823335445375, 0.5237265968575882, 0.07596046673373248, 0.47230590165452946, -0.5136436921946178, 0.06163874790899973, 0.5198595651625347, -0.09192224554251348, 0.34551018213217277, -0.11430524774301136, 0.335291366709273, 0.35533121096153214, -0.07490313831411226, 0.20968339472720976, -0.27994120052653626, 0.22359688604811073, 0.2810748980142978, 0.2437538104503406, 0.09050403058418724, 0.32400325035201405, 0.43582190512004604, 0.019645240830224953, 0.45772846613068324, -0.20007349885769765, 0.09600632363536869, 0.35615927558302685, 0.9951341143428614, 0.6553387059849717, 0.07132382049971622, 0.7769197352253685, 2.33428615099164, 0.24068961013371729, 0.2234633726388554, 0.13003737876883237, 0.08606573398705505, -0.15722890503534923, 0.15445675854143068, 1.0781314021420796, 0.16243577417265254, 0.061070691953188865, 0.17846781082620658, 0.3731543269821168, 0.30257012250857496, 0.10291023472591099, 0.6258146381266063, 0.07430769222271738, 0.13445235130295144, 0.10570089488237537, 0.13725523957916996, 0.1603959115991587, 0.2571306167067404, -0.1745028548311662, 0.03080059677922741, 0.11544912707685417, 0.5793410907851075, 0.21793258878572344, 0.07063235348123328, 1.1547181829323634, 0.26433210812827107, -0.6126067591634289, 0.24878159942030398, 0.39429210384358737, -0.09751479207931459, 0.4528919930047382, 0.1667461414769645, 0.5311700520941142, 0.20664050992435273, 0.2715449135293421, -4.2421338611660655, 0.18817883365219865, 0.18861625586745276, 0.1436388665646141, 0.08262433965579333, -0.37067684330385603, 0.19366308400902163, 0.18452610838546188, 0.07848227184975919, 0.5692364176217481, 0.2580581546225737, 0.14574677414381934, 0.06345692822470807, 0.12470086132122735, 0.14867616088835406, 0.15475410383009153, 0.3729899643321509, 0.33294172073215633, -0.5310410571002124, 2.057408715413992, -0.05028850329154019, 0.029240853972407835, 0.25132090462368223, 0.10267617024578973, 0.5530375131110685, 0.1544630267927846, 0.19767093140233913, 0.1427588221997392, 0.042491584727291955, -0.25245651912247524, 0.6339734991575929, 0.05654136000119943, 0.20972209732784236, 0.11769261493672968, 0.180744390523938, -0.13484097866390785, 0.1295790360852356, 0.2154006626444704, 0.7531839693933485, 0.4391215359118616, 0.05882279852253341, 0.1444094744969262, 0.002267582400250067, 0.3342114900438467, 0.46253125229171826, -0.07924375241723366, 0.3142409973571223, 0.3181523062799099, 0.5316374634148091, 0.4880434222967484, 0.19689299012694855, 0.14566045492203844, 0.8785055275078053, 0.26316212038493736]
|
|
116528
|
+
};
|
|
116529
|
+
});
|
|
116530
|
+
|
|
116487
116531
|
// .tmp-runtime-src/ranking/signals/learned-confidence.ts
|
|
116488
116532
|
import { createHash as createHash31 } from "crypto";
|
|
116489
116533
|
import { existsSync as existsSync29, readFileSync as readFileSync19, statSync as statSync7 } from "fs";
|
|
@@ -116517,30 +116561,42 @@ function featurize(domain, endpoint, source, intent) {
|
|
|
116517
116561
|
function sigmoid(z) {
|
|
116518
116562
|
return 1 / (1 + Math.exp(-Math.max(-30, Math.min(30, z))));
|
|
116519
116563
|
}
|
|
116564
|
+
function embeddedHead() {
|
|
116565
|
+
const h = EMBEDDED_HEAD;
|
|
116566
|
+
if (!h || h.synthetic)
|
|
116567
|
+
return null;
|
|
116568
|
+
if (!Array.isArray(h.weights) || h.weights.length !== FEAT_DIM)
|
|
116569
|
+
return null;
|
|
116570
|
+
if (cached3 && lastPointer === "embedded" && cached3.sha === h.sha)
|
|
116571
|
+
return cached3;
|
|
116572
|
+
cached3 = { weights: h.weights, mtimeMs: 0, sha: h.sha || "embedded" };
|
|
116573
|
+
lastPointer = "embedded";
|
|
116574
|
+
return cached3;
|
|
116575
|
+
}
|
|
116520
116576
|
function loadHead() {
|
|
116521
116577
|
if (process.env.UNBROWSE_LEARNED_CONFIDENCE === "0")
|
|
116522
116578
|
return null;
|
|
116523
116579
|
const ptr = pointerPath();
|
|
116524
116580
|
try {
|
|
116525
116581
|
if (!existsSync29(ptr))
|
|
116526
|
-
return
|
|
116582
|
+
return embeddedHead();
|
|
116527
116583
|
const st = statSync7(ptr);
|
|
116528
116584
|
if (cached3 && lastPointer === ptr && cached3.mtimeMs === st.mtimeMs)
|
|
116529
116585
|
return cached3;
|
|
116530
116586
|
const meta = JSON.parse(readFileSync19(ptr, "utf8"));
|
|
116531
116587
|
const artName = meta.pointer;
|
|
116532
116588
|
if (!artName)
|
|
116533
|
-
return
|
|
116534
|
-
if (meta.synthetic && process.env.
|
|
116535
|
-
return
|
|
116589
|
+
return embeddedHead();
|
|
116590
|
+
if (meta.synthetic && process.env.UNBROWSE_RANKING_ALLOW_SYNTHETIC !== "1")
|
|
116591
|
+
return embeddedHead();
|
|
116536
116592
|
const art = JSON.parse(readFileSync19(join35(dirname7(ptr), artName), "utf8"));
|
|
116537
116593
|
if (!Array.isArray(art.weights) || art.weights.length !== FEAT_DIM)
|
|
116538
|
-
return
|
|
116594
|
+
return embeddedHead();
|
|
116539
116595
|
cached3 = { weights: art.weights, mtimeMs: st.mtimeMs, sha: meta.sha256_8 || "" };
|
|
116540
116596
|
lastPointer = ptr;
|
|
116541
116597
|
return cached3;
|
|
116542
116598
|
} catch {
|
|
116543
|
-
return
|
|
116599
|
+
return embeddedHead();
|
|
116544
116600
|
}
|
|
116545
116601
|
}
|
|
116546
116602
|
function learnedConfidence(domain, endpointId, source, intent) {
|
|
@@ -116565,6 +116621,7 @@ function routeConfidence(domain, endpointId, source, intent) {
|
|
|
116565
116621
|
var FEAT_DIM = 512, cached3 = null, lastPointer = "";
|
|
116566
116622
|
var init_learned_confidence = __esm(() => {
|
|
116567
116623
|
init_ledger_confidence();
|
|
116624
|
+
init_route_head_embedded();
|
|
116568
116625
|
});
|
|
116569
116626
|
|
|
116570
116627
|
// .tmp-runtime-src/auth/index.ts
|
|
@@ -147253,7 +147310,7 @@ function rankEndpoints(endpoints, intent, skillDomain, contextUrl, params) {
|
|
|
147253
147310
|
score -= 10;
|
|
147254
147311
|
if (ep.method === "WS" && ep.response_schema)
|
|
147255
147312
|
score += 3;
|
|
147256
|
-
score += (routeConfidence(skillDomain, ep.endpoint_id, ep.source) - LEDGER_NEUTRAL) * 80;
|
|
147313
|
+
score += (routeConfidence(skillDomain, ep.endpoint_id, ep.source, intent) - LEDGER_NEUTRAL) * 80;
|
|
147257
147314
|
if (skillDomain) {
|
|
147258
147315
|
try {
|
|
147259
147316
|
if (hostname2 === skillDomain || hostname2.endsWith(`.${skillDomain}`)) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"repo_url": "https://github.com/justrach/kuri.git",
|
|
3
3
|
"branch": "adding-extensions",
|
|
4
4
|
"source_sha": "8938f89f3d0c032bd19c59db0de4eadca18a1800",
|
|
5
|
-
"built_at": "2026-06-
|
|
5
|
+
"built_at": "2026-06-05T12:25:14.263Z",
|
|
6
6
|
"binaries": {
|
|
7
7
|
"darwin-arm64": {
|
|
8
8
|
"zig_target": "aarch64-macos",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
},
|
|
22
22
|
"linux-x64": {
|
|
23
23
|
"zig_target": "x86_64-linux",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "fcaa00ab871e9b89b86a65570f5a99e65d7865318bc7a06e8fa01a1063b21ef8"
|
|
25
25
|
},
|
|
26
26
|
"win-x64": {
|
|
27
27
|
"zig_target": "x86_64-windows-gnu",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "7ea6e3ed15959f86dac3bdba9fe2c4975d862646e110bea41d48914ff549ea5d"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"ffi": {
|
|
32
32
|
"darwin-arm64": {
|
|
33
33
|
"zig_target": "aarch64-macos",
|
|
34
34
|
"lib": "libkuri_ffi.dylib",
|
|
35
|
-
"sha256": "
|
|
35
|
+
"sha256": "0717da6ad3066c12d5dce2bbcf656b4339efb7666e9c4b2306d955dde0827041"
|
|
36
36
|
},
|
|
37
37
|
"darwin-x64": {
|
|
38
38
|
"zig_target": "x86_64-macos",
|
|
39
39
|
"lib": "libkuri_ffi.dylib",
|
|
40
|
-
"sha256": "
|
|
40
|
+
"sha256": "db830fab62f91e5728fe56c69699caa00efb6f6d13f4c45880d274481576686e"
|
|
41
41
|
},
|
|
42
42
|
"linux-arm64": {
|
|
43
43
|
"zig_target": "aarch64-linux",
|
|
44
44
|
"lib": "libkuri_ffi.so",
|
|
45
|
-
"sha256": "
|
|
45
|
+
"sha256": "8812e8d0d38996cbbcf14656086a675d086b474fb4509d345303f77fccb3e3fb"
|
|
46
46
|
},
|
|
47
47
|
"linux-x64": {
|
|
48
48
|
"zig_target": "x86_64-linux",
|
|
49
49
|
"lib": "libkuri_ffi.so",
|
|
50
|
-
"sha256": "
|
|
50
|
+
"sha256": "ecd86bf7c5f161569f0ae341b6ddb19d76200b26c212e6636b36cae968aefe82"
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}
|
|
Binary file
|