Skip to content

Commit

Permalink
added minimap tool
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonSmith committed Jun 17, 2024
1 parent d2915f2 commit e5305f0
Showing 1 changed file with 143 additions and 0 deletions.
143 changes: 143 additions & 0 deletions src/backend/tools/minimap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
import os
from typing import Any, Dict, List

# from langchain.text_splitter import CharacterTextSplitter
# from langchain_cohere import CohereEmbeddings
# from langchain_community.document_loaders import PyPDFLoader
# from langchain_community.retrievers import WikipediaRetriever
# from langchain_community.vectorstores import Chroma
# from langchain import LangChain, Tool

from typing import Optional

from langchain_core.callbacks import CallbackManagerForToolRun
from langchain_core.pydantic_v1 import Field
from langchain_core.tools import BaseTool

import json
import logging
import time
import requests
from typing import Any, Dict, Iterator, List

from langchain_core.documents import Document
from langchain_core.pydantic_v1 import BaseModel, root_validator

from urllib.parse import urljoin
from backend.tools.base import BaseTool as CohereBaseTool

"""
Plug in your lang chain retrieval implementation here.
We have an example flows with wikipedia and vector DBs.
More details: https://python.langchain.com/docs/integrations/retrievers
"""

logging = logging.getLogger(__name__)

class MinimapAPIWrapper(BaseModel):
"""
Wrapper around Minimap.ai API.
This wrapper will use the Minimap API to conduct searches and fetch
document summaries. By default, it will return the document summaries
of the top-k results of an input search.
Parameters:
top_k_results: number of the top-scored document
MAX_QUERY_LENGTH: maximum length of the query.
Default is 300 characters.
doc_content_chars_max: maximum length of the document content.
Content will be truncated if it exceeds this length.
Default is 2000 characters.
max_retry: maximum number of retries for a request. Default is 5.
sleep_time: time to wait between retries.
Default is 0.2 seconds.
email: email address to be used for the PubMed API.
"""

parse: Any #: :meta private:

base_url: str = "http://host.docker.internal:8081"
search_endpoint: str = urljoin(base_url, "/api/v0/platform/elastic_search")

max_retry: int = 5

# Default values for the parameters
top_k_results: int = 15
MAX_QUERY_LENGTH: int = 300
doc_content_chars_max: int = 2000


def run(self, query: str) -> str:
"""
Run search queries against the Minimap search PI
Returns a list of documents, each with a title, summary, and id.
"""
try:
# Create teh url params
query_params = {
'query': query,
}

response = requests.get(self.search_endpoint, params=query_params)


if response.status_code != 200:
return f"Minimap API returned status code {response.status_code}"

response_json = response.json()

results = response_json.get("results", [])

# limit the number of results to top_k_results
results = results[:self.top_k_results]

# strip out the `id` field from the results
# results = [{"text": result["title"], 'url': result['url']} for result in results]

print(results)
return results

except Exception as ex:
return f"PubMed exception: {ex}"


class MinimapQueryRun(BaseTool):
"""Tool that searches the Minimap.ai API."""

name: str = "pub_med"
description: str = (
"A wrapper around Minimap.ai. "
"Useful for searching news articles across a wide range of topics."
"from sports, politics, sciences, life style, and all sorts of news and news-like content."
"Input should be a search query."
)

api_wrapper: MinimapAPIWrapper = Field(default_factory=MinimapAPIWrapper)

def _run(
self,
query: str,
run_manager: Optional[CallbackManagerForToolRun] = None,
) -> str:
"""Use the PubMed tool."""
return self.api_wrapper.run(query)

class LangChainMinimapRetriever(CohereBaseTool):
"""
This class retrieves documents from Wikipedia using the langchain package.
This requires wikipedia package to be installed.
"""

def __init__(self):
self.client = MinimapAPIWrapper()

@classmethod
def is_available(cls) -> bool:
return True

def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]:
query = parameters.get("query", "")
results = self.client.run(query)
return results # [{"text": result} for result in results]

0 comments on commit e5305f0

Please sign in to comment.