mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
* FEATURE: Set endpoint credentials directly from LlmModel. Drop Llama2Tokenizer since we no longer use it. * Allow http for custom LLMs --------- Co-authored-by: Rafael Silva <xfalcox@gmail.com>
9 lines
205 B
Ruby
9 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddEndpointDataToLlmModel < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :llm_models, :url, :string
|
|
add_column :llm_models, :api_key, :string
|
|
end
|
|
end
|