open-webui/src/lib/apis/ollama/index.ts

509 lines
10 KiB
TypeScript
Raw Normal View History

2023-12-26 19:28:30 +08:00
import { OLLAMA_API_BASE_URL } from '$lib/constants';
2024-05-22 14:58:42 +08:00
export const getOllamaConfig = async (token: string = '') => {
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/config`, {
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
return res;
};
export const updateOllamaConfig = async (token: string = '', enable_ollama_api: boolean) => {
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/config/update`, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
},
body: JSON.stringify({
enable_ollama_api: enable_ollama_api
})
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
return res;
};
2024-03-05 16:59:35 +08:00
export const getOllamaUrls = async (token: string = '') => {
2023-12-26 19:28:30 +08:00
let error = null;
2024-03-05 16:59:35 +08:00
const res = await fetch(`${OLLAMA_API_BASE_URL}/urls`, {
2024-01-05 05:06:31 +08:00
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
2024-03-05 16:59:35 +08:00
return res.OLLAMA_BASE_URLS;
2024-01-05 05:06:31 +08:00
};
2024-03-05 16:59:35 +08:00
export const updateOllamaUrls = async (token: string = '', urls: string[]) => {
2024-01-05 05:06:31 +08:00
let error = null;
2024-03-05 16:59:35 +08:00
const res = await fetch(`${OLLAMA_API_BASE_URL}/urls/update`, {
2024-01-05 05:06:31 +08:00
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
},
body: JSON.stringify({
2024-03-05 16:59:35 +08:00
urls: urls
2024-01-05 05:06:31 +08:00
})
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
2024-03-05 16:59:35 +08:00
return res.OLLAMA_BASE_URLS;
2024-01-05 05:06:31 +08:00
};
2024-05-29 16:12:25 +08:00
export const getOllamaVersion = async (token: string, urlIdx?: number) => {
2024-01-05 05:06:31 +08:00
let error = null;
2024-05-29 16:12:25 +08:00
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/version${urlIdx ? `/${urlIdx}` : ''}`, {
2023-12-26 19:28:30 +08:00
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
2023-12-27 03:32:22 +08:00
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
2023-12-26 19:28:30 +08:00
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
2024-05-26 07:26:25 +08:00
return res?.version ?? false;
2023-12-26 19:28:30 +08:00
};
2024-01-05 05:06:31 +08:00
export const getOllamaModels = async (token: string = '') => {
2023-12-26 19:28:30 +08:00
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/tags`, {
2023-12-26 19:28:30 +08:00
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
2023-12-27 03:32:22 +08:00
.catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
2023-12-26 19:28:30 +08:00
} else {
error = 'Server connection failed';
}
return null;
});
if (error) {
throw error;
}
2024-02-22 20:12:26 +08:00
return (res?.models ?? [])
.map((model) => ({ id: model.model, name: model.name ?? model.model, ...model }))
.sort((a, b) => {
return a.name.localeCompare(b.name);
});
2023-12-26 19:28:30 +08:00
};
2023-12-27 04:50:52 +08:00
2024-01-10 14:47:31 +08:00
export const generatePrompt = async (token: string = '', model: string, conversation: string) => {
let error = null;
if (conversation === '') {
2024-01-10 15:06:33 +08:00
conversation = '[no existing conversation]';
2024-01-10 14:47:31 +08:00
}
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/generate`, {
2024-01-10 14:47:31 +08:00
method: 'POST',
headers: {
2024-03-05 16:59:35 +08:00
Accept: 'application/json',
'Content-Type': 'application/json',
2024-01-10 14:47:31 +08:00
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
model: model,
2024-01-10 15:06:33 +08:00
prompt: `Conversation:
2024-01-10 14:47:31 +08:00
${conversation}
2024-01-10 15:06:33 +08:00
As USER in the conversation above, your task is to continue the conversation. Remember, Your responses should be crafted as if you're a human conversing in a natural, realistic manner, keeping in mind the context and flow of the dialogue. Please generate a fitting response to the last message in the conversation, or if there is no existing conversation, initiate one as a normal person would.
2024-01-10 14:47:31 +08:00
Response:
`
})
}).catch((err) => {
console.log(err);
if ('detail' in err) {
error = err.detail;
}
return null;
});
if (error) {
throw error;
}
return res;
};
2024-04-15 05:55:00 +08:00
export const generateEmbeddings = async (token: string = '', model: string, text: string) => {
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/embeddings`, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
model: model,
prompt: text
})
}).catch((err) => {
error = err;
return null;
});
if (error) {
throw error;
}
return res;
};
2024-03-02 19:01:44 +08:00
export const generateTextCompletion = async (token: string = '', model: string, text: string) => {
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/generate`, {
2024-03-02 19:01:44 +08:00
method: 'POST',
headers: {
2024-03-05 16:59:35 +08:00
Accept: 'application/json',
'Content-Type': 'application/json',
2024-03-02 19:01:44 +08:00
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
model: model,
prompt: text,
stream: true
})
}).catch((err) => {
error = err;
return null;
});
if (error) {
throw error;
}
return res;
};
2024-01-05 05:06:31 +08:00
export const generateChatCompletion = async (token: string = '', body: object) => {
2024-01-18 11:19:44 +08:00
let controller = new AbortController();
2023-12-27 04:50:52 +08:00
let error = null;
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/chat`, {
2024-01-18 11:19:44 +08:00
signal: controller.signal,
2023-12-27 04:50:52 +08:00
method: 'POST',
headers: {
2024-03-05 16:59:35 +08:00
Accept: 'application/json',
'Content-Type': 'application/json',
2023-12-27 04:50:52 +08:00
Authorization: `Bearer ${token}`
},
body: JSON.stringify(body)
}).catch((err) => {
error = err;
return null;
});
if (error) {
throw error;
}
2024-01-18 11:19:44 +08:00
return [res, controller];
};
2024-06-06 00:52:58 +08:00
export const createModel = async (
token: string,
tagName: string,
content: string,
urlIdx: string | null = null
) => {
let error = null;
2024-06-06 00:52:58 +08:00
const res = await fetch(
`${OLLAMA_API_BASE_URL}/api/create${urlIdx !== null ? `/${urlIdx}` : ''}`,
{
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
name: tagName,
modelfile: content
})
}
).catch((err) => {
error = err;
return null;
});
if (error) {
throw error;
}
return res;
};
2024-03-05 18:12:55 +08:00
export const deleteModel = async (token: string, tagName: string, urlIdx: string | null = null) => {
let error = null;
2024-03-05 18:12:55 +08:00
const res = await fetch(
`${OLLAMA_API_BASE_URL}/api/delete${urlIdx !== null ? `/${urlIdx}` : ''}`,
{
method: 'DELETE',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
name: tagName
})
}
)
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.then((json) => {
console.log(json);
return true;
})
.catch((err) => {
console.log(err);
2024-03-05 16:59:35 +08:00
error = err;
if ('detail' in err) {
error = err.detail;
}
return null;
});
if (error) {
throw error;
}
return res;
};
2024-01-05 05:06:31 +08:00
2024-03-05 18:12:55 +08:00
export const pullModel = async (token: string, tagName: string, urlIdx: string | null = null) => {
2024-01-05 05:06:31 +08:00
let error = null;
const controller = new AbortController();
2024-01-05 05:06:31 +08:00
2024-03-05 18:12:55 +08:00
const res = await fetch(`${OLLAMA_API_BASE_URL}/api/pull${urlIdx !== null ? `/${urlIdx}` : ''}`, {
signal: controller.signal,
2024-01-05 05:06:31 +08:00
method: 'POST',
headers: {
2024-03-05 16:59:35 +08:00
Accept: 'application/json',
'Content-Type': 'application/json',
2024-01-05 05:06:31 +08:00
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
name: tagName
})
}).catch((err) => {
2024-01-07 05:02:09 +08:00
console.log(err);
2024-01-05 05:06:31 +08:00
error = err;
2024-01-07 05:02:09 +08:00
if ('detail' in err) {
error = err.detail;
}
2024-01-05 05:06:31 +08:00
return null;
});
if (error) {
throw error;
}
return [res, controller];
2024-01-05 05:06:31 +08:00
};
2024-01-07 05:02:09 +08:00
2024-03-22 14:45:00 +08:00
export const downloadModel = async (
token: string,
download_url: string,
urlIdx: string | null = null
) => {
let error = null;
const res = await fetch(
`${OLLAMA_API_BASE_URL}/models/download${urlIdx !== null ? `/${urlIdx}` : ''}`,
{
method: 'POST',
headers: {
2024-03-22 15:10:55 +08:00
Accept: 'application/json',
'Content-Type': 'application/json',
2024-03-22 14:45:00 +08:00
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
url: download_url
})
}
).catch((err) => {
console.log(err);
error = err;
if ('detail' in err) {
error = err.detail;
}
return null;
});
if (error) {
throw error;
}
return res;
};
export const uploadModel = async (token: string, file: File, urlIdx: string | null = null) => {
let error = null;
const formData = new FormData();
formData.append('file', file);
const res = await fetch(
`${OLLAMA_API_BASE_URL}/models/upload${urlIdx !== null ? `/${urlIdx}` : ''}`,
{
method: 'POST',
headers: {
Authorization: `Bearer ${token}`
},
body: formData
}
).catch((err) => {
console.log(err);
error = err;
if ('detail' in err) {
error = err.detail;
}
return null;
});
if (error) {
throw error;
}
return res;
};
2024-01-07 05:02:09 +08:00
// export const pullModel = async (token: string, tagName: string) => {
// return await fetch(`${OLLAMA_API_BASE_URL}/pull`, {
// method: 'POST',
// headers: {
// 'Content-Type': 'text/event-stream',
// Authorization: `Bearer ${token}`
// },
// body: JSON.stringify({
// name: tagName
// })
// });
// };