@t2000/cli 5.20.1 → 5.22.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
CHANGED
|
@@ -27789,7 +27789,8 @@ async function listModels(opts) {
|
|
|
27789
27789
|
contextWindow: m.context_window ?? m.context_length,
|
|
27790
27790
|
inputPer1M: m.pricing?.input_per_1m ?? m.pricing?.prompt,
|
|
27791
27791
|
outputPer1M: m.pricing?.output_per_1m ?? m.pricing?.completion,
|
|
27792
|
-
privacy: m.privacy ?? m.privacy_tier
|
|
27792
|
+
privacy: m.privacy ?? m.privacy_tier,
|
|
27793
|
+
reasoning: m.reasoning
|
|
27793
27794
|
}));
|
|
27794
27795
|
}
|
|
27795
27796
|
var RECEIPT_ANCHORED_SUFFIX = "::anchor::ReceiptAnchored";
|
|
@@ -32063,7 +32064,7 @@ function receiptLine(receiptId) {
|
|
|
32063
32064
|
printLine(import_picocolors9.default.dim(`\u{1F512} confidential \xB7 attested \xB7 receipt ${receiptId}`));
|
|
32064
32065
|
}
|
|
32065
32066
|
}
|
|
32066
|
-
var DEFAULT_MODEL = "
|
|
32067
|
+
var DEFAULT_MODEL = "openai/gpt-oss-120b";
|
|
32067
32068
|
function numOrUndef(v) {
|
|
32068
32069
|
if (v === void 0) {
|
|
32069
32070
|
return;
|
|
@@ -32134,7 +32135,8 @@ function registerChat(program3) {
|
|
|
32134
32135
|
for (const m of models) {
|
|
32135
32136
|
const price = m.inputPer1M != null ? ` \u2014 ${usd(m.inputPer1M)}/${usd(m.outputPer1M)} per 1M` : "";
|
|
32136
32137
|
const priv = m.privacy ? ` [${m.privacy}]` : "";
|
|
32137
|
-
|
|
32138
|
+
const think = m.reasoning ? import_picocolors9.default.dim(" \xB7 reasoning (deeper, slower)") : "";
|
|
32139
|
+
printLine(` ${m.id}${priv}${price}${think}`);
|
|
32138
32140
|
}
|
|
32139
32141
|
printBlank();
|
|
32140
32142
|
} catch (error) {
|
|
@@ -32575,7 +32577,7 @@ function registerMcpStart(parent) {
|
|
|
32575
32577
|
parent.command("start", { isDefault: true }).description("Start MCP server (stdio transport \u2014 for AI client integration)").option("--key <path>", "Custom wallet path (default ~/.t2000/wallet.key)").action(async (opts) => {
|
|
32576
32578
|
let mod3;
|
|
32577
32579
|
try {
|
|
32578
|
-
mod3 = await import("./dist-
|
|
32580
|
+
mod3 = await import("./dist-3T3V2562.js");
|
|
32579
32581
|
} catch {
|
|
32580
32582
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
32581
32583
|
process.exit(1);
|