-
Notifications
You must be signed in to change notification settings - Fork 677
/
Copy pathchat.ts
45 lines (35 loc) · 1.36 KB
/
chat.ts
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
import axios from 'axios';
import { OpenaiChatPlugin, OpenaiChatPluginListResponse, OpenaiChatPluginUserSettings } from '@/types/schema';
import ApiUrl from './url';
export type AskInfo = {
message: string;
new_title?: string;
conversation_id?: string;
parent_id?: string;
model_name?: string;
timeout?: number;
};
export function getAskWebsocketApiUrl() {
const protocol = window.location.protocol === 'https:' ? 'wss' : 'ws';
const url = `${protocol}://${window.location.host}${import.meta.env.VITE_API_BASE_URL}chat`;
// console.log('getAskWebsocketApiUrl', url);
return url;
}
export function getOpenaiChatPluginsApi(offset: number, limit: number, category?: string, search?: string) {
return axios.get<OpenaiChatPluginListResponse>(ApiUrl.ChatPlugins, {
params: { offset, limit, category, search },
});
}
export function getInstalledOpenaiChatPluginApi(pluginId: string) {
return axios.get<OpenaiChatPlugin>(`${ApiUrl.InstalledChatPlugins}/${pluginId}`);
}
export function getInstalledOpenaiChatPluginsApi() {
return axios.get<OpenaiChatPluginListResponse>(ApiUrl.InstalledChatPlugins);
}
export function patchOpenaiChatPluginsUsersSettingsApi(pluginId: string, setting: OpenaiChatPluginUserSettings) {
return axios.patch(`${ApiUrl.ChatPlugins}/${pluginId}/user-settings`, setting, {
params: {
plugin_id: pluginId,
},
});
}