mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
refac: pipeline valves -> filters
This commit is contained in:
parent
4fac99c5b3
commit
966f10e715
@ -253,7 +253,7 @@ class PipelineMiddleware(BaseHTTPMiddleware):
|
||||
model
|
||||
for model in app.state.MODELS.values()
|
||||
if "pipeline" in model
|
||||
and model["pipeline"]["type"] == "valve"
|
||||
and model["pipeline"]["type"] == "filter"
|
||||
and model_id
|
||||
in [
|
||||
target_model["id"]
|
||||
@ -285,7 +285,7 @@ class PipelineMiddleware(BaseHTTPMiddleware):
|
||||
if key != "":
|
||||
headers = {"Authorization": f"Bearer {key}"}
|
||||
r = requests.post(
|
||||
f"{url}/valve",
|
||||
f"{url}/filter",
|
||||
headers=headers,
|
||||
json={
|
||||
"user": user,
|
||||
@ -428,11 +428,11 @@ async def get_all_models():
|
||||
async def get_models(user=Depends(get_verified_user)):
|
||||
models = await get_all_models()
|
||||
|
||||
# Filter out valve models
|
||||
# Filter out filter pipelines
|
||||
models = [
|
||||
model
|
||||
for model in models
|
||||
if "pipeline" not in model or model["pipeline"]["type"] != "valve"
|
||||
if "pipeline" not in model or model["pipeline"]["type"] != "filter"
|
||||
]
|
||||
|
||||
if app.state.config.ENABLE_MODEL_FILTER:
|
||||
|
Loading…
Reference in New Issue
Block a user