mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
f4e7a80600
Updates the interface for implementing summarization strategies and adds a cache layer to summarize topics once. The cache stores the final summary and each chunk used to build it, which will be useful when we have to extend or rebuild it.
17 lines
468 B
Ruby
17 lines
468 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateSummarySectionsTable < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :summary_sections do |t|
|
|
t.integer :target_id, null: false
|
|
t.string :target_type, null: false
|
|
t.int4range :content_range
|
|
t.string :summarized_text, null: false
|
|
t.integer :meta_section_id
|
|
t.string :original_content_sha, null: false
|
|
t.string :algorithm, null: false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|