mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-10 05:24:44 +00:00
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.
8 lines
170 B
Ruby
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
|