Skip to content

Commit 3cb201d

Browse files
authored
Update openai_manifold_pipeline.py
added support for o1 and o3 models
1 parent ab9012c commit 3cb201d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pipelines/providers/openai_manifold_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_openai_models(self):
6666
"name": model["name"] if "name" in model else model["id"],
6767
}
6868
for model in models["data"]
69-
if "gpt" in model["id"]
69+
if "gpt" in model["id"] or "o1" in model["id"] or "o3" in model["id"]
7070
]
7171

7272
except Exception as e:

0 commit comments

Comments
 (0)