mirror of
https://github.com/open-webui/open-webui
synced 2024-11-17 14:02:51 +00:00
enh: remove trailing slash
This commit is contained in:
parent
1275371e10
commit
e5f4f64102
@ -44,6 +44,8 @@
|
|||||||
let ENABLE_OLLAMA_API = null;
|
let ENABLE_OLLAMA_API = null;
|
||||||
|
|
||||||
const verifyOpenAIHandler = async (idx) => {
|
const verifyOpenAIHandler = async (idx) => {
|
||||||
|
OPENAI_API_BASE_URLS = OPENAI_API_BASE_URLS.map((url) => url.replace(/\/$/, ''));
|
||||||
|
|
||||||
OPENAI_API_BASE_URLS = await updateOpenAIUrls(localStorage.token, OPENAI_API_BASE_URLS);
|
OPENAI_API_BASE_URLS = await updateOpenAIUrls(localStorage.token, OPENAI_API_BASE_URLS);
|
||||||
OPENAI_API_KEYS = await updateOpenAIKeys(localStorage.token, OPENAI_API_KEYS);
|
OPENAI_API_KEYS = await updateOpenAIKeys(localStorage.token, OPENAI_API_KEYS);
|
||||||
|
|
||||||
@ -63,6 +65,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const verifyOllamaHandler = async (idx) => {
|
const verifyOllamaHandler = async (idx) => {
|
||||||
|
OLLAMA_BASE_URLS = OLLAMA_BASE_URLS.filter((url) => url !== '').map((url) =>
|
||||||
|
url.replace(/\/$/, '')
|
||||||
|
);
|
||||||
|
|
||||||
OLLAMA_BASE_URLS = await updateOllamaUrls(localStorage.token, OLLAMA_BASE_URLS);
|
OLLAMA_BASE_URLS = await updateOllamaUrls(localStorage.token, OLLAMA_BASE_URLS);
|
||||||
|
|
||||||
const res = await getOllamaVersion(localStorage.token, idx).catch((error) => {
|
const res = await getOllamaVersion(localStorage.token, idx).catch((error) => {
|
||||||
@ -78,6 +84,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const updateOpenAIHandler = async () => {
|
const updateOpenAIHandler = async () => {
|
||||||
|
OPENAI_API_BASE_URLS = OPENAI_API_BASE_URLS.map((url) => url.replace(/\/$/, ''));
|
||||||
|
|
||||||
// Check if API KEYS length is same than API URLS length
|
// Check if API KEYS length is same than API URLS length
|
||||||
if (OPENAI_API_KEYS.length !== OPENAI_API_BASE_URLS.length) {
|
if (OPENAI_API_KEYS.length !== OPENAI_API_BASE_URLS.length) {
|
||||||
// if there are more keys than urls, remove the extra keys
|
// if there are more keys than urls, remove the extra keys
|
||||||
@ -100,7 +108,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const updateOllamaUrlsHandler = async () => {
|
const updateOllamaUrlsHandler = async () => {
|
||||||
OLLAMA_BASE_URLS = OLLAMA_BASE_URLS.filter((url) => url !== '');
|
OLLAMA_BASE_URLS = OLLAMA_BASE_URLS.filter((url) => url !== '').map((url) =>
|
||||||
|
url.replace(/\/$/, '')
|
||||||
|
);
|
||||||
|
|
||||||
console.log(OLLAMA_BASE_URLS);
|
console.log(OLLAMA_BASE_URLS);
|
||||||
|
|
||||||
if (OLLAMA_BASE_URLS.length === 0) {
|
if (OLLAMA_BASE_URLS.length === 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user