discourse-ai/db/migrate/20250508154953_add_examples_to_personas.rb
Roman Rizzi aef84bc5bb
FEATURE: Examples support for personas. (#1334)
Examples simulate previous interactions with an LLM and come
right after the system prompt. This helps grounding the model and
producing better responses.
2025-05-13 10:06:16 -03:00

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