LlamaIndex

Integrations › LlamaIndex

Tool spec

A Keenable ToolSpec so LlamaIndex agents can search and read the web.

Setup

  1. 1Install
    bash
    pip install llama-index-tools-keenable
  2. 2Use the tool spec
    python
    from llama_index.tools.keenable import KeenableToolSpec
    
    spec = KeenableToolSpec()               # or KeenableToolSpec(api_key="keen_...")
    docs = spec.search("typescript best practices")
    page = spec.fetch(docs[0].metadata["url"])

Keyless by default; pass api_key=… or set KEENABLE_API_KEY.

llama-index-tools-keenable on PyPI →