codemaxxing 0.4.2 → 0.4.3
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 +1 -1
- package/package.json +1 -1
- package/src/index.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ import { listServers, addServer, removeServer, getConnectedServers } from "./uti
|
|
|
16
16
|
import { detectHardware, formatBytes } from "./utils/hardware.js";
|
|
17
17
|
import { getRecommendationsWithLlmfit, getFitIcon, isLlmfitAvailable } from "./utils/models.js";
|
|
18
18
|
import { isOllamaInstalled, isOllamaRunning, getOllamaInstallCommand, startOllama, stopOllama, pullModel, listInstalledModelsDetailed, deleteModel, getGPUMemoryUsage } from "./utils/ollama.js";
|
|
19
|
-
const VERSION = "
|
|
19
|
+
const VERSION = require("../package.json").version;
|
|
20
20
|
// ── Helpers ──
|
|
21
21
|
function formatTimeAgo(date) {
|
|
22
22
|
const secs = Math.floor((Date.now() - date.getTime()) / 1000);
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -17,7 +17,7 @@ import { detectHardware, formatBytes, type HardwareInfo } from "./utils/hardware
|
|
|
17
17
|
import { getRecommendations, getRecommendationsWithLlmfit, getFitIcon, isLlmfitAvailable, type ScoredModel } from "./utils/models.js";
|
|
18
18
|
import { isOllamaInstalled, isOllamaRunning, getOllamaInstallCommand, startOllama, stopOllama, pullModel, listInstalledModelsDetailed, deleteModel, getGPUMemoryUsage, type PullProgress } from "./utils/ollama.js";
|
|
19
19
|
|
|
20
|
-
const VERSION = "
|
|
20
|
+
const VERSION = require("../package.json").version;
|
|
21
21
|
|
|
22
22
|
// ── Helpers ──
|
|
23
23
|
function formatTimeAgo(date: Date): string {
|