|
@@ -192,6 +192,141 @@ export const deleteChatById = async (token: string, id: string) => {
|
|
return res;
|
|
return res;
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+export const getTagsById = async (token: string, id: string) => {
|
|
|
|
+ let error = null;
|
|
|
|
+
|
|
|
|
+ const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/tags`, {
|
|
|
|
+ method: 'GET',
|
|
|
|
+ headers: {
|
|
|
|
+ Accept: 'application/json',
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ ...(token && { authorization: `Bearer ${token}` })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .then(async (res) => {
|
|
|
|
+ if (!res.ok) throw await res.json();
|
|
|
|
+ return res.json();
|
|
|
|
+ })
|
|
|
|
+ .then((json) => {
|
|
|
|
+ return json;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ error = err;
|
|
|
|
+
|
|
|
|
+ console.log(err);
|
|
|
|
+ return null;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (error) {
|
|
|
|
+ throw error;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return res;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+export const addTagById = async (token: string, id: string, tagName: string) => {
|
|
|
|
+ let error = null;
|
|
|
|
+
|
|
|
|
+ const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/tags`, {
|
|
|
|
+ method: 'POST',
|
|
|
|
+ headers: {
|
|
|
|
+ Accept: 'application/json',
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ ...(token && { authorization: `Bearer ${token}` })
|
|
|
|
+ },
|
|
|
|
+ body: JSON.stringify({
|
|
|
|
+ tag_name: tagName,
|
|
|
|
+ chat_id: id
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ .then(async (res) => {
|
|
|
|
+ if (!res.ok) throw await res.json();
|
|
|
|
+ return res.json();
|
|
|
|
+ })
|
|
|
|
+ .then((json) => {
|
|
|
|
+ return json;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ error = err;
|
|
|
|
+
|
|
|
|
+ console.log(err);
|
|
|
|
+ return null;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (error) {
|
|
|
|
+ throw error;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return res;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+export const deleteTagById = async (token: string, id: string, tagName: string) => {
|
|
|
|
+ let error = null;
|
|
|
|
+
|
|
|
|
+ const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/tags`, {
|
|
|
|
+ method: 'DELETE',
|
|
|
|
+ headers: {
|
|
|
|
+ Accept: 'application/json',
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ ...(token && { authorization: `Bearer ${token}` })
|
|
|
|
+ },
|
|
|
|
+ body: JSON.stringify({
|
|
|
|
+ tag_name: tagName,
|
|
|
|
+ chat_id: id
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ .then(async (res) => {
|
|
|
|
+ if (!res.ok) throw await res.json();
|
|
|
|
+ return res.json();
|
|
|
|
+ })
|
|
|
|
+ .then((json) => {
|
|
|
|
+ return json;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ error = err;
|
|
|
|
+
|
|
|
|
+ console.log(err);
|
|
|
|
+ return null;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (error) {
|
|
|
|
+ throw error;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return res;
|
|
|
|
+};
|
|
|
|
+export const deleteTagsById = async (token: string, id: string) => {
|
|
|
|
+ let error = null;
|
|
|
|
+
|
|
|
|
+ const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/tags/all`, {
|
|
|
|
+ method: 'DELETE',
|
|
|
|
+ headers: {
|
|
|
|
+ Accept: 'application/json',
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ ...(token && { authorization: `Bearer ${token}` })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .then(async (res) => {
|
|
|
|
+ if (!res.ok) throw await res.json();
|
|
|
|
+ return res.json();
|
|
|
|
+ })
|
|
|
|
+ .then((json) => {
|
|
|
|
+ return json;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ error = err;
|
|
|
|
+
|
|
|
|
+ console.log(err);
|
|
|
|
+ return null;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (error) {
|
|
|
|
+ throw error;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return res;
|
|
|
|
+};
|
|
|
|
+
|
|
export const deleteAllChats = async (token: string) => {
|
|
export const deleteAllChats = async (token: string) => {
|
|
let error = null;
|
|
let error = null;
|
|
|
|
|