Merge pull request #432 from lmtr0/main

Update openai_manifold_pipeline.py
This commit is contained in:
Timothy Jaeryang Baek 2025-02-20 11:32:31 -08:00 committed by GitHub
commit 64224c8352
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: