Class: RerankerRuby::Jina
Constant Summary collapse
- API_URL =
"https://api.jina.ai/v1/rerank"- DEFAULT_MODEL =
"jina-reranker-v2-base-multilingual"
Instance Method Summary collapse
-
#initialize(api_key:, model: DEFAULT_MODEL, **options) ⇒ Jina
constructor
A new instance of Jina.
- #rerank(query, documents, top_k: 10, model: nil) ⇒ Object
Constructor Details
#initialize(api_key:, model: DEFAULT_MODEL, **options) ⇒ Jina
Returns a new instance of Jina.
8 9 10 11 12 |
# File 'lib/reranker_ruby/jina.rb', line 8 def initialize(api_key:, model: DEFAULT_MODEL, **) super(**) @api_key = api_key @model = model end |
Instance Method Details
#rerank(query, documents, top_k: 10, model: nil) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/reranker_ruby/jina.rb', line 14 def rerank(query, documents, top_k: 10, model: nil) validate_inputs!(query, documents, top_k) instrument(query: query, document_count: documents.length, top_k: top_k) do with_cache(query, documents, top_k: top_k) do texts = extract_texts(documents) response = post(API_URL, { model: model || @model, query: query, documents: texts.map { |t| { text: t } }, top_n: top_k }, headers: { "Authorization" => "Bearer #{@api_key}" }) response["results"].map do |r| idx = r["index"] Result.new( text: texts[idx], score: r["relevance_score"], index: idx, metadata: (documents[idx]) ) end.sort end end end |