mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-16 16:34:45 +00:00
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.
7 lines
159 B
Ruby
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
|