mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-22 19:06:12 +00:00
6494f5ac2e
* fix: updated logger and model caching * usage token stream issue fix * minor changes * updated starter template change to fix the app title * starter template bigfix * fixed hydretion errors and raw logs * removed raw log * made auto select template false by default * more cleaner logs and updated logic to call dynamicModels only if not found in static models * updated starter template instructions * browser console log improved for firefox * provider icons fix icons
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { atom, map } from 'nanostores';
|
|
import { workbenchStore } from './workbench';
|
|
import { PROVIDER_LIST } from '~/utils/constants';
|
|
import type { IProviderConfig } from '~/types/model';
|
|
|
|
export interface Shortcut {
|
|
key: string;
|
|
ctrlKey?: boolean;
|
|
shiftKey?: boolean;
|
|
altKey?: boolean;
|
|
metaKey?: boolean;
|
|
ctrlOrMetaKey?: boolean;
|
|
action: () => void;
|
|
}
|
|
|
|
export interface Shortcuts {
|
|
toggleTerminal: Shortcut;
|
|
}
|
|
|
|
export const URL_CONFIGURABLE_PROVIDERS = ['Ollama', 'LMStudio', 'OpenAILike'];
|
|
export const LOCAL_PROVIDERS = ['OpenAILike', 'LMStudio', 'Ollama'];
|
|
|
|
export type ProviderSetting = Record<string, IProviderConfig>;
|
|
|
|
export const shortcutsStore = map<Shortcuts>({
|
|
toggleTerminal: {
|
|
key: 'j',
|
|
ctrlOrMetaKey: true,
|
|
action: () => workbenchStore.toggleTerminal(),
|
|
},
|
|
});
|
|
|
|
const initialProviderSettings: ProviderSetting = {};
|
|
PROVIDER_LIST.forEach((provider) => {
|
|
initialProviderSettings[provider.name] = {
|
|
...provider,
|
|
settings: {
|
|
enabled: true,
|
|
},
|
|
};
|
|
});
|
|
|
|
//TODO: need to create one single map for all these flags
|
|
|
|
export const providersStore = map<ProviderSetting>(initialProviderSettings);
|
|
|
|
export const isDebugMode = atom(false);
|
|
|
|
export const isEventLogsEnabled = atom(false);
|
|
|
|
export const isLocalModelsEnabled = atom(true);
|
|
|
|
export const promptStore = atom<string>('default');
|
|
|
|
export const latestBranchStore = atom(false);
|
|
|
|
export const autoSelectStarterTemplate = atom(false);
|
|
export const enableContextOptimizationStore = atom(false);
|