Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 | 2x 2x 51x 36x 36x 32x 30x 36x 36x 36x 51x 51x 7x 6x 5x 5x 36x 30x 30x 30x 39x 34x 34x 30x 2x 2x 2x 69x 47x 47x 47x 47x 462x 618x 42x 42x 42x 46x 48x 11x 11x 11x 46x 143x 143x 143x 143x 143x 143x 143x 143x 143x 143x 143x 143x 141x 141x 141x 141x 11x 11x 308x 308x 308x 145x 145x 29x 29x 47x 47x 18x 18x 29x 29x 25x 25x 15x 15x 308x 308x 308x 308x 308x 308x 308x 308x 1848x 1848x 1540x 1540x 1848x 1848x 1848x 1848x 1848x 1848x 163x 163x 1848x 345x 345x 1848x 1848x 1378x 308x 308x 163x 163x 308x 311x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 145x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 2x 2x 2x 2x 2x 29x 5x 5x 5x 5x 29x 29x 29x 29x 29x 29x 29x 29x 29x 14x 12x 12x 12x 2x 2x 2x 2x 2x 2x 12x 12x 12x 12x 10x 6x 6x 6x 10x 10x 12x 12x 10x 1x 1x 1x 1x 9x 1x 1x 1x 8x 3x 3x 3x 5x 5x 5x 1x 1x 1x 31x 31x 31x 31x 31x 31x 93x 93x 93x 93x 93x 93x 93x 93x 93x 93x 93x 31x 31x 31x 31x 93x 31x 17x 17x 17x 3x 3x 3x 3x 14x 14x 14x 14x 14x 14x 42x 42x 42x 42x 22x 22x 20x 7x 7x 7x 13x 14x 7x 7x 7x 7x 31x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 94x 94x 94x 94x 94x 94x 94x 94x 94x 2x 2x 94x 86x 86x 86x 29x 29x 47x 47x 47x 47x 47x 46x 47x 47x 47x 47x 47x 47x 2x 2x 47x 47x 1x 1x 47x 47x 1x 1x 47x 47x 15x 1x 1x 14x 14x 14x 47x 47x 47x 46x 1x 1x 41x 5x 5x 5x 41x 41x 47x 47x 47x 29x 29x 2x 2x 2x 3x 3x 2x 1x 17x 16x 16x 16x 16x 16x 16x 16x 13x 9x 9x 9x 8x 8x 4x 3x 3x 3x 3x 3x 10x 10x 1x 1x 1x 1x 1x 9x 9x 9x 9x 9x 3x 1x 2x 1x 1x 1x 1x 3x 3x 13x 18x 18x 18x 18x 18x 18x 18x 18x 18x 1x 1x 18x 18x 1x 1x 18x 18x 4x 1x 1x 1x 3x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 1x 1x 1x 18x 22x 22x 21x 1x 1x 20x 1x 1x 1x 20x 20x 22x 22x 22x 22x 14x 14x 1x 2x 2x 4x 4x 2x 2x 13x 12x 12x 12x 12x 12x 12x 12x 8x 4x 4x 4x 3x 3x 4x 3x 3x 3x 3x 3x 9x 9x 1x 1x 1x 1x 1x 8x 8x 3x 1x 2x 1x 1x 1x 1x 3x 3x 12x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 1x 1x 29x 29x 1x 1x 29x 29x 29x 29x 29x 22x 10x 10x 10x 10x 12x 1x 1x 1x 22x 2x 2x 1x 20x 3x 3x 3x 3x 19x 7x 6x 7x 7x 7x 7x 6x 1x 5x 1x 1x 1x 4x 13x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 2x 2x 2x 25x 1x 1x 1x 25x 25x 25x 25x 25x 25x 25x 3x 3x 3x 15x 15x 15x 15x 15x 15x 15x 4x 15x 4x 4x 4x 4x 3x 15x 15x 15x 15x 45x 45x 45x 15x 15x 15x 15x 57x 53x 53x 4x 57x 11x 4x 7x 1x 6x 11x 6x 2x 2x 2x 2x | import { App, Modal, Notice } from "obsidian";
import type LilbeePlugin from "../main";
import { SessionTokenError } from "../api";
import type { BatchProgressPayload, CatalogEntry, ManagedServerProgressPhase, SSEEvent, SyncDone } from "../types";
import {
CATALOG_TAB,
LILBEE_REPO_URL,
MANAGED_PHASE,
SERVER_MODE,
SERVER_STATE,
SETUP_OUTCOME,
SSE_EVENT,
WIZARD_STEP,
ERROR_NAME,
MODEL_TASK,
} from "../types";
import { CatalogModal } from "./catalog-modal";
import { MESSAGES, FILTERS } from "../locales/en";
import { renderModelCard } from "../components/model-card";
import {
bindEscapeToClose,
extractSseErrorMessage,
getSystemMemoryGB,
percentFromSse,
setDeterminateProgress,
sessionTokenInvalidMessage,
} from "../utils";
type FeaturedModel = CatalogEntry;
type EmbeddingModel = CatalogEntry;
/**
* Ordered, visible-in-indicator steps. The indicator labels these 1..6 so the
* user has a clear sense of "Step N of 6" while moving through setup. Welcome
* is not in the numbered sequence (it's the intro splash).
*/
const INDICATOR_STEPS: { step: number; key: string; label: string }[] = [
{ step: WIZARD_STEP.SERVER_MODE, key: "server", label: "Server" },
{ step: WIZARD_STEP.MODEL_PICKER, key: "model", label: "Model" },
{ step: WIZARD_STEP.EMBEDDING_PICKER, key: "embedding", label: "Embed" },
{ step: WIZARD_STEP.SYNC, key: "sync", label: "Sync" },
{ step: WIZARD_STEP.WIKI, key: "wiki", label: "Wiki" },
{ step: WIZARD_STEP.DONE, key: "done", label: "Done" },
];
/**
* data-step attribute on the step container drives per-step CSS (rail color,
* badge color, progress accent). Semantic keys map to existing lilbee color
* tokens so the wizard's visual language stays in sync with the Task Center's.
*/
const STEP_KEY: Record<number, string> = {
[WIZARD_STEP.WELCOME]: "welcome",
[WIZARD_STEP.SERVER_MODE]: "server",
[WIZARD_STEP.MODEL_PICKER]: "model",
[WIZARD_STEP.EMBEDDING_PICKER]: "embedding",
[WIZARD_STEP.SYNC]: "sync",
[WIZARD_STEP.WIKI]: "wiki",
[WIZARD_STEP.DONE]: "done",
};
export function recommendedIndex(models: FeaturedModel[], memGB: number | null): number {
if (models.length === 0) return 0;
// Prefer an already-installed model that fits the host — first-time
// setup against an established server should not push the user to
// download a fresh 18 GB family when a smaller installed one works.
const installedFitIdx = bestInstalledFitIndex(models, memGB);
if (installedFitIdx >= 0) return installedFitIdx;
if (memGB === null) return 0;
return largestFitIndex(models, memGB);
}
function bestInstalledFitIndex(models: FeaturedModel[], memGB: number | null): number {
let best = -1;
let bestRam = -1;
for (let i = 0; i < models.length; i++) {
const m = models[i];
if (!m.installed) continue;
if (memGB !== null && m.min_ram_gb > memGB) continue;
if (m.min_ram_gb >= bestRam) {
best = i;
bestRam = m.min_ram_gb;
}
}
return best;
}
function largestFitIndex(models: FeaturedModel[], memGB: number): number {
let best = 0;
let bestRam = 0;
for (let i = 0; i < models.length; i++) {
if (models[i].min_ram_gb <= memGB && models[i].min_ram_gb >= bestRam) {
best = i;
bestRam = models[i].min_ram_gb;
}
}
return best;
}
/**
* Families the wizard surfaces first as its native picks. Ordered by
* recency/recognition — a fresh-install user seeing "Gemma", "Qwen", "Llama"
* as the first four tiles gets an immediate sense of what's familiar. Any
* native models outside these families backfill after.
*/
// Substrings (lowercase) matched against `hf_repo`. Featured chat repos ship under varied orgs
// (`Qwen/`, `unsloth/`, `ggml-org/`, `bartowski/`, …), so we don't pin to `<org>/<family>`.
// Order matters: more specific families (Qwen3 Coder) come before less specific (Qwen3).
const PREFERRED_FAMILIES = [
"gemma-4",
"gemma-3",
"gemma-2",
"qwen3-coder",
"qwen3",
"qwen2",
"llama-3",
"phi-3",
"mistral",
"smollm",
];
const MAX_FEATURED_PICKS = 8;
/**
* The three visible phases of managed-server setup, in order. Each renders as a
* row with a status dot that lights up as the server moves Downloading →
* Starting → Ready. The label re-words per state so the user always reads the
* current stage (`Downloading…` → `Downloaded`), never a stale one. `hint` is
* the line shown under the phase while it's the one in flight.
*
* Granular byte progress isn't available through the binary-download path (a
* known node-fetch progress-granularity limitation), so each in-flight phase
* shows an indeterminate bar plus its hint rather than a percentage.
*/
const SERVER_SETUP_PHASES: {
key: ManagedServerProgressPhase;
pending: string;
active: string;
done: string;
hint: string;
}[] = [
{
key: MANAGED_PHASE.DOWNLOADING,
pending: MESSAGES.WIZARD_SETUP_DOWNLOAD_PENDING,
active: MESSAGES.WIZARD_SETUP_DOWNLOAD_ACTIVE,
done: MESSAGES.WIZARD_SETUP_DOWNLOAD_DONE,
hint: MESSAGES.WIZARD_SETUP_DOWNLOAD_HINT,
},
{
key: MANAGED_PHASE.STARTING,
pending: MESSAGES.WIZARD_SETUP_START_PENDING,
active: MESSAGES.WIZARD_SETUP_START_ACTIVE,
done: MESSAGES.WIZARD_SETUP_START_DONE,
hint: MESSAGES.WIZARD_SETUP_START_HINT,
},
{
key: MANAGED_PHASE.READY,
pending: MESSAGES.WIZARD_SETUP_READY_PENDING,
active: MESSAGES.WIZARD_SETUP_READY_DONE,
done: MESSAGES.WIZARD_SETUP_READY_DONE,
hint: "",
},
];
/**
* Rank the server's featured chat entries into the wizard's "Our picks" row.
*
* Deliberately does NOT filter by `source`. When a server is mis-configured
* and tags every featured model as `source="litellm"` (a known transient bug
* in older builds), filtering on source emptied the wizard grid. The featured
* list itself is the source of truth — the server has already decided these
* are the models a fresh user should see. We just reorder them so recognised
* open-weight families (Gemma, Qwen, Llama, Phi) lead.
*
* Callers that genuinely need to hide a subset (e.g. API-only entries in a
* different UI) can pass a custom `filter` predicate.
*/
export function pickNativeChatModels(
models: FeaturedModel[],
filter: (m: FeaturedModel) => boolean = () => true,
): FeaturedModel[] {
const eligible = models.filter(filter);
const seen = new Set<string>();
const ordered: FeaturedModel[] = [];
for (const prefix of PREFERRED_FAMILIES) {
for (const m of eligible) {
if (m.hf_repo.toLowerCase().includes(prefix) && !seen.has(m.hf_repo)) {
ordered.push(m);
seen.add(m.hf_repo);
if (ordered.length >= MAX_FEATURED_PICKS) return ordered;
}
}
}
for (const m of eligible) {
if (!seen.has(m.hf_repo)) {
ordered.push(m);
seen.add(m.hf_repo);
if (ordered.length >= MAX_FEATURED_PICKS) break;
}
}
return ordered;
}
export class SetupWizard extends Modal {
private plugin: LilbeePlugin;
private step = 0;
private selectedModel: FeaturedModel | null = null;
private featuredModels: FeaturedModel[] = [];
private pullController: AbortController | null = null;
private syncController: AbortController | null = null;
private syncResult: SyncDone | null = null;
private pulledModelName = "";
private selectedEmbedding: EmbeddingModel | null = null;
private embeddingModels: EmbeddingModel[] = [];
constructor(app: App, plugin: LilbeePlugin) {
super(app);
this.plugin = plugin;
bindEscapeToClose(this);
}
onOpen(): void {
const { contentEl } = this;
contentEl.empty();
contentEl.addClass("lilbee-wizard");
this.renderStep();
}
onClose(): void {
this.pullController?.abort();
this.syncController?.abort();
}
private renderStep(): void {
const { contentEl } = this;
contentEl.empty();
switch (this.step) {
case WIZARD_STEP.WELCOME:
this.renderWelcome();
break;
case WIZARD_STEP.SERVER_MODE:
this.renderServerMode();
break;
case WIZARD_STEP.MODEL_PICKER:
this.renderModelPicker();
break;
case WIZARD_STEP.EMBEDDING_PICKER:
this.renderEmbeddingPicker();
break;
case WIZARD_STEP.SYNC:
this.renderSync();
break;
case WIZARD_STEP.WIKI:
this.renderWiki();
break;
case WIZARD_STEP.DONE:
this.renderDone();
break;
}
}
/**
* Build the step frame: outer `<div data-step="...">` with a left rail and a
* numbered breadcrumb at the top. Every `render<Step>` method calls this to
* get a consistent scaffold.
*/
private beginStep(): HTMLElement {
const { contentEl } = this;
const step = contentEl.createDiv({ cls: "lilbee-wizard-step" });
// STEP_KEY covers every WIZARD_STEP value; `this.step` is only set
// via the enum (renderStep switch + next/back guards), so the lookup
// is total.
step.dataset.step = STEP_KEY[this.step];
step.createDiv({ cls: "lilbee-wizard-rail" });
this.renderStepIndicator(step);
return step;
}
private renderStepIndicator(container: HTMLElement): void {
const indicator = container.createDiv({ cls: "lilbee-wizard-step-indicator" });
for (let i = 0; i < INDICATOR_STEPS.length; i++) {
const meta = INDICATOR_STEPS[i];
if (i > 0) {
const line = indicator.createDiv({ cls: "lilbee-wizard-step-line" });
if (meta.step <= this.step) line.addClass("is-done");
}
const slot = indicator.createDiv({ cls: "lilbee-wizard-step-slot" });
slot.dataset.step = meta.key;
const circle = slot.createDiv({ cls: "lilbee-wizard-step-circle" });
const isActive = meta.step === this.step;
const isDone = meta.step < this.step;
if (isActive) {
circle.addClass("is-active");
slot.addClass("is-active");
}
if (isDone) {
circle.addClass("is-done");
slot.addClass("is-done");
}
circle.textContent = isDone ? "✓" : String(i + 1);
slot.createDiv({ cls: "lilbee-wizard-step-label", text: meta.label });
}
}
/**
* Step header: a Task-Center-style uppercase badge (`STEP 03 · MODEL`)
* followed by the h2 title. The badge carries the step's semantic color.
*/
private renderStepHeader(container: HTMLElement, title: string): void {
const meta = INDICATOR_STEPS.find((m) => m.step === this.step);
const header = container.createDiv({ cls: "lilbee-wizard-step-header" });
if (meta) {
const badge = header.createSpan({ cls: "lilbee-wizard-step-badge" });
badge.textContent = MESSAGES.WIZARD_STEP_BADGE.replace(
"{num}",
String(INDICATOR_STEPS.indexOf(meta) + 1).padStart(2, "0"),
).replace("{label}", meta.label.toUpperCase());
}
header.createEl("h2", { text: title });
}
/** Task-Center-style section heading: uppercase, letter-spaced, muted. */
private renderSectionHeading(container: HTMLElement, text: string): void {
container.createDiv({ cls: "lilbee-wizard-section-heading", text });
}
private renderWelcome(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_WELCOME);
step.createEl("p", { text: MESSAGES.WIZARD_INTRO_DESC });
this.renderSectionHeading(step, MESSAGES.WIZARD_INTRO_STEPS);
const ul = step.createEl("ul", { cls: "lilbee-wizard-intro-list" });
ul.createEl("li", { text: MESSAGES.WIZARD_STEP_CHOOSE_SERVER });
ul.createEl("li", { text: MESSAGES.WIZARD_STEP_CHOOSE_MODEL });
ul.createEl("li", { text: MESSAGES.WIZARD_STEP_INDEX });
const localityHint =
this.plugin.settings.serverMode === SERVER_MODE.EXTERNAL
? MESSAGES.WIZARD_LOCAL_ONLY_EXTERNAL
: MESSAGES.WIZARD_LOCAL_ONLY_MANAGED;
step.createEl("p", { text: localityHint, cls: "lilbee-wizard-hint" });
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => this.skip());
const startBtn = actions.createEl("button", { text: MESSAGES.BUTTON_GET_STARTED, cls: "mod-cta" });
startBtn.addEventListener("click", () => this.next());
}
private renderServerMode(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_SERVER_MODE);
let mode: "managed" | "external" =
this.plugin.settings.serverMode === SERVER_MODE.EXTERNAL ? SERVER_MODE.EXTERNAL : SERVER_MODE.MANAGED;
const managedOption = step.createDiv({
cls: `lilbee-wizard-model-option${mode === SERVER_MODE.MANAGED ? " selected" : ""}`,
});
managedOption.createEl("strong", { text: MESSAGES.TITLE_MANAGED_RECOMMENDED });
managedOption.createEl("p", { text: MESSAGES.WIZARD_MANAGED_DESC });
const externalOption = step.createDiv({
cls: `lilbee-wizard-model-option${mode === SERVER_MODE.EXTERNAL ? " selected" : ""}`,
});
externalOption.createEl("strong", { text: MESSAGES.TITLE_EXTERNAL });
externalOption.createEl("p", { text: MESSAGES.WIZARD_EXTERNAL_DESC });
// External-mode fields: URL + session token (password-masked). Both
// hidden in managed mode. The token lines up with readCurrentToken's
// `settings.manualToken` lookup, so the API client will pick it up as
// soon as the wizard advances.
const externalFields = step.createDiv({ cls: "lilbee-wizard-external-fields" });
externalFields.style.display = mode === SERVER_MODE.EXTERNAL ? "" : "none";
const urlLabel = externalFields.createDiv({ cls: "lilbee-wizard-field-label" });
urlLabel.textContent = MESSAGES.LABEL_SERVER_URL;
const urlInput = externalFields.createEl("input", {
cls: "lilbee-wizard-url-input",
placeholder: MESSAGES.PLACEHOLDER_HTTP_LOCALHOST,
attr: { type: "text" },
});
urlInput.value = this.plugin.settings.serverUrl;
const tokenLabel = externalFields.createDiv({ cls: "lilbee-wizard-field-label" });
tokenLabel.textContent = MESSAGES.LABEL_MANUAL_TOKEN;
const tokenInput = externalFields.createEl("input", {
cls: "lilbee-wizard-url-input",
placeholder: MESSAGES.PLACEHOLDER_MANUAL_TOKEN,
attr: { type: "password" },
});
tokenInput.value = this.plugin.settings.manualToken;
externalFields.createDiv({
cls: "lilbee-wizard-hint",
text: MESSAGES.WIZARD_EXTERNAL_TOKEN_HINT,
});
const statusEl = step.createDiv({ cls: "lilbee-wizard-status" });
const { panel, setPhase } = this.renderServerSetupPanel(step);
const selectManaged = (): void => {
mode = SERVER_MODE.MANAGED;
managedOption.classList.add("selected");
externalOption.classList.remove("selected");
externalFields.hide();
statusEl.textContent = "";
};
const selectExternal = (): void => {
mode = SERVER_MODE.EXTERNAL;
externalOption.classList.add("selected");
managedOption.classList.remove("selected");
externalFields.show();
};
managedOption.addEventListener("click", selectManaged);
externalOption.addEventListener("click", selectExternal);
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const backBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BACK });
backBtn.addEventListener("click", () => this.back());
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => this.skip());
const nextBtn = actions.createEl("button", { text: MESSAGES.BUTTON_NEXT, cls: "mod-cta" });
nextBtn.addEventListener("click", () => {
if (mode === SERVER_MODE.MANAGED) {
this.plugin.settings.serverMode = SERVER_MODE.MANAGED;
nextBtn.disabled = true;
void this.startManagedAndAdvance(step, panel, setPhase, statusEl, nextBtn, selectExternal);
} else {
this.plugin.settings.serverUrl = String(urlInput.value || "").trim() || "http://127.0.0.1:7433";
this.plugin.settings.manualToken = String(tokenInput.value || "").trim();
this.plugin.settings.serverMode = SERVER_MODE.EXTERNAL;
statusEl.textContent = MESSAGES.STATUS_CHECKING_CONNECTION;
nextBtn.disabled = true;
void this.checkExternalAndAdvance(statusEl, nextBtn);
}
});
}
private async startManagedAndAdvance(
step: HTMLElement,
panel: HTMLElement,
setPhase: (phase: ManagedServerProgressPhase, message?: string, percent?: number) => void,
statusEl: HTMLElement,
nextBtn: HTMLElement,
selectExternal: () => void,
): Promise<void> {
statusEl.textContent = "";
// The setup panel only reveals once the download/start actually begins,
// so it stays hidden behind the consent modal while the user decides.
let panelShown = false;
let failed = false;
const onProgress = (event: { phase: ManagedServerProgressPhase; message?: string; percent?: number }): void => {
if (!panelShown) {
panel.show();
step.querySelector<HTMLElement>(".lilbee-wizard-rail")?.classList.add("is-active");
panelShown = true;
}
setPhase(event.phase, event.message, event.percent);
if (event.phase === MANAGED_PHASE.ERROR) failed = true;
};
try {
const outcome = await this.plugin.ensureManagedConsentThenStart(onProgress);
if (outcome.kind === SETUP_OUTCOME.SWITCHED_TO_EXTERNAL) {
// User chose External from the consent modal: reveal the
// external URL/token fields so they can finish via that path.
panel.hide();
selectExternal();
(nextBtn as HTMLButtonElement).disabled = false;
return;
}
if (outcome.kind === SETUP_OUTCOME.CANCELED) {
panel.hide();
(nextBtn as HTMLButtonElement).disabled = false;
return;
}
// STARTED. The gate swallows download/start failures (emits an error
// phase and resolves), so resolve alone is not proof of a live
// server — only advance if no error phase was observed.
if (failed) {
statusEl.textContent = MESSAGES.ERROR_START_SERVER;
(nextBtn as HTMLButtonElement).disabled = false;
return;
}
setPhase(MANAGED_PHASE.READY);
this.step = WIZARD_STEP.MODEL_PICKER;
this.renderStep();
} catch {
panel.hide();
statusEl.textContent = MESSAGES.ERROR_START_SERVER;
(nextBtn as HTMLButtonElement).disabled = false;
}
}
/**
* Build the managed-server setup panel: a header (spinner + "Setting up
* lilbee", flipping to a check + "lilbee server is running" once ready)
* above three phase rows whose dots light up as the server moves
* Downloading → Starting → Ready. A gate line under the rows states the
* step won't advance until the server is up. Returns `setPhase`, which the
* start flow calls with each progress event. The panel starts hidden.
*/
private renderServerSetupPanel(step: HTMLElement): {
panel: HTMLElement;
setPhase: (phase: ManagedServerProgressPhase, message?: string, percent?: number) => void;
} {
const panel = step.createDiv({ cls: "lilbee-wizard-setup" });
panel.hide();
const head = panel.createDiv({ cls: "lilbee-wizard-setup-head" });
const spinner = head.createSpan({ cls: "lilbee-wizard-setup-spinner" });
const headText = head.createSpan({ cls: "lilbee-wizard-setup-head-text", text: MESSAGES.WIZARD_SETUP_HEAD });
const rows = SERVER_SETUP_PHASES.map((meta) => {
const row = panel.createDiv({ cls: "lilbee-wizard-phase" });
row.dataset.phase = meta.key;
const line = row.createDiv({ cls: "lilbee-wizard-phase-line" });
line.createSpan({ cls: "lilbee-wizard-phase-dot" });
const label = line.createSpan({ cls: "lilbee-wizard-phase-label", text: meta.pending });
const detail = row.createDiv({ cls: "lilbee-wizard-phase-detail" });
detail.hide();
const bar = detail.createDiv({ cls: "lilbee-progress-bar-container" });
const fill = bar.createDiv({ cls: "lilbee-wizard-progress-fill lilbee-wizard-progress-indeterminate" });
detail.createDiv({ cls: "lilbee-wizard-phase-hint", text: meta.hint });
return { meta, row, label, detail, fill };
});
const gate = panel.createDiv({ cls: "lilbee-wizard-setup-gate", text: MESSAGES.WIZARD_SETUP_GATE });
const source = panel.createDiv({ cls: "lilbee-wizard-setup-source", text: `${MESSAGES.WIZARD_SETUP_SOURCE} ` });
const sourceLink = source.createEl("a", { text: MESSAGES.LINK_LILBEE_REPO });
sourceLink.setAttribute("href", LILBEE_REPO_URL);
const order = SERVER_SETUP_PHASES.map((m) => m.key);
const setPhase = (phase: ManagedServerProgressPhase, message?: string, percent?: number): void => {
const idx = order.indexOf(phase);
if (percent !== undefined && idx >= 0) setDeterminateProgress(rows[idx].fill, percent);
// An unknown/error phase isn't one of the three rows: surface the
// message in the header and leave the rows showing where progress
// stalled rather than blanking them.
if (idx < 0) {
spinner.hide();
head.classList.add("is-error");
headText.setText(message || MESSAGES.ERROR_START_SERVER);
return;
}
// Reset header to its in-progress state so a retry after a failed
// attempt doesn't leave the stale error text/styling above freshly
// lit phase rows.
head.classList.remove("is-error", "is-ready");
spinner.show();
gate.show();
headText.setText(MESSAGES.WIZARD_SETUP_HEAD);
const terminal = idx === order.length - 1;
for (let i = 0; i < rows.length; i++) {
const { meta, row, label, detail } = rows[i];
row.classList.remove("is-active", "is-done");
detail.hide();
if (i < idx || (i === idx && terminal)) {
row.classList.add("is-done");
label.setText(meta.done);
} else if (i === idx) {
row.classList.add("is-active");
label.setText(meta.active);
detail.show();
} else {
label.setText(meta.pending);
}
}
if (terminal) {
spinner.hide();
head.classList.add("is-ready");
headText.setText(MESSAGES.WIZARD_SETUP_RUNNING);
gate.hide();
}
};
return { panel, setPhase };
}
private async checkExternalAndAdvance(statusEl: HTMLElement, nextBtn: HTMLElement): Promise<void> {
try {
await this.plugin.saveSettings();
// Repoint the existing client at the new URL and hand it the token
// the user just pasted. Updating in-place keeps test mocks intact
// and avoids churning listeners keyed on the old instance.
this.plugin.api.setBaseUrl(this.plugin.settings.serverUrl);
this.plugin.api.setToken(this.plugin.settings.manualToken || null);
const result = await this.plugin.api.health();
if (result.isErr()) throw result.error;
statusEl.textContent = "";
this.step = WIZARD_STEP.MODEL_PICKER;
this.renderStep();
} catch {
statusEl.textContent = MESSAGES.ERROR_COULD_NOT_CONNECT_EXT;
(nextBtn as HTMLButtonElement).disabled = false;
}
}
/**
* Build the shared download-progress panel used by steps 3–5. The panel
* starts hidden; `activateProgressPanel` below flips it on once work
* begins. The Task Center CTA is always present but only *visible* while
* progress is active — users need the affordance the moment downloads
* start, never before.
*/
private renderProgressPanel(step: HTMLElement): {
progressEl: HTMLElement;
progressFill: HTMLElement;
progressLabel: HTMLElement;
} {
const progressEl = step.createDiv({ cls: "lilbee-wizard-progress" });
progressEl.hide();
const progressBar = progressEl.createDiv({ cls: "lilbee-progress-bar-container" });
const progressFill = progressBar.createDiv({
cls: "lilbee-progress-bar lilbee-wizard-progress-fill lilbee-wizard-progress-indeterminate",
});
const progressLabel = progressEl.createDiv({ cls: "lilbee-wizard-progress-label" });
const footer = progressEl.createDiv({ cls: "lilbee-wizard-progress-footer" });
footer.createDiv({
cls: "lilbee-wizard-progress-hint",
text: MESSAGES.WIZARD_PROGRESS_BACKGROUND,
});
const taskCenterBtn = footer.createEl("button", {
cls: "lilbee-wizard-task-center-cta",
text: MESSAGES.BUTTON_OPEN_TASK_CENTER,
});
taskCenterBtn.addEventListener("click", (e) => {
e.preventDefault();
void this.plugin.activateTaskView();
});
return { progressEl, progressFill, progressLabel };
}
/**
* Update the progress fill: hands off from indeterminate to determinate
* the first time a percentage comes in. Also sets the hero rail to the
* "active" state so the step visually pulses like a Task Center row.
*/
private updateProgress(step: HTMLElement, progressFill: HTMLElement, pct: number | undefined): void {
const rail = step.querySelector<HTMLElement>(".lilbee-wizard-rail");
rail?.classList.add("is-active");
if (pct === undefined) return;
progressFill.classList.remove("lilbee-wizard-progress-indeterminate");
progressFill.style.width = `${pct}%`;
}
private renderModelPicker(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_PICK_MODEL);
step.createEl("p", { text: MESSAGES.WIZARD_MODEL_HELP });
const memGB = getSystemMemoryGB();
if (memGB !== null) {
step.createEl("p", {
text: MESSAGES.WIZARD_SYSTEM_RAM.replace("{ram}", String(memGB)),
cls: "lilbee-wizard-system-info",
});
}
const modelsContainer = step.createDiv({ cls: "lilbee-wizard-models" });
const statusEl = step.createDiv({ cls: "lilbee-wizard-status" });
const { progressEl, progressFill, progressLabel } = this.renderProgressPanel(step);
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const backBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BACK });
backBtn.addEventListener("click", () => {
this.pullController?.abort();
this.back();
});
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => {
this.pullController?.abort();
this.skip();
});
const catalogBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BROWSE_FULL_CATALOG });
catalogBtn.addEventListener("click", () => {
// Close the wizard first so the catalog modal isn't stacked on top
// of two close-X buttons. Users can re-open the wizard from the
// settings tab if they want to come back; their model selection is
// saved on the catalog side via the regular Use button.
this.close();
new CatalogModal(this.app, this.plugin, MODEL_TASK.CHAT, CATALOG_TAB.CHAT).open();
});
const downloadBtn = actions.createEl("button", { text: MESSAGES.BUTTON_DOWNLOAD_CONTINUE, cls: "mod-cta" });
downloadBtn.addEventListener("click", () => {
if (!this.selectedModel) {
statusEl.textContent = MESSAGES.WIZARD_SELECT_MODEL;
return;
}
downloadBtn.disabled = true;
statusEl.textContent = "";
void this.pullSelectedModel(downloadBtn, progressEl, progressFill, progressLabel, statusEl, step);
});
void this.loadFeaturedModels(modelsContainer, memGB, statusEl);
}
private async loadFeaturedModels(
container: HTMLElement,
memGB: number | null,
statusEl: HTMLElement,
): Promise<void> {
try {
// The server's featured list is the source of truth for the
// wizard's "Our picks" row. Do NOT filter by `source` here — a
// mis-configured server can tag every featured model as
// `source="litellm"`, which would empty the grid and leave the
// user stuck. `pickNativeChatModels` just reorders so recognised
// open-weight families (Gemma, Qwen, Llama) lead.
const result = await this.plugin.api.catalog({
task: MODEL_TASK.CHAT,
featured: true,
sort: FILTERS.SORT.DOWNLOADS,
limit: 40,
});
if (result.isErr()) {
this.featuredModels = [];
return;
}
this.featuredModels = pickNativeChatModels(result.value.models);
} catch {
this.featuredModels = [];
statusEl.textContent = MESSAGES.ERROR_LOAD_MODELS;
return;
}
const recommended = recommendedIndex(this.featuredModels, memGB);
this.selectedModel = this.featuredModels[recommended] ?? null;
this.renderSectionHeading(container, MESSAGES.LABEL_OUR_PICKS);
const grid = container.createDiv({ cls: "lilbee-catalog-grid" });
for (let i = 0; i < this.featuredModels.length; i++) {
const entry = this.featuredModels[i];
renderModelCard(grid, entry, {
isActive: i === recommended,
onClick: () => this.selectModel(grid, entry),
});
}
}
private selectModel(grid: HTMLElement, model: FeaturedModel): void {
this.selectedModel = model;
for (const child of Array.from(grid.children)) {
const el = child as HTMLElement;
if (el.dataset.repo === model.hf_repo) {
el.classList.add("is-selected");
} else {
el.classList.remove("is-selected");
}
}
}
private async pullSelectedModel(
downloadBtn: HTMLElement,
progressEl: HTMLElement,
progressFill: HTMLElement,
progressLabel: HTMLElement,
statusEl: HTMLElement,
step: HTMLElement,
): Promise<void> {
if (!this.selectedModel) return;
const model = this.selectedModel;
progressEl.show();
progressLabel.textContent = MESSAGES.STATUS_DOWNLOADING_MODEL.replace("{model}", model.hf_repo);
this.pullController = new AbortController();
this.updateProgress(step, progressFill, undefined);
try {
for await (const event of this.plugin.api.pullModel(model.hf_repo, "native", this.pullController.signal)) {
if (event.event === SSE_EVENT.PROGRESS) {
const d = event.data as { percent?: number; current?: number; total?: number };
const pct = percentFromSse(d);
if (pct !== undefined) {
this.updateProgress(step, progressFill, pct);
progressLabel.textContent = MESSAGES.STATUS_DOWNLOADING_MODEL_PCT.replace(
"{model}",
model.hf_repo,
).replace("{pct}", String(pct));
}
} else if (event.event === SSE_EVENT.ERROR) {
const d = event.data as { message?: string } | string;
const msg = extractSseErrorMessage(d, MESSAGES.ERROR_UNKNOWN);
new Notice(MESSAGES.ERROR_DOWNLOAD_FAILED);
statusEl.textContent = msg;
break;
}
}
const setResult = await this.plugin.api.setChatModel(model.hf_repo);
if (setResult.isErr()) {
new Notice(MESSAGES.ERROR_SET_MODEL.replace("{model}", model.display_name));
statusEl.textContent = setResult.error.message;
progressEl.hide();
(downloadBtn as HTMLButtonElement).disabled = false;
return;
}
this.plugin.activeModel = model.hf_repo;
void this.plugin.fetchActiveModel();
this.pulledModelName = model.display_name;
this.step = WIZARD_STEP.EMBEDDING_PICKER;
this.renderStep();
} catch (err) {
if (err instanceof Error && err.name === ERROR_NAME.ABORT_ERROR) {
new Notice(MESSAGES.NOTICE_DOWNLOAD_CANCELLED);
} else if (err instanceof SessionTokenError) {
const msg = sessionTokenInvalidMessage(this.plugin.settings.serverMode);
new Notice(msg);
statusEl.textContent = msg;
} else {
statusEl.textContent = MESSAGES.ERROR_DOWNLOAD_FAILED;
}
progressEl.hide();
(downloadBtn as HTMLButtonElement).disabled = false;
} finally {
this.pullController = null;
}
}
private renderEmbeddingPicker(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_PICK_EMBEDDING);
step.createEl("p", { text: MESSAGES.WIZARD_EMBEDDING_HELP });
const modelsContainer = step.createDiv({ cls: "lilbee-wizard-models" });
const statusEl = step.createDiv({ cls: "lilbee-wizard-status" });
const { progressEl, progressFill, progressLabel } = this.renderProgressPanel(step);
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const backBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BACK });
backBtn.addEventListener("click", () => {
this.pullController?.abort();
this.back();
});
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => {
this.pullController?.abort();
this.skip();
});
const downloadBtn = actions.createEl("button", { text: MESSAGES.BUTTON_DOWNLOAD_CONTINUE, cls: "mod-cta" });
downloadBtn.addEventListener("click", () => {
if (!this.selectedEmbedding) {
this.step = WIZARD_STEP.SYNC;
this.renderStep();
return;
}
if (this.selectedEmbedding.installed) {
const ref = this.selectedEmbedding.hf_repo;
const label = this.selectedEmbedding.display_name;
void (async () => {
const result = await this.plugin.api.setEmbeddingModel(ref);
if (result.isErr()) {
new Notice(MESSAGES.ERROR_SET_MODEL.replace("{model}", label));
return;
}
this.step = WIZARD_STEP.SYNC;
this.renderStep();
})();
return;
}
downloadBtn.disabled = true;
statusEl.textContent = "";
void this.pullEmbeddingModel(downloadBtn, progressEl, progressFill, progressLabel, statusEl, step);
});
void this.loadEmbeddingModels(modelsContainer, statusEl);
}
private async loadEmbeddingModels(container: HTMLElement, statusEl: HTMLElement): Promise<void> {
try {
const result = await this.plugin.api.catalog({
task: MODEL_TASK.EMBEDDING,
featured: true,
sort: FILTERS.SORT.DOWNLOADS,
limit: 20,
});
if (result.isErr()) {
this.embeddingModels = [];
return;
}
// Trust the server's featured list — don't filter by source.
// Mis-configured builds can stamp every featured embedding as
// source="litellm", which would leave the picker empty.
this.embeddingModels = result.value.models.slice(0, MAX_FEATURED_PICKS);
} catch {
this.embeddingModels = [];
statusEl.textContent = MESSAGES.ERROR_LOAD_MODELS;
return;
}
const recommended = this.embeddingModels.findIndex((m) => m.hf_repo.toLowerCase().includes("nomic-embed-text"));
const defaultIdx = recommended >= 0 ? recommended : 0;
this.selectedEmbedding = this.embeddingModels[defaultIdx] ?? null;
this.renderSectionHeading(container, MESSAGES.WIZARD_EMBEDDING_RECOMMENDED);
const grid = container.createDiv({ cls: "lilbee-catalog-grid" });
for (let i = 0; i < this.embeddingModels.length; i++) {
const entry = this.embeddingModels[i];
renderModelCard(grid, entry, {
isActive: i === defaultIdx,
onClick: () => this.selectEmbedding(grid, entry),
});
}
}
private selectEmbedding(grid: HTMLElement, model: EmbeddingModel): void {
this.selectedEmbedding = model;
for (const child of Array.from(grid.children)) {
const el = child as HTMLElement;
if (el.dataset.repo === model.hf_repo) {
el.classList.add("is-selected");
} else {
el.classList.remove("is-selected");
}
}
}
private async pullEmbeddingModel(
downloadBtn: HTMLElement,
progressEl: HTMLElement,
progressFill: HTMLElement,
progressLabel: HTMLElement,
statusEl: HTMLElement,
step: HTMLElement,
): Promise<void> {
if (!this.selectedEmbedding) return;
const model = this.selectedEmbedding;
progressEl.show();
progressLabel.textContent = MESSAGES.STATUS_DOWNLOADING_MODEL.replace("{model}", model.hf_repo);
this.pullController = new AbortController();
this.updateProgress(step, progressFill, undefined);
try {
for await (const event of this.plugin.api.pullModel(model.hf_repo, "native", this.pullController.signal)) {
if (event.event === SSE_EVENT.PROGRESS) {
const d = event.data as { percent?: number; current?: number; total?: number };
const pct = percentFromSse(d);
if (pct !== undefined) {
this.updateProgress(step, progressFill, pct);
progressLabel.textContent = MESSAGES.STATUS_DOWNLOADING_MODEL_PCT.replace(
"{model}",
model.hf_repo,
).replace("{pct}", String(pct));
}
} else if (event.event === SSE_EVENT.ERROR) {
const d = event.data as { message?: string } | string;
const msg = extractSseErrorMessage(d, MESSAGES.ERROR_UNKNOWN);
new Notice(MESSAGES.ERROR_DOWNLOAD_FAILED);
statusEl.textContent = msg;
break;
}
}
const setResult = await this.plugin.api.setEmbeddingModel(model.hf_repo);
if (setResult.isErr()) {
new Notice(MESSAGES.ERROR_SET_MODEL.replace("{model}", model.display_name));
statusEl.textContent = setResult.error.message;
progressEl.hide();
(downloadBtn as HTMLButtonElement).disabled = false;
return;
}
this.step = WIZARD_STEP.SYNC;
this.renderStep();
} catch (err) {
if (err instanceof Error && err.name === ERROR_NAME.ABORT_ERROR) {
new Notice(MESSAGES.NOTICE_DOWNLOAD_CANCELLED);
} else if (err instanceof SessionTokenError) {
const msg = sessionTokenInvalidMessage(this.plugin.settings.serverMode);
new Notice(msg);
statusEl.textContent = msg;
} else {
statusEl.textContent = MESSAGES.ERROR_DOWNLOAD_FAILED;
}
progressEl.hide();
(downloadBtn as HTMLButtonElement).disabled = false;
} finally {
this.pullController = null;
}
}
private renderSync(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_INDEX_VAULT);
step.createEl("p", { text: MESSAGES.WIZARD_SYNC_HELP });
const { progressEl, progressFill, progressLabel } = this.renderProgressPanel(step);
progressEl.show();
progressLabel.textContent = MESSAGES.WIZARD_STATUS_STARTING;
this.updateProgress(step, progressFill, undefined);
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const backBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BACK });
backBtn.addEventListener("click", () => {
this.syncController?.abort();
this.back();
});
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => {
this.syncController?.abort();
this.skip();
});
void this.runSync(progressFill, progressLabel, step);
}
private async runSync(progressFill: HTMLElement, progressLabel: HTMLElement, step: HTMLElement): Promise<void> {
this.syncController = new AbortController();
try {
let lastEvent: SSEEvent | null = null;
for await (const event of this.plugin.api.syncStream(this.syncController.signal)) {
if (event.event === SSE_EVENT.FILE_START) {
const d = event.data as { current_file: number; total_files: number; file?: string };
const pct = d.total_files > 0 ? Math.round((d.current_file / d.total_files) * 100) : 0;
this.updateProgress(step, progressFill, pct);
progressLabel.textContent = MESSAGES.STATUS_PROCESSING_FILES.replace(
"{current}",
String(d.current_file),
).replace("{total}", String(d.total_files));
} else if (event.event === SSE_EVENT.BATCH_PROGRESS) {
const d = event.data as BatchProgressPayload;
this.updateProgress(step, progressFill, Math.round((d.current / d.total) * 100));
progressLabel.textContent = MESSAGES.STATUS_TASK_BATCH(d.current, d.total, d.file, d.status);
}
if (event.event === SSE_EVENT.EMBED) {
const d = event.data as { file?: string };
if (d.file) {
progressLabel.textContent = MESSAGES.STATUS_INDEXING.replace("{file}", d.file);
}
} else if (event.event === SSE_EVENT.ERROR) {
const d = event.data as { message?: string } | string;
const msg = extractSseErrorMessage(d, MESSAGES.ERROR_UNKNOWN);
progressLabel.textContent = msg;
throw new Error(msg);
}
lastEvent = event;
}
if (lastEvent?.event === SSE_EVENT.DONE) {
this.syncResult = lastEvent.data as SyncDone;
}
this.updateProgress(step, progressFill, 100);
progressLabel.textContent = MESSAGES.STATUS_DONE;
this.step = WIZARD_STEP.WIKI;
this.renderStep();
} catch (err) {
if (err instanceof Error && err.name === ERROR_NAME.ABORT_ERROR) {
new Notice(MESSAGES.NOTICE_INDEXING_CANCELLED);
} else if (err instanceof SessionTokenError) {
const msg = sessionTokenInvalidMessage(this.plugin.settings.serverMode);
new Notice(msg);
progressLabel.textContent = msg;
} else {
progressLabel.textContent = MESSAGES.ERROR_INDEXING_FAILED;
}
} finally {
this.syncController = null;
}
}
private renderWiki(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.WIZARD_WIKI_TITLE);
step.createEl("p", { text: MESSAGES.WIZARD_WIKI_DESC });
// Put the "experimental — here's why in plain English" explanation
// up front so users who care see it immediately. Two-bullet structure
// reads faster than one paragraph and signals "there are exactly two
// things to know." Rich pros/cons move to a disclosure below.
const experimental = step.createDiv({ cls: "lilbee-wizard-experimental-note" });
this.renderSectionHeading(experimental, MESSAGES.WIZARD_WIKI_EXPERIMENTAL_HEADING);
experimental.createEl("p", {
text: MESSAGES.WIZARD_WIKI_EXPERIMENTAL_INTRO,
cls: "lilbee-wizard-experimental-intro",
});
const bullets = experimental.createEl("ul", { cls: "lilbee-wizard-experimental-bullets" });
bullets.createEl("li", { text: MESSAGES.WIZARD_WIKI_EXPERIMENTAL_QUALITY });
bullets.createEl("li", { text: MESSAGES.WIZARD_WIKI_EXPERIMENTAL_SLOW });
const tradeoffs = step.createEl("details", { cls: "lilbee-wizard-wiki-tradeoffs" });
tradeoffs.createEl("summary", { text: MESSAGES.WIZARD_WIKI_TRADEOFFS_LABEL });
const prosSection = tradeoffs.createDiv({ cls: "lilbee-wizard-wiki-section" });
this.renderSectionHeading(prosSection, MESSAGES.WIZARD_WIKI_PROS_HEADING);
const prosList = prosSection.createEl("ul");
prosList.createEl("li", { text: MESSAGES.WIZARD_WIKI_PRO_SUMMARIES });
prosList.createEl("li", { text: MESSAGES.WIZARD_WIKI_PRO_CROSSREFS });
prosList.createEl("li", { text: MESSAGES.WIZARD_WIKI_PRO_ANSWERS });
const consSection = tradeoffs.createDiv({ cls: "lilbee-wizard-wiki-section" });
this.renderSectionHeading(consSection, MESSAGES.WIZARD_WIKI_CONS_HEADING);
const consList = consSection.createEl("ul");
consList.createEl("li", { text: MESSAGES.WIZARD_WIKI_CON_TOKENS });
consList.createEl("li", { text: MESSAGES.WIZARD_WIKI_CON_ACCURACY });
consList.createEl("li", { text: MESSAGES.WIZARD_WIKI_CON_SEARCH });
consList.createEl("li", { text: MESSAGES.WIZARD_WIKI_CON_COMPLEXITY });
// Default to Skip for first-time users — experimental features
// shouldn't be on by default.
let wikiEnabled = this.plugin.settings.wikiEnabled ?? false;
const enableOption = step.createDiv({
cls: `lilbee-wizard-model-option${wikiEnabled ? " selected" : ""}`,
});
enableOption.createEl("strong", { text: MESSAGES.WIZARD_WIKI_ENABLE });
enableOption.createEl("p", { text: MESSAGES.WIZARD_WIKI_ENABLE_DESC });
const disableOption = step.createDiv({
cls: `lilbee-wizard-model-option${!wikiEnabled ? " selected" : ""}`,
});
disableOption.createEl("strong", { text: MESSAGES.WIZARD_WIKI_DISABLE });
disableOption.createEl("p", { text: MESSAGES.WIZARD_WIKI_DISABLE_DESC });
enableOption.addEventListener("click", () => {
wikiEnabled = true;
enableOption.classList.add("selected");
disableOption.classList.remove("selected");
});
disableOption.addEventListener("click", () => {
wikiEnabled = false;
disableOption.classList.add("selected");
enableOption.classList.remove("selected");
});
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const backBtn = actions.createEl("button", { text: MESSAGES.BUTTON_BACK });
backBtn.addEventListener("click", () => this.back());
const skipBtn = actions.createEl("button", { text: MESSAGES.BUTTON_SKIP_SETUP });
skipBtn.addEventListener("click", () => this.skip());
const nextBtn = actions.createEl("button", { text: MESSAGES.BUTTON_NEXT, cls: "mod-cta" });
nextBtn.addEventListener("click", () => {
this.plugin.settings.wikiEnabled = wikiEnabled;
void this.plugin.saveSettings();
this.next();
});
}
private renderDone(): void {
const step = this.beginStep();
this.renderStepHeader(step, MESSAGES.TITLE_ALL_SET);
// "Task-row" style summary: a bordered box with a green rail on the
// left, echoing the completed Task Center rows the user will see
// throughout normal operation.
const summary = step.createDiv({ cls: "lilbee-wizard-summary-card" });
const summaryBody = summary.createDiv({ cls: "lilbee-wizard-summary-body" });
this.renderSectionHeading(summaryBody, MESSAGES.WIZARD_SUMMARY_HEADING);
const stats = summaryBody.createDiv({ cls: "lilbee-wizard-summary-stats" });
if (this.pulledModelName) {
stats.createEl("span", {
cls: "lilbee-wizard-summary-stat",
text: MESSAGES.WIZARD_SUMMARY_MODEL.replace("{model}", this.pulledModelName),
});
}
if (this.syncResult) {
const total = this.syncResult.added.length + this.syncResult.updated.length + this.syncResult.unchanged;
const chunks = this.syncResult.added.length + this.syncResult.updated.length;
stats.createEl("span", {
cls: "lilbee-wizard-summary-stat",
text: MESSAGES.WIZARD_SUMMARY_FILES.replace("{count}", String(total)),
});
if (chunks > 0) {
stats.createEl("span", {
cls: "lilbee-wizard-summary-stat",
text: MESSAGES.WIZARD_SUMMARY_PROCESSED.replace("{count}", String(chunks)),
});
}
}
this.renderSectionHeading(step, MESSAGES.WIZARD_TIPS);
const tips = step.createDiv({ cls: "lilbee-wizard-tips" });
const tipData: [string, string][] = [
["\u{1F4AC}", MESSAGES.WIZARD_TIP_CHAT],
["\u{1F50D}", MESSAGES.WIZARD_TIP_SEARCH],
["\u{1F4C4}", MESSAGES.WIZARD_TIP_DRAG],
];
for (const [icon, text] of tipData) {
const tip = tips.createDiv({ cls: "lilbee-wizard-tip" });
tip.createEl("span", { cls: "lilbee-wizard-tip-icon", text: icon });
tip.createEl("span", { text });
}
step.createEl("p", { text: MESSAGES.WIZARD_CHANGE_SETTINGS, cls: "lilbee-wizard-hint" });
const actions = step.createDiv({ cls: "lilbee-wizard-actions" });
const openChatBtn = actions.createEl("button", { text: MESSAGES.BUTTON_OPEN_CHAT, cls: "mod-cta" });
openChatBtn.addEventListener("click", () => void this.complete());
}
next(): void {
if (this.step === WIZARD_STEP.WELCOME) {
const serverReady =
this.plugin.serverManager?.state === SERVER_STATE.READY ||
this.plugin.settings.serverMode === SERVER_MODE.EXTERNAL;
this.step = serverReady ? WIZARD_STEP.MODEL_PICKER : WIZARD_STEP.SERVER_MODE;
} else {
this.step++;
}
this.renderStep();
}
back(): void {
// Welcome may fast-forward over SERVER_MODE when the server is
// already up, but back() always honors it so users can revisit and
// switch managed/external without restarting the wizard.
if (this.step === WIZARD_STEP.MODEL_PICKER) {
this.step = WIZARD_STEP.SERVER_MODE;
} else if (this.step === WIZARD_STEP.EMBEDDING_PICKER) {
this.step = WIZARD_STEP.MODEL_PICKER;
} else {
this.step = Math.max(0, this.step - 1);
}
this.renderStep();
}
skip(): void {
this.close();
}
async complete(): Promise<void> {
this.plugin.settings.setupCompleted = true;
await this.plugin.saveSettings();
this.close();
// The done step's action is an explicit "Open chat", so land the user
// in the chat panel once. Nothing else is force-opened.
void this.plugin.activateChatView();
}
}
|