refac: pullModel api

This commit is contained in:
Anuraag Jain 2024-01-06 15:01:47 +02:00
parent 17a6ca505b
commit fd42422d6c

View file

@ -249,8 +249,7 @@ export const deleteModel = async (token: string, tagName: string) => {
}; };
export const pullModel = async (token: string, tagName: string) => { export const pullModel = async (token: string, tagName: string) => {
let error = null; try {
const res = await fetch(`${OLLAMA_API_BASE_URL}/pull`, { const res = await fetch(`${OLLAMA_API_BASE_URL}/pull`, {
method: 'POST', method: 'POST',
headers: { headers: {
@ -260,14 +259,9 @@ export const pullModel = async (token: string, tagName: string) => {
body: JSON.stringify({ body: JSON.stringify({
name: tagName name: tagName
}) })
}).catch((err) => { })
error = err; return res;
return null; } catch (error) {
});
if (error) {
throw error; throw error;
} }
return res;
}; };