mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-11 08:06:13 +00:00
Add OpenAI Batch API support for warmup content generation, including job metadata, polling, cancellation, and completed-batch ingestion. Share the generation prompt between sync and batch modes and humanize/lint generated threads before storing them in the warmup content library.
10 lines
351 B
SQL
10 lines
351 B
SQL
DROP INDEX IF EXISTS idx_warmup_generation_jobs_batch;
|
|
|
|
ALTER TABLE ONLY public.warmup_generation_jobs
|
|
DROP COLUMN IF EXISTS mode,
|
|
DROP COLUMN IF EXISTS batch_id,
|
|
DROP COLUMN IF EXISTS batch_input_file_id,
|
|
DROP COLUMN IF EXISTS batch_output_file_id,
|
|
DROP COLUMN IF EXISTS batch_status,
|
|
DROP COLUMN IF EXISTS completion_window;
|