Skip to content

Commit

Permalink
0.2.43
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollingj committed Jul 16, 2024
1 parent 4a7cbec commit 1d3dc34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { CaretCanvas } from "./caret_canvas";
const parseString = require("xml2js").parseString;

export const DEFAULT_SETTINGS: CaretPluginSettings = {
caret_version: "0.2.42",
caret_version: "0.2.43",
chat_logs_folder: "caret/chats",
chat_logs_date_format_bool: false,
chat_logs_rename_bool: true,
Expand Down
2 changes: 1 addition & 1 deletion modals/removeCustomModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class RemoveCustomModelModal extends Modal {
const table = contentEl.createEl("table", { cls: "caret-custom-models-table" });
const headerRow = table.createEl("tr");
headerRow.createEl("th", { text: "Name" });
headerRow.createEl("th", { text: "Context Window" });
headerRow.createEl("th", { text: "Context window" });
headerRow.createEl("th", { text: "URL" });
headerRow.createEl("th", { text: "Action" });

Expand Down

0 comments on commit 1d3dc34

Please sign in to comment.