LangChain

Integrations › LangChain

Tool package

A standalone partner package (LangChain's sanctioned path for third-party integrations), listed in the official LangChain docs: in the provider index and in the web-search tools comparison table next to Exa, Tavily and Linkup — tagged "Free keyless tier available".

pip install, then KeenableSearch().invoke returns live web results.

Setup

  1. 1Install
    bash
    pip install langchain-keenable
  2. 2Use the tools
    python
    from langchain_keenable import KeenableSearch, KeenableFetch
    
    results = KeenableSearch().invoke({"query": "typescript best practices"})
    page = KeenableFetch().invoke({"url": results[0]["url"]})

Keyless by default; set KEENABLE_API_KEY to authenticate.

langchain-keenable on PyPI →