Update openai_manifold_pipeline.py

added support for o1 and o3 models
This commit is contained in:
Lorenzo 2025-02-19 09:32:27 -03:00 committed by GitHub
parent ab9012c228
commit 3cb201d2d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: