Skip to content

Commit 64224c8

Browse files
authored
Merge pull request #432 from lmtr0/main
Update openai_manifold_pipeline.py
2 parents ab9012c + 3cb201d commit 64224c8

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)