Spaces:
Runtime error
Runtime error
File size: 3,425 Bytes
41af422 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
<script setup lang='ts'>
import { onMounted, ref } from 'vue'
import { NButton, NInput, NSpin, useMessage } from 'naive-ui'
import { ConfigState } from './model'
import { fetchChatConfig, fetchUpdateBaseSetting } from '@/api'
import { t } from '@/locales'
const ms = useMessage()
const loading = ref(false)
const saving = ref(false)
const config = ref(new ConfigState())
async function fetchConfig() {
try {
loading.value = true
const { data } = await fetchChatConfig<ConfigState>()
config.value = data
}
finally {
loading.value = false
}
}
async function updateBaseSetting(baseConfig?: Partial<ConfigState>) {
if (!baseConfig)
return
saving.value = true
try {
const { data } = await fetchUpdateBaseSetting(baseConfig)
config.value = data
ms.success(t('common.success'))
}
catch (error: any) {
ms.error(error.message)
}
saving.value = false
}
onMounted(() => {
fetchConfig()
})
</script>
<template>
<NSpin :show="loading">
<div class="p-4 space-y-5 min-h-[200px]">
<div class="space-y-6">
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.apiBaseUrl') }}</span>
<div class="flex-1">
<NInput :value="config.apiBaseUrl" placeholder="https://api.openai.com, Only used by ChatGPTAPI" @input="(val) => { config.apiBaseUrl = val }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.reverseProxy') }}</span>
<div class="flex-1">
<NInput :value="config.reverseProxy" placeholder="Only used by ChatGPTUnofficialProxyAPI" @input="(val) => { config.reverseProxy = val }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.timeout') }}</span>
<div class="flex-1">
<NInput :value="config.timeoutMs !== undefined ? String(config.timeoutMs) : undefined" placeholder="" @input="(val) => { config.timeoutMs = typeof val === 'string' ? Number(val) : undefined }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.socks') }}</span>
<div class="flex-1">
<NInput :value="config.socksProxy" placeholder="" @input="(val) => { config.socksProxy = val }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.socksAuth') }}</span>
<div class="flex-1">
<NInput :value="config.socksAuth" placeholder="name:pasword" @input="(val) => { config.socksAuth = val }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.httpsProxy') }}</span>
<div class="flex-1">
<NInput :value="config.httpsProxy" placeholder="" @input="(val) => { config.httpsProxy = val }" />
</div>
</div>
<div class="flex items-center space-x-4">
<span class="flex-shrink-0 w-[100px]" />
<NButton :loading="saving" type="primary" @click="updateBaseSetting(config)">
{{ $t('common.save') }}
</NButton>
</div>
</div>
</div>
</NSpin>
</template>
|