discourse-ai/db/post_migrate/20230320191928_drop_completion_prompt_value.rb
Roman Rizzi 39f7f1f29e
FEATURE: Prompts can consist of multiple messages. (#21)
A prompt with multiple messages leads to better results, as the AI can learn for given examples. Alongside this change, we provide a better default proofreading prompt.
2023-03-21 12:04:59 -03:00

8 lines
170 B
Ruby

# frozen_string_literal: true
class DropCompletionPromptValue < ActiveRecord::Migration[7.0]
def change
remove_column :completion_prompts, :value, :text
end
end