Hi!
it is here:
Note that you get distance with a vector search, but for hybrid and bm25/keyword, you get score.
here is the docs for bm25:
Your code will be need to change to:
response = org_collection.query.hybrid(
query="Art Briefs",
limit=5,
return_metadata=MetadataQuery.full()
)