Prebuilt tools
Drop-in tools your crew agent’s LLM can call, like web search.
smallestai.tools gives your crew agent ready-made tools its LLM can call. Each tool
plugs into the crew’s ToolRegistry in one line and is also usable on its own. The
third-party libraries they wrap install as optional extras, imported lazily.
Web search (Exa)
Register it inside a crew node so the model can call it:
Or call it directly, outside a crew:
Discovering tools
If the extra isn’t installed
Importing smallestai.tools never pulls a third-party library. Running a tool without its
extra raises a clear error, for example pip install "smallestai[exa]". The registry is
built to add more tools over time; they follow the same pattern.

