mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 11:57:51 +01:00
fix: api usage issue
This commit is contained in:
@@ -612,7 +612,12 @@ async def generate_embeddings(
|
|||||||
user=Depends(get_current_user),
|
user=Depends(get_current_user),
|
||||||
):
|
):
|
||||||
if url_idx == None:
|
if url_idx == None:
|
||||||
if form_data.model in app.state.MODELS:
|
model = form_data.model
|
||||||
|
|
||||||
|
if ":" not in model:
|
||||||
|
model = f"{model}:latest"
|
||||||
|
|
||||||
|
if model in app.state.MODELS:
|
||||||
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
@@ -672,7 +677,12 @@ async def generate_completion(
|
|||||||
):
|
):
|
||||||
|
|
||||||
if url_idx == None:
|
if url_idx == None:
|
||||||
if form_data.model in app.state.MODELS:
|
model = form_data.model
|
||||||
|
|
||||||
|
if ":" not in model:
|
||||||
|
model = f"{model}:latest"
|
||||||
|
|
||||||
|
if model in app.state.MODELS:
|
||||||
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
@@ -770,7 +780,12 @@ async def generate_chat_completion(
|
|||||||
):
|
):
|
||||||
|
|
||||||
if url_idx == None:
|
if url_idx == None:
|
||||||
if form_data.model in app.state.MODELS:
|
model = form_data.model
|
||||||
|
|
||||||
|
if ":" not in model:
|
||||||
|
model = f"{model}:latest"
|
||||||
|
|
||||||
|
if model in app.state.MODELS:
|
||||||
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
@@ -874,7 +889,12 @@ async def generate_openai_chat_completion(
|
|||||||
):
|
):
|
||||||
|
|
||||||
if url_idx == None:
|
if url_idx == None:
|
||||||
if form_data.model in app.state.MODELS:
|
model = form_data.model
|
||||||
|
|
||||||
|
if ":" not in model:
|
||||||
|
model = f"{model}:latest"
|
||||||
|
|
||||||
|
if model in app.state.MODELS:
|
||||||
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
url_idx = random.choice(app.state.MODELS[form_data.model]["urls"])
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
|
|||||||
Reference in New Issue
Block a user