Skip to content

Commit

Permalink
feat: removed powerbase references
Browse files Browse the repository at this point in the history
  • Loading branch information
Fortyseven committed Jul 28, 2024
1 parent 8468f3a commit 17a255c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib/localStorage_stores.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const unSubscriptions = [];
const STORE_BLACKLIST = [
'model_settings',
'DEFAULT_OL_ENDPOINT',
'DEFAULT_PB_ENDPOINT',
'responseInProgress',
'chatState_type',
'chatState_defaults',
Expand Down
2 changes: 0 additions & 2 deletions src/stores/stores.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Writable, writable } from 'svelte/store';

export const DEFAULT_OL_ENDPOINT = 'http://localhost:11434';
export const DEFAULT_PB_ENDPOINT = 'http://localhost:8090/';

export const models = writable([]);
export const chatTimeline = writable([]);
Expand Down Expand Up @@ -43,7 +42,6 @@ export const appState: Writable<AppState> = writable({
play_sounds: true
},
apiEndpoint: DEFAULT_OL_ENDPOINT,
pbEndpoint: DEFAULT_PB_ENDPOINT,
savedSystemPrompts: []
});

Expand Down

0 comments on commit 17a255c

Please sign in to comment.