44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
|
|
from typing import Any, List, Optional
|
||
|
|
|
||
|
|
from langchain_core.callbacks import CallbackManagerForRetrieverRun
|
||
|
|
from langchain_core.documents import Document
|
||
|
|
from langchain_core.retrievers import BaseRetriever
|
||
|
|
from pydantic import model_validator
|
||
|
|
|
||
|
|
|
||
|
|
class MetalRetriever(BaseRetriever):
|
||
|
|
"""`Metal API` retriever."""
|
||
|
|
|
||
|
|
client: Any
|
||
|
|
"""The Metal client to use."""
|
||
|
|
params: Optional[dict] = None
|
||
|
|
"""The parameters to pass to the Metal client."""
|
||
|
|
|
||
|
|
@model_validator(mode="before")
|
||
|
|
@classmethod
|
||
|
|
def validate_client(cls, values: dict) -> Any:
|
||
|
|
"""Validate that the client is of the correct type."""
|
||
|
|
from metal_sdk.metal import Metal
|
||
|
|
|
||
|
|
if "client" in values:
|
||
|
|
client = values["client"]
|
||
|
|
if not isinstance(client, Metal):
|
||
|
|
raise ValueError(
|
||
|
|
"Got unexpected client, should be of type metal_sdk.metal.Metal. "
|
||
|
|
f"Instead, got {type(client)}"
|
||
|
|
)
|
||
|
|
|
||
|
|
values["params"] = values.get("params", {})
|
||
|
|
|
||
|
|
return values
|
||
|
|
|
||
|
|
def _get_relevant_documents(
|
||
|
|
self, query: str, *, run_manager: CallbackManagerForRetrieverRun
|
||
|
|
) -> List[Document]:
|
||
|
|
results = self.client.search({"text": query}, **self.params)
|
||
|
|
final_results = []
|
||
|
|
for r in results["data"]:
|
||
|
|
metadata = {k: v for k, v in r.items() if k != "text"}
|
||
|
|
final_results.append(Document(page_content=r["text"], metadata=metadata))
|
||
|
|
return final_results
|