discourse-ai/db/migrate/20241031145203_track_ai_summary_origin.rb
Roman Rizzi 9505a8976c
FEATURE: Automatically backfill regular summaries. (#892)
This change introduces a job to summarize topics and cache the results automatically. We provide a setting to control how many topics we'll backfill per hour and what the topic's minimum word count is to qualify.

We'll prioritize topics without summary over outdated ones.
2024-11-04 17:48:11 -03:00

7 lines
159 B
Ruby

# frozen_string_literal: true
class TrackAiSummaryOrigin < ActiveRecord::Migration[7.1]
def change
add_column :ai_summaries, :origin, :integer
end
end