【新增】AI:API 模型管理
This commit is contained in:
parent
be13eb1d0d
commit
1776217f1c
@ -12,27 +12,27 @@ export interface ApiKeyVO {
|
|||||||
|
|
||||||
// AI API 密钥 API
|
// AI API 密钥 API
|
||||||
export const ApiKeyApi = {
|
export const ApiKeyApi = {
|
||||||
// 查询AI API 密钥分页
|
// 查询 API 密钥分页
|
||||||
getApiKeyPage: async (params: any) => {
|
getApiKeyPage: async (params: any) => {
|
||||||
return await request.get({ url: `/ai/api-key/page`, params })
|
return await request.get({ url: `/ai/api-key/page`, params })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 查询AI API 密钥详情
|
// 查询 API 密钥详情
|
||||||
getApiKey: async (id: number) => {
|
getApiKey: async (id: number) => {
|
||||||
return await request.get({ url: `/ai/api-key/get?id=` + id })
|
return await request.get({ url: `/ai/api-key/get?id=` + id })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 新增AI API 密钥
|
// 新增 API 密钥
|
||||||
createApiKey: async (data: ApiKeyVO) => {
|
createApiKey: async (data: ApiKeyVO) => {
|
||||||
return await request.post({ url: `/ai/api-key/create`, data })
|
return await request.post({ url: `/ai/api-key/create`, data })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 修改AI API 密钥
|
// 修改 API 密钥
|
||||||
updateApiKey: async (data: ApiKeyVO) => {
|
updateApiKey: async (data: ApiKeyVO) => {
|
||||||
return await request.put({ url: `/ai/api-key/update`, data })
|
return await request.put({ url: `/ai/api-key/update`, data })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 删除AI API 密钥
|
// 删除 API 密钥
|
||||||
deleteApiKey: async (id: number) => {
|
deleteApiKey: async (id: number) => {
|
||||||
return await request.delete({ url: `/ai/api-key/delete?id=` + id })
|
return await request.delete({ url: `/ai/api-key/delete?id=` + id })
|
||||||
}
|
}
|
||||||
|
43
src/api/ai/model/chatModel/index.ts
Normal file
43
src/api/ai/model/chatModel/index.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import request from '@/config/axios'
|
||||||
|
|
||||||
|
// AI 聊天模型 VO
|
||||||
|
export interface ChatModelVO {
|
||||||
|
id: number // 编号
|
||||||
|
keyId: number // API 秘钥编号
|
||||||
|
name: string // 模型名字
|
||||||
|
model: string // 模型标识
|
||||||
|
platform: string // 模型平台
|
||||||
|
sort: number // 排序
|
||||||
|
status: number // 状态
|
||||||
|
temperature: number // 温度参数
|
||||||
|
maxTokens: number // 单条回复的最大 Token 数量
|
||||||
|
maxContexts: number // 上下文的最大 Message 数量
|
||||||
|
}
|
||||||
|
|
||||||
|
// AI 聊天模型 API
|
||||||
|
export const ChatModelApi = {
|
||||||
|
// 查询聊天模型分页
|
||||||
|
getChatModelPage: async (params: any) => {
|
||||||
|
return await request.get({ url: `/ai/chat-model/page`, params })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 查询聊天模型详情
|
||||||
|
getChatModel: async (id: number) => {
|
||||||
|
return await request.get({ url: `/ai/chat-model/get?id=` + id })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增聊天模型
|
||||||
|
createChatModel: async (data: ChatModelVO) => {
|
||||||
|
return await request.post({ url: `/ai/chat-model/create`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 修改聊天模型
|
||||||
|
updateChatModel: async (data: ChatModelVO) => {
|
||||||
|
return await request.put({ url: `/ai/chat-model/update`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除聊天模型
|
||||||
|
deleteChatModel: async (id: number) => {
|
||||||
|
return await request.delete({ url: `/ai/chat-model/delete?id=` + id })
|
||||||
|
}
|
||||||
|
}
|
140
src/views/ai/model/chatModel/ChatModelForm.vue
Normal file
140
src/views/ai/model/chatModel/ChatModelForm.vue
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||||||
|
<el-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="formData"
|
||||||
|
:rules="formRules"
|
||||||
|
label-width="120px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
>
|
||||||
|
<el-form-item label="API 秘钥编号" prop="keyId">
|
||||||
|
<el-input v-model="formData.keyId" placeholder="请输入API 秘钥编号" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模型名字" prop="name">
|
||||||
|
<el-input v-model="formData.name" placeholder="请输入模型名字" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模型标识" prop="model">
|
||||||
|
<el-input v-model="formData.model" placeholder="请输入模型标识" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模型平台" prop="platform">
|
||||||
|
<el-input v-model="formData.platform" placeholder="请输入模型平台" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="排序" prop="sort">
|
||||||
|
<el-input v-model="formData.sort" placeholder="请输入排序" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-radio-group v-model="formData.status">
|
||||||
|
<el-radio label="1">请选择字典生成</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="温度参数" prop="temperature">
|
||||||
|
<el-input v-model="formData.temperature" placeholder="请输入温度参数" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="回复数 Token 数" prop="maxTokens">
|
||||||
|
<el-input v-model="formData.maxTokens" placeholder="请输入回复数 Token 数" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="上下文数量" prop="maxContexts">
|
||||||
|
<el-input v-model="formData.maxContexts" placeholder="请输入上下文数量" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ChatModelApi, ChatModelVO } from '@/api/ai/model/chatModel'
|
||||||
|
import { CommonStatusEnum } from '@/utils/constants'
|
||||||
|
|
||||||
|
/** API 聊天模型 表单 */
|
||||||
|
defineOptions({ name: 'ChatModelForm' })
|
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const dialogTitle = ref('') // 弹窗的标题
|
||||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||||
|
const formData = ref({
|
||||||
|
id: undefined,
|
||||||
|
keyId: undefined,
|
||||||
|
name: undefined,
|
||||||
|
model: undefined,
|
||||||
|
platform: undefined,
|
||||||
|
sort: undefined,
|
||||||
|
status: CommonStatusEnum.ENABLE,
|
||||||
|
temperature: undefined,
|
||||||
|
maxTokens: undefined,
|
||||||
|
maxContexts: undefined
|
||||||
|
})
|
||||||
|
const formRules = reactive({
|
||||||
|
keyId: [{ required: true, message: 'API 秘钥编号不能为空', trigger: 'blur' }],
|
||||||
|
name: [{ required: true, message: '模型名字不能为空', trigger: 'blur' }],
|
||||||
|
model: [{ required: true, message: '模型标识不能为空', trigger: 'blur' }],
|
||||||
|
platform: [{ required: true, message: '模型平台不能为空', trigger: 'blur' }],
|
||||||
|
sort: [{ required: true, message: '排序不能为空', trigger: 'blur' }],
|
||||||
|
status: [{ required: true, message: '状态不能为空', trigger: 'blur' }]
|
||||||
|
})
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const open = async (type: string, id?: number) => {
|
||||||
|
dialogVisible.value = true
|
||||||
|
dialogTitle.value = t('action.' + type)
|
||||||
|
formType.value = type
|
||||||
|
resetForm()
|
||||||
|
// 修改时,设置数据
|
||||||
|
if (id) {
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
formData.value = await ChatModelApi.getChatModel(id)
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||||
|
|
||||||
|
/** 提交表单 */
|
||||||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||||
|
const submitForm = async () => {
|
||||||
|
// 校验表单
|
||||||
|
await formRef.value.validate()
|
||||||
|
// 提交请求
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const data = formData.value as unknown as ChatModelVO
|
||||||
|
if (formType.value === 'create') {
|
||||||
|
await ChatModelApi.createChatModel(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await ChatModelApi.updateChatModel(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
dialogVisible.value = false
|
||||||
|
// 发送操作成功的事件
|
||||||
|
emit('success')
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置表单 */
|
||||||
|
const resetForm = () => {
|
||||||
|
formData.value = {
|
||||||
|
id: undefined,
|
||||||
|
keyId: undefined,
|
||||||
|
name: undefined,
|
||||||
|
model: undefined,
|
||||||
|
platform: undefined,
|
||||||
|
sort: undefined,
|
||||||
|
status: CommonStatusEnum.ENABLE,
|
||||||
|
temperature: undefined,
|
||||||
|
maxTokens: undefined,
|
||||||
|
maxContexts: undefined
|
||||||
|
}
|
||||||
|
formRef.value?.resetFields()
|
||||||
|
}
|
||||||
|
</script>
|
179
src/views/ai/model/chatModel/index.vue
Normal file
179
src/views/ai/model/chatModel/index.vue
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
<template>
|
||||||
|
<ContentWrap>
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<el-form
|
||||||
|
class="-mb-15px"
|
||||||
|
:model="queryParams"
|
||||||
|
ref="queryFormRef"
|
||||||
|
:inline="true"
|
||||||
|
label-width="68px"
|
||||||
|
>
|
||||||
|
<el-form-item label="模型名字" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.name"
|
||||||
|
placeholder="请输入模型名字"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模型标识" prop="model">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.model"
|
||||||
|
placeholder="请输入模型标识"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模型平台" prop="platform">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.platform"
|
||||||
|
placeholder="请输入模型平台"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||||
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
@click="openForm('create')"
|
||||||
|
v-hasPermi="['ai:chat-model:create']"
|
||||||
|
>
|
||||||
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<ContentWrap>
|
||||||
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
||||||
|
<el-table-column label="编号" align="center" prop="id" />
|
||||||
|
<el-table-column label="API 秘钥编号" align="center" prop="keyId" />
|
||||||
|
<el-table-column label="模型名字" align="center" prop="name" />
|
||||||
|
<el-table-column label="模型标识" align="center" prop="model" />
|
||||||
|
<el-table-column label="模型平台" align="center" prop="platform" />
|
||||||
|
<el-table-column label="排序" align="center" prop="sort" />
|
||||||
|
<el-table-column label="状态" align="center" prop="status" />
|
||||||
|
<el-table-column label="温度参数" align="center" prop="temperature" />
|
||||||
|
<el-table-column label="回复数 Token 数" align="center" prop="maxTokens" />
|
||||||
|
<el-table-column label="上下文数量" align="center" prop="maxContexts" />
|
||||||
|
<el-table-column
|
||||||
|
label="创建时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
width="180px"
|
||||||
|
/>
|
||||||
|
<el-table-column label="操作" align="center">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
@click="openForm('update', scope.row.id)"
|
||||||
|
v-hasPermi="['ai:chat-model:update']"
|
||||||
|
>
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="danger"
|
||||||
|
@click="handleDelete(scope.row.id)"
|
||||||
|
v-hasPermi="['ai:chat-model:delete']"
|
||||||
|
>
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 表单弹窗:添加/修改 -->
|
||||||
|
<ChatModelForm ref="formRef" @success="getList" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
import download from '@/utils/download'
|
||||||
|
import { ChatModelApi, ChatModelVO } from '@/api/ai/model/chatModel'
|
||||||
|
import ChatModelForm from './ChatModelForm.vue'
|
||||||
|
|
||||||
|
/** API 聊天模型 列表 */
|
||||||
|
defineOptions({ name: 'AiChatModel' })
|
||||||
|
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
|
||||||
|
const loading = ref(true) // 列表的加载中
|
||||||
|
const list = ref<ChatModelVO[]>([]) // 列表的数据
|
||||||
|
const total = ref(0) // 列表的总页数
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: undefined,
|
||||||
|
model: undefined,
|
||||||
|
platform: undefined
|
||||||
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const exportLoading = ref(false) // 导出的加载中
|
||||||
|
|
||||||
|
/** 查询列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true
|
||||||
|
try {
|
||||||
|
const data = await ChatModelApi.getChatModelPage(queryParams)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value.resetFields()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 添加/修改操作 */
|
||||||
|
const formRef = ref()
|
||||||
|
const openForm = (type: string, id?: number) => {
|
||||||
|
formRef.value.open(type, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (id: number) => {
|
||||||
|
try {
|
||||||
|
// 删除的二次确认
|
||||||
|
await message.delConfirm()
|
||||||
|
// 发起删除
|
||||||
|
await ChatModelApi.deleteChatModel(id)
|
||||||
|
message.success(t('common.delSuccess'))
|
||||||
|
// 刷新列表
|
||||||
|
await getList()
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(() => {
|
||||||
|
getList()
|
||||||
|
})
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user