Files
chatgpt-ui/composables/states.js
2023-02-12 14:16:34 +08:00

5 lines
238 B
JavaScript

export const useModels = () => useState('models', () => getStoredModels())
export const useCurrentModel = () => useState('currentModel', () => getCurrentModel())
export const useApiKey = () => useState('apiKey', () => getStoredApiKey())