We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae55d73 commit eb5a9bcCopy full SHA for eb5a9bc
src/pages/workers-ai/models/[name].astro
@@ -122,7 +122,13 @@ const isBeta = model.properties.find(
122
({ property_id, value }) => property_id === "beta" && value === "true",
123
);
124
125
-const hasPlayground = model.task.name === "Text Generation";
+let hasPlayground = model.task.name === "Text Generation";
126
+
127
+// temporary workaround for playground limitations
128
+if (model.name.includes("@cf/openai/gpt-oss") ) {
129
+ hasPlayground = false;
130
+}
131
132
133
const author = (authorData as any)[model.name.split("/")[1]];
134
0 commit comments