We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab9012c + 3cb201d commit 64224c8Copy full SHA for 64224c8
examples/pipelines/providers/openai_manifold_pipeline.py
@@ -66,7 +66,7 @@ def get_openai_models(self):
66
"name": model["name"] if "name" in model else model["id"],
67
}
68
for model in models["data"]
69
- if "gpt" in model["id"]
+ if "gpt" in model["id"] or "o1" in model["id"] or "o3" in model["id"]
70
]
71
72
except Exception as e:
0 commit comments