fix: allow command named create

This commit is contained in:
Timothy J. Baek 2024-01-06 17:55:41 -08:00
parent c55c872867
commit 82114c45ee
2 changed files with 11 additions and 13 deletions

View file

@ -72,7 +72,7 @@ export const getPrompts = async (token: string = '') => {
export const getPromptByCommand = async (token: string, command: string) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/${command}`, {
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/command/${command}`, {
method: 'GET',
headers: {
Accept: 'application/json',
@ -109,7 +109,7 @@ export const updatePromptByCommand = async (
) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/${command}/update`, {
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/command/${command}/update`, {
method: 'POST',
headers: {
Accept: 'application/json',
@ -148,7 +148,7 @@ export const deletePromptByCommand = async (token: string, command: string) => {
command = command.charAt(0) === '/' ? command.slice(1) : command;
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/${command}/delete`, {
const res = await fetch(`${WEBUI_API_BASE_URL}/prompts/command/${command}/delete`, {
method: 'DELETE',
headers: {
Accept: 'application/json',