forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.ts
64 lines (54 loc) · 2.39 KB
/
routes.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { CursorPaginationState } from "src/components/DataTable/useCursorPagination";
import { TaskType } from "src/types/Task";
export type RouteQuery = Record<string, string | number | boolean | undefined>;
export const stringifyQuery = (query: RouteQuery | undefined) => {
if (!query) {
return "";
}
const filteredQuery = Object.fromEntries(Object.entries(query).filter(([, value]) => value !== undefined)) as Record<
string,
string
>;
return new URLSearchParams(filteredQuery).toString();
};
const createRoute = (path: string, query?: RouteQuery) => {
if (!query) {
return path;
}
return `${path}?${stringifyQuery(query)}`;
};
export const ROUTES = {
ADMIN_MESSAGE_DETAIL: (id: string) => `/admin/messages/${id}`,
MESSAGE_DETAIL: (id: string) => `/messages/${id}`,
ADMIN_USER_DETAIL: (id: string) => `/admin/manage_user/${id}`,
CHAT: (id: string) => `/chat/${id}`,
};
export type QueryWithLang<T extends RouteQuery | undefined = undefined> = T extends undefined
? { lang: string }
: T & { lang: string };
const withLang =
<T extends RouteQuery | undefined = undefined>(path: string, q?: T) =>
(query: QueryWithLang<T>) => {
return createRoute(path, { ...q, ...query });
};
export const API_ROUTES = {
NEW_TASK: (type: TaskType, query: QueryWithLang) => createRoute(`/api/new_task/${type}`, query),
UPDATE_TASK: "/api/update_task",
AVAILABLE_TASK: withLang("/api/available_tasks"),
RECENT_MESSAGES: withLang("/api/messages"),
ADMIN_DELETE_MESSAGE: (messageId: string) => createRoute(`/api/admin/delete_message/${messageId}`),
ADMIN_UNDELETE_MESSAGE: (messageId: string) => createRoute(`/api/admin/undelete_message/${messageId}`),
ADMIN_MESSAGE_LIST: (query: CursorPaginationState & { user_id?: string; include_user?: boolean }) =>
createRoute("/api/admin/messages", query),
// chat:
GET_CHAT: (chat_id: string) => createRoute(`/api/chat`, { chat_id }),
LIST_CHAT: "/api/chat",
GET_MESSAGE: (chat_id: string, message_id: string) => createRoute(`/api/chat/message`, { chat_id, message_id }),
CREATE_PROMPTER_MESSAGE: `/api/chat/prompter_message`,
CREATE_ASSISTANT_MESSAGE: `/api/chat/assistant_message`,
CHAT_MESSAGE_VOTE: `/api/chat/vote`,
STREAM_CHAT_MESSAGE: (chat_id: string, message_id: string) =>
createRoute(`/api/chat/events`, { chat_id, message_id }),
GET_CHAT_MODELS: "/api/chat/models",
UPDATE_CHAT: (id: string) => `/api/chat`,
};