We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab9012c commit 3cb201dCopy full SHA for 3cb201d
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