remove unused endpoints

This commit is contained in:
Daniel D Orlando 2023-04-06 13:05:25 -07:00
parent 4eff1c03dd
commit 06a7ed31ac

View file

@ -22,14 +22,6 @@ export const deleteConversation = () => {
return `/api/convos/clear`;
};
export const prompts = () => {
return `/api/prompts`;
};
export const generateTitle = () => {
return `/api/convos/gen_title`;
};
export const search = (q: string, pageNumber: string) => {
return `/api/search?q=${q}&pageNumber=${pageNumber}`;
}