From 3cb201d2d6400f93ee0d1d9dac46382ffcc8ef64 Mon Sep 17 00:00:00 2001 From: Lorenzo <57605930+lmtr0@users.noreply.github.com> Date: Wed, 19 Feb 2025 09:32:27 -0300 Subject: [PATCH] Update openai_manifold_pipeline.py added support for o1 and o3 models --- examples/pipelines/providers/openai_manifold_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pipelines/providers/openai_manifold_pipeline.py b/examples/pipelines/providers/openai_manifold_pipeline.py index 0d667f5..e46bf04 100644 --- a/examples/pipelines/providers/openai_manifold_pipeline.py +++ b/examples/pipelines/providers/openai_manifold_pipeline.py @@ -66,7 +66,7 @@ class Pipeline: "name": model["name"] if "name" in model else model["id"], } for model in models["data"] - if "gpt" in model["id"] + if "gpt" in model["id"] or "o1" in model["id"] or "o3" in model["id"] ] except Exception as e: