mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
This PR introduces support for optionally exposing more data during LLM function calls. This will be useful as we expand Copilot’s capabilities. Changes included: - Add support for ArticleLlmFormatter - Add missing specs for ContactLLMFormatter and ArticleLLMFormatter - Add additional spec for ConversationLLMFormatter based on config
10 lines
139 B
Ruby
10 lines
139 B
Ruby
class LlmFormatter::DefaultLlmFormatter
|
|
def initialize(record)
|
|
@record = record
|
|
end
|
|
|
|
def format(*)
|
|
# override this
|
|
end
|
|
end
|