Commit fd42422d authored by Anuraag Jain's avatar Anuraag Jain
Browse files

refac: pullModel api

parent 17a6ca50
...@@ -249,8 +249,7 @@ export const deleteModel = async (token: string, tagName: string) => { ...@@ -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) => { ...@@ -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 null;
});
if (error) {
throw error;
}
return res; return res;
} catch (error) {
throw error;
}
}; };
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment