Package updates and minor fixes

This commit is contained in:
Scott Idem
2025-09-11 19:01:59 -04:00
parent b78cb8eac2
commit 01273c3c4d
4 changed files with 659 additions and 683 deletions

1327
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "osit-aether-app-svelte",
"version": "3.3.0",
"version": "3.3.1",
"description": "One Sky IT's Aether App created with Svelte, SvelteKit, Tailwind CSS, Lucide, Font Awesome, and Skeleton UI. -Scott Idem",
"homepage": "https://oneskyit.com/",
"private": true,
@@ -70,7 +70,7 @@
"svelte": "^5.0.0",
"svelte-awesome-color-picker": "^4.0.0",
"svelte-check": "^4.0.0",
"svelte-highlight": "^7.8.3",
"svelte-highlight": "^7.8.4",
"svelte-idle": "^3.0.1",
"svelte-tiptap": "^2.1.0",
"tailwind-merge": "^3.0.0",
@@ -79,7 +79,7 @@
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-svelte-plugin": "^0.3.47",
"typescript-svelte-plugin": "^0.3.50",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},

View File

@@ -33,6 +33,9 @@ let journals_local_data_struct: key_val = {
entry_view_history_kv: {}, // Keyed by journal_entry_id for quick lookup.
entry_view_history_max: 15, // Maximum number of journal entries to keep in history.
// llm_api_base_url: 'https://ai.dgrzone.com/api',
// llm_api_model: 'dgrzone-deepseek-8b-quick',
journal: {
edit: false,
edit_kv: {},

View File

@@ -31,11 +31,13 @@ import {
import OpenAI from "openai";
// import { Configuration, OpenAIApi } from 'openai';
let llm_api_token = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVhYjI2MzdlLThiMjktNGM2Zi05MzVhLWFkYjU1MDkwMGU5MCJ9.zc2u8vVH1yNt_mDHF8m9f_ONHfRXHjjC9gb-Y9jYwI0';
let llm_api_token = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVhYjI2MzdlLThiMjktNGM2Zi05MzVhLWFkYjU1MDkwMGU5MCJ9.4y5AStXZJAVnWRlgG3lVV0-xKIfMzqdNRuInGwT0ThQ';
// let llm_api_base_url = 'http://localhost:3000/api';
let llm_api_base_url = 'https://ai.dgrzone.com/api';
// api_model = 'DgrZone DeepSeek (8b quick)';
let llm_api_model = 'dgrzone-deepseek-8b-quick';
let llm_api_base_url = 'http://localhost:3000/api';
// const configuration = new Configuration({
// apiKey: llm_api_token,