mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-20 10:25:33 +00:00
Add support for chat with AI personas - Allow enabling chat for AI personas that have an associated user - Add new setting `allow_chat` to AI persona to enable/disable chat - When a message is created in a DM channel with an allowed AI persona user, schedule a reply job - AI replies to chat messages using the persona's `max_context_posts` setting to determine context - Store tool calls and custom prompts used to generate a chat reply on the `ChatMessageCustomPrompt` table - Add tests for AI chat replies with tools and context At the moment unlike posts we do not carry tool calls in the context. No @mention support yet for ai personas in channels, this is future work
21 lines
544 B
Ruby
21 lines
544 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChatMessageCustomPrompt < ActiveRecord::Base
|
|
# belongs_to chat message but going to avoid the cross dependency for now
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: message_custom_prompts
|
|
#
|
|
# id :bigint not null, primary key
|
|
# message_id :bigint not null
|
|
# custom_prompt :json not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_message_custom_prompts_on_message_id (message_id) UNIQUE
|
|
#
|