Hi @Joey_Visbeen !
You need to explicitly request the metadata to be returned by passing them at return_metadata
, for example:
response = articles.query.near_text(
query="fashion",
limit=5,
return_metadata=wvc.query.MetadataQuery(distance=True)
)
Check here for more info:
Let me know if this helps