Fraser commited on
Commit
f0b54f8
·
1 Parent(s): 4164789
src/App.svelte CHANGED
@@ -9,7 +9,7 @@
9
  import Encounters from './lib/components/Pages/Encounters.svelte';
10
  import Pictuary from './lib/components/Pages/Pictuary.svelte';
11
  import type { HuggingFaceLibs, GradioLibs, GradioClient } from './lib/types';
12
- import { setQwenClientResetter } from './lib/utils/qwenTimeout';
13
 
14
  // These will be loaded from window after HF libs are loaded
15
  let hfAuth: HuggingFaceLibs | null = $state(null);
@@ -36,8 +36,8 @@
36
  pictuary: 'Pictuary'
37
  };
38
 
39
- // Auth state from store
40
- const auth = $derived(authStore);
41
 
42
  // UI state
43
  let isDetailPageOpen = $state(false);
 
9
  import Encounters from './lib/components/Pages/Encounters.svelte';
10
  import Pictuary from './lib/components/Pages/Pictuary.svelte';
11
  import type { HuggingFaceLibs, GradioLibs, GradioClient } from './lib/types';
12
+ // import { setQwenClientResetter } from './lib/utils/qwenTimeout'; // Unused since qwen is disabled
13
 
14
  // These will be loaded from window after HF libs are loaded
15
  let hfAuth: HuggingFaceLibs | null = $state(null);
 
36
  pictuary: 'Pictuary'
37
  };
38
 
39
+ // Auth state from store (unused but authStore is used elsewhere)
40
+ // const auth = $derived(authStore);
41
 
42
  // UI state
43
  let isDetailPageOpen = $state(false);
src/lib/components/PicletGenerator/PicletGenerator.svelte CHANGED
@@ -10,7 +10,7 @@
10
  import { savePicletInstance, generatedDataToPicletInstance } from '$lib/db/piclets';
11
  import { PicletType, TYPE_DATA } from '$lib/types/picletTypes';
12
  import { EncounterService } from '$lib/db/encounterService';
13
- import { withQwenTimeout } from '$lib/utils/qwenTimeout';
14
 
15
  interface Props extends PicletGeneratorProps {
16
  // Trainer mode props
 
10
  import { savePicletInstance, generatedDataToPicletInstance } from '$lib/db/piclets';
11
  import { PicletType, TYPE_DATA } from '$lib/types/picletTypes';
12
  import { EncounterService } from '$lib/db/encounterService';
13
+ // import { withQwenTimeout } from '$lib/utils/qwenTimeout'; // Unused since qwen is disabled
14
 
15
  interface Props extends PicletGeneratorProps {
16
  // Trainer mode props