mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-06 22:42:14 +00:00
51 lines
971 B
Ruby
51 lines
971 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module Embeddings
|
||
|
module VectorRepresentations
|
||
|
class MultilingualE5Large < Base
|
||
|
def vector_from(text)
|
||
|
DiscourseAi::Inference::DiscourseClassifier.perform!(
|
||
|
"#{SiteSetting.ai_embeddings_discourse_service_api_endpoint}/api/v1/classify",
|
||
|
name,
|
||
|
"query: #{text}",
|
||
|
SiteSetting.ai_embeddings_discourse_service_api_key,
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def id
|
||
|
3
|
||
|
end
|
||
|
|
||
|
def version
|
||
|
1
|
||
|
end
|
||
|
|
||
|
def name
|
||
|
"multilingual-e5-large"
|
||
|
end
|
||
|
|
||
|
def dimensions
|
||
|
1024
|
||
|
end
|
||
|
|
||
|
def max_sequence_length
|
||
|
512
|
||
|
end
|
||
|
|
||
|
def pg_function
|
||
|
"<=>"
|
||
|
end
|
||
|
|
||
|
def pg_index_type
|
||
|
"vector_cosine_ops"
|
||
|
end
|
||
|
|
||
|
def tokenizer
|
||
|
DiscourseAi::Tokenizer::MultilingualE5LargeTokenizer
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|