Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit ced8ff0

Browse files
committed
DEV: Update plugin annotations
1 parent 294c364 commit ced8ff0

File tree

6 files changed

+5
-10
lines changed

6 files changed

+5
-10
lines changed

app/models/ai_persona.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,6 @@ def ensure_not_system
297297
# user_id :integer
298298
# default_llm :text
299299
# max_context_posts :integer
300-
# max_post_context_tokens :integer
301-
# max_context_tokens :integer
302300
# vision_enabled :boolean default(FALSE), not null
303301
# vision_max_pixels :integer default(1048576), not null
304302
# rag_chunk_tokens :integer default(374), not null
@@ -311,7 +309,7 @@ def ensure_not_system
311309
# allow_chat_channel_mentions :boolean default(FALSE), not null
312310
# allow_chat_direct_messages :boolean default(FALSE), not null
313311
# allow_topic_mentions :boolean default(FALSE), not null
314-
# allow_personal_message :boolean default(TRUE), not null
312+
# allow_personal_messages :boolean default(TRUE), not null
315313
# force_default_llm :boolean default(FALSE), not null
316314
#
317315
# Indexes

app/models/ai_summary.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def outdated
4242
# algorithm :string not null
4343
# created_at :datetime not null
4444
# updated_at :datetime not null
45-
# summary_type :string default("complete"), not null
45+
# summary_type :integer default("complete"), not null
4646
#
4747
# Indexes
4848
#

app/models/classification_result.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ClassificationResult < ActiveRecord::Base
1111
# id :bigint not null, primary key
1212
# model_used :string
1313
# classification_type :string
14-
# target_id :integer
14+
# target_id :bigint
1515
# target_type :string
1616
# classification :jsonb
1717
# created_at :datetime not null

app/models/rag_document_fragment.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,12 @@ def publish_status(upload, status)
8484
# id :bigint not null, primary key
8585
# fragment :text not null
8686
# upload_id :integer not null
87-
# ai_persona_id :integer not null
8887
# fragment_number :integer not null
8988
# created_at :datetime not null
9089
# updated_at :datetime not null
9190
# metadata :text
92-
# target_id :integer
93-
# target_type :string(800)
91+
# target_id :bigint not null
92+
# target_type :string(800) not null
9493
#
9594
# Indexes
9695
#

app/models/reviewable_ai_chat_message.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ def build_action(
158158
# status :integer default("pending"), not null
159159
# created_by_id :integer not null
160160
# reviewable_by_moderator :boolean default(FALSE), not null
161-
# reviewable_by_group_id :integer
162161
# category_id :integer
163162
# topic_id :integer
164163
# score :float default(0.0), not null

app/models/reviewable_ai_post.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ def build_action(
215215
# status :integer default("pending"), not null
216216
# created_by_id :integer not null
217217
# reviewable_by_moderator :boolean default(FALSE), not null
218-
# reviewable_by_group_id :integer
219218
# category_id :integer
220219
# topic_id :integer
221220
# score :float default(0.0), not null

0 commit comments

Comments
 (0)