clawtamer 0.5.0 → 0.7.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/bin/clawtamer.js +12 -8
- package/package.json +1 -1
package/bin/clawtamer.js
CHANGED
|
@@ -606,7 +606,7 @@ async function cmdInit(flags) {
|
|
|
606
606
|
const accountMode = modeFromFlags || (canPromptInteractively() ? await promptAccountMode() : "new");
|
|
607
607
|
const emailPrompt =
|
|
608
608
|
accountMode === "existing"
|
|
609
|
-
? "Please enter your account email (
|
|
609
|
+
? "Please enter your account email (use same email you used to signup): "
|
|
610
610
|
: "Please enter your account email (you will use this to access your dashboard): ";
|
|
611
611
|
const emailInput = flags["--email"] || (await promptValidated(emailPrompt, (value) => {
|
|
612
612
|
try {
|
|
@@ -626,7 +626,7 @@ async function cmdInit(flags) {
|
|
|
626
626
|
let resolvedProxyKey = explicitProxyKey;
|
|
627
627
|
if (!resolvedProxyKey && accountMode === "existing" && canPromptInteractively()) {
|
|
628
628
|
resolvedProxyKey = await promptProxyKey(
|
|
629
|
-
"Please enter your existing Clawtamer API key (sk-cltm-...)
|
|
629
|
+
"Please enter your existing Clawtamer API key (sk-cltm-...) (grab it from https://www.clawtamer.ai/dashboard): "
|
|
630
630
|
);
|
|
631
631
|
}
|
|
632
632
|
if (!resolvedUpstreamKey && canPromptInteractively()) {
|
|
@@ -661,7 +661,7 @@ async function cmdInit(flags) {
|
|
|
661
661
|
if (canPromptInteractively()) {
|
|
662
662
|
console.warn(warn("This email already exists. Switching to existing-user flow."));
|
|
663
663
|
proxyKey = await promptProxyKey(
|
|
664
|
-
"Please enter your existing Clawtamer API key (sk-cltm-...)
|
|
664
|
+
"Please enter your existing Clawtamer API key (sk-cltm-...) (grab it from https://www.clawtamer.ai/dashboard): "
|
|
665
665
|
);
|
|
666
666
|
logStep(flags, "Existing account key captured.");
|
|
667
667
|
} else {
|
|
@@ -686,6 +686,7 @@ async function cmdInit(flags) {
|
|
|
686
686
|
}
|
|
687
687
|
|
|
688
688
|
const dryRun = Boolean(flags["--dry-run"]);
|
|
689
|
+
let showTrackSavingsTips = false;
|
|
689
690
|
|
|
690
691
|
if (resolvedUpstreamKey && !dryRun) {
|
|
691
692
|
const store = await storeUpstreamKey(apiBase, proxyKey, resolvedUpstreamKey);
|
|
@@ -818,10 +819,7 @@ async function cmdInit(flags) {
|
|
|
818
819
|
console.log("");
|
|
819
820
|
console.log("Clawtamer is installed and now routing your requests.");
|
|
820
821
|
console.log("Clawtamer will automatically route requests and reduce API cost.");
|
|
821
|
-
|
|
822
|
-
console.log("Track savings anytime:");
|
|
823
|
-
console.log("- npx clawtamer savings");
|
|
824
|
-
console.log("- Dashboard: https://www.clawtamer.ai/dashboard");
|
|
822
|
+
showTrackSavingsTips = true;
|
|
825
823
|
}
|
|
826
824
|
}
|
|
827
825
|
|
|
@@ -854,7 +852,13 @@ async function cmdInit(flags) {
|
|
|
854
852
|
console.warn("Update those agent configs to clawtamer/auto (or remove agent-level primary) to enforce proxy routing.");
|
|
855
853
|
}
|
|
856
854
|
console.log("");
|
|
857
|
-
console.log(success("Enjoy your savings with Clawtamer!"));
|
|
855
|
+
console.log(bold(success("Enjoy your savings with Clawtamer!")));
|
|
856
|
+
if (showTrackSavingsTips) {
|
|
857
|
+
console.log("");
|
|
858
|
+
console.log("Track savings anytime:");
|
|
859
|
+
console.log("- npx clawtamer savings");
|
|
860
|
+
console.log("- Dashboard: https://www.clawtamer.ai/dashboard");
|
|
861
|
+
}
|
|
858
862
|
}
|
|
859
863
|
|
|
860
864
|
async function resolveProxyKey(flags, configDir, config) {
|