Skip to content

Commit bab82e6

Browse files
authored
Skip chat completion generation in CI (#1660)
We handle it manually now (it's already mature + we slightly diverged since quicktype doesn't handle well the unions)
1 parent 625ac50 commit bab82e6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/tasks-gen/scripts/inference-codegen.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,11 @@ for (const { task, dirPath } of allTasks) {
287287
}
288288
console.debug(`✨ Generating types for task`, task);
289289

290+
if (task === "chat-completion") {
291+
console.debug(" 🙈 Skipping chat-completion (maintained manually)");
292+
continue;
293+
}
294+
290295
console.debug(" 📦 Building input data");
291296
const inputData = await buildInputData(task, taskSpecDir, allSpecFiles);
292297

0 commit comments

Comments
 (0)