mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 07:12:49 +00:00
Examples simulate previous interactions with an LLM and come right after the system prompt. This helps grounding the model and producing better responses.
8 lines
160 B
Ruby
8 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddExamplesToPersonas < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :ai_personas, :examples, :jsonb
|
|
end
|
|
end
|