mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-12 06:24:42 +00:00
This PR adds tool support to available LLMs. We'll buffer tool invocations and return them instead of making users of this service parse the response. It also adds support for conversation context in the generic prompt. It includes bot messages, user messages, and tool invocations, which we'll trim to make sure it doesn't exceed the prompt limit, then translate them to the correct dialect. Finally, It adds some buffering when reading chunks to handle cases when streaming is extremely slow.:M
78 lines
2.2 KiB
Ruby
78 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module Completions
|
|
module Endpoints
|
|
class HuggingFace < Base
|
|
def self.can_contact?(model_name)
|
|
%w[StableBeluga2 Upstage-Llama-2-*-instruct-v2 Llama2-*-chat-hf Llama2-chat-hf].include?(
|
|
model_name,
|
|
)
|
|
end
|
|
|
|
def default_options
|
|
{ parameters: { repetition_penalty: 1.1, temperature: 0.7, return_full_text: false } }
|
|
end
|
|
|
|
def provider_id
|
|
AiApiAuditLog::Provider::HuggingFaceTextGeneration
|
|
end
|
|
|
|
private
|
|
|
|
def model_uri
|
|
URI(SiteSetting.ai_hugging_face_api_url)
|
|
end
|
|
|
|
def prepare_payload(prompt, model_params, _dialect)
|
|
default_options
|
|
.merge(inputs: prompt)
|
|
.tap do |payload|
|
|
payload[:parameters].merge!(model_params)
|
|
|
|
token_limit = SiteSetting.ai_hugging_face_token_limit || 4_000
|
|
|
|
payload[:parameters][:max_new_tokens] = token_limit - prompt_size(prompt)
|
|
|
|
payload[:stream] = true if @streaming_mode
|
|
end
|
|
end
|
|
|
|
def prepare_request(payload)
|
|
headers =
|
|
{ "Content-Type" => "application/json" }.tap do |h|
|
|
if SiteSetting.ai_hugging_face_api_key.present?
|
|
h["Authorization"] = "Bearer #{SiteSetting.ai_hugging_face_api_key}"
|
|
end
|
|
end
|
|
|
|
Net::HTTP::Post.new(model_uri, headers).tap { |r| r.body = payload }
|
|
end
|
|
|
|
def extract_completion_from(response_raw)
|
|
parsed = JSON.parse(response_raw, symbolize_names: true)
|
|
|
|
if @streaming_mode
|
|
# Last chunk contains full response, which we already yielded.
|
|
return if parsed.dig(:token, :special)
|
|
|
|
parsed.dig(:token, :text).to_s
|
|
else
|
|
parsed[0][:generated_text].to_s
|
|
end
|
|
end
|
|
|
|
def partials_from(decoded_chunk)
|
|
decoded_chunk
|
|
.split("\n")
|
|
.map do |line|
|
|
data = line.split("data:", 2)[1]
|
|
data&.squish == "[DONE]" ? nil : data
|
|
end
|
|
.compact
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|