mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
5c196bca89
* FEATURE: Track if a model can do vision in the llm_models table * Data migration
7 lines
195 B
Ruby
7 lines
195 B
Ruby
# frozen_string_literal: true
|
|
class LlmModelVisionEnabled < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :llm_models, :vision_enabled, :boolean, default: false, null: false
|
|
end
|
|
end
|