We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f825066 commit 72768c2Copy full SHA for 72768c2
examples/pipelines/providers/openai_manifold_pipeline.py
@@ -73,7 +73,7 @@ def get_openai_models(self):
73
"name": model["name"] if "name" in model else model["id"],
74
}
75
for model in models["data"]
76
- if any(substring in model["id"] for substring in allowed_models):
+ if any(substring in model["id"] for substring in allowed_models)
77
]
78
79
except Exception as e:
0 commit comments