This commit is contained in:
Timothy Jaeryang Baek 2025-01-22 12:19:11 -08:00
parent 419005a578
commit 8380d3f5ae

View File

@ -360,12 +360,7 @@ export const generateChatCompletion = async (token: string = '', body: object) =
return [res, controller]; return [res, controller];
}; };
export const createModel = async ( export const createModel = async (token: string, payload: object, urlIdx: string | null = null) => {
token: string,
tagName: string,
content: string,
urlIdx: string | null = null
) => {
let error = null; let error = null;
const res = await fetch( const res = await fetch(
@ -377,10 +372,7 @@ export const createModel = async (
'Content-Type': 'application/json', 'Content-Type': 'application/json',
Authorization: `Bearer ${token}` Authorization: `Bearer ${token}`
}, },
body: JSON.stringify({ body: JSON.stringify(payload)
name: tagName,
modelfile: content
})
} }
).catch((err) => { ).catch((err) => {
error = err; error = err;