GreenPT / greenpt/green-rerank

Green Rerank - access through LLMTR

Green Rerank compares a query against a list of candidate documents, gives each one a relevance score and orders them by it. The typical use is to pass the top fifty results from an embedding search through this model and keep the highest-scoring few. It offers a 32,000-token context window and prices on input tokens only, which makes it far cheaper than a chat model because it produces no text, only scores. In measurement a single request with a thousand documents was answered without trouble. Evaluate ranking quality on your own data: in the one sample we have, on a three-document set, the model gave its highest score to a document unrelated to the query. That single observation is not a benchmark, but it is reason enough not to put this in front of a retrieval pipeline without comparing it against your own baseline. On very long documents the provider does not truncate — it fails the whole request — so split documents before sending them.

Technical specifications

Canonical IDgreenpt/green-rerank
ProviderGreenPT
Context window32,000 tokens
OperationsRERANK
Modalitiestext

Pricing

An 8% platform margin applies to credit top-ups; model usage prices are not separately marked up.

OperationMetricUnitPrice
RERANKINPUT_TEXTPER_1M_TOKENS$0.146437

Example usage

With existing OpenAI SDK flows, change only the base URL and model identifier.

curl https://llmtr.com/v1/chat/completions   -H "Authorization: Bearer llmtr-your_key"   -H "Content-Type: application/json"   -d '{"model":"greenpt/green-rerank","messages":[{"role":"user","content":"Hello"}]}'

Guides about this model

Related models