You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a quick thought: Why restrict the basic re-ranking interface to just strings?
For example, one might want to re-rank images and there might be models that support that.
I believe, the two main model classes of this library, Result and RankedResults, can pretty easily be relaxed to support generic document types (i.e., by extending Generic[T] and swapping str for T).
The text was updated successfully, but these errors were encountered:
Just a quick thought: Why restrict the basic re-ranking interface to just strings?
For example, one might want to re-rank images and there might be models that support that.
I believe, the two main model classes of this library,
Result
andRankedResults
, can pretty easily be relaxed to support generic document types (i.e., by extendingGeneric[T]
and swappingstr
forT
).The text was updated successfully, but these errors were encountered: