diff --git a/src/pages/workers-ai/models/[name].astro b/src/pages/workers-ai/models/[name].astro index c65ccb844dd7bf..ef017f188f2c7d 100644 --- a/src/pages/workers-ai/models/[name].astro +++ b/src/pages/workers-ai/models/[name].astro @@ -122,7 +122,13 @@ const isBeta = model.properties.find( ({ property_id, value }) => property_id === "beta" && value === "true", ); -const hasPlayground = model.task.name === "Text Generation"; +let hasPlayground = model.task.name === "Text Generation"; + +// temporary workaround for playground limitations +if (model.name.includes("@cf/openai/gpt-oss") ) { + hasPlayground = false; +} + const author = (authorData as any)[model.name.split("/")[1]];