UnisKB/ui/src/api/chat/chat.ts

76 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-06-16 04:08:09 +00:00
import { Result } from '@/request/Result'
import {
get,
post,
postStream,
del,
put,
request,
download,
exportFile,
} from '@/request/chat/index'
2025-06-17 03:58:35 +00:00
import { type ChatProfile } from '@/api/type/chat'
2025-06-16 04:08:09 +00:00
import { type Ref } from 'vue'
2025-06-16 11:00:46 +00:00
import useStore from '@/stores'
const prefix: any = { _value: '/workspace/' }
Object.defineProperty(prefix, 'value', {
get: function () {
const { user } = useStore()
return this._value + user.getWorkspaceId() + '/application'
},
})
2025-06-16 04:08:09 +00:00
/**
* id
* @param application_id id
* @param loading
* @returns
*/
2025-06-17 03:58:35 +00:00
const open: (loading?: Ref<boolean>) => Promise<Result<string>> = (loading) => {
return get('/open', {}, loading)
2025-06-16 04:08:09 +00:00
}
/**
*
* @param
* chat_id: string
* data
*/
const chat: (chat_id: string, data: any) => Promise<any> = (chat_id, data) => {
2025-06-17 03:58:35 +00:00
return postStream(`/chat/api/chat_message/${chat_id}`, data)
2025-06-16 04:08:09 +00:00
}
2025-06-17 03:58:35 +00:00
const chatProfile: (assessToken: string, loading?: Ref<boolean>) => Promise<Result<ChatProfile>> = (
2025-06-16 04:08:09 +00:00
assessToken,
loading,
) => {
2025-06-17 03:58:35 +00:00
return get('/profile', { access_token: assessToken }, loading)
2025-06-16 04:08:09 +00:00
}
2025-06-17 03:58:35 +00:00
/**
*
* @param assessToken
* @param loading
* @returns
*/
const anonymousAuthentication: (
assessToken: string,
loading?: Ref<boolean>,
) => Promise<Result<any>> = (assessToken, loading) => {
return post('/auth/anonymous', { access_token: assessToken }, {}, loading)
}
/**
*
* @param loading
* @returns
*/
const applicationProfile: (loading?: Ref<boolean>) => Promise<Result<any>> = (loading) => {
return get('/application/profile', {}, loading)
2025-06-16 04:08:09 +00:00
}
export default {
open,
chat,
chatProfile,
2025-06-17 03:58:35 +00:00
anonymousAuthentication,
applicationProfile,
2025-06-16 04:08:09 +00:00
}