LlamaIndex
Integrations › LlamaIndex
Tool spec
A Keenable ToolSpec so LlamaIndex agents can search and read the web.
Setup
- 1Installbash
pip install llama-index-tools-keenable - 2Use the tool specpython
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.