Commit 966f10e7 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac: pipeline valves -> filters

parent 4fac99c5
......@@ -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:
......
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