@olostep/plugin-elizaos-olostep
v1.0.0
Published
ElizaOS plugin for Olostep web search via the /searches endpoint
Readme
@olostep/elizaos-olostep
An ElizaOS plugin that adds web search powered by Olostep to your agents.
What it does
Adds an OLOSTEP_SEARCH action that searches the web via Olostep's /searches endpoint and returns a deduplicated list of relevant links with titles and descriptions.
Installation
bun install
bun run buildConfiguration
Add your Olostep API key to your agent's settings:
{
"name": "MyAgent",
"settings": {
"secrets": {
"OLOSTEP_API_KEY": "your-olostep-api-key-here"
}
}
}Get your API key at https://www.olostep.com/dashboard
Usage
Add the plugin to your Eliza character config, then start the agent with the normal ElizaOS flow:
import type { Character } from '@elizaos/core';
export const character: Character = {
name: 'MyAgent',
plugins: [
'@elizaos/plugin-bootstrap',
'@elizaos/plugin-openai',
'@olostep/elizaos-olostep',
],
};Then run your project:
elizaos startExample prompts you can send your agent:
Search for the latest news about AI agentsLook up elizaOS on the webFind the official docs for ElizaOS plugins
Once configured, your agent can use Olostep search when users ask it to search the web, look something up, or find online information.
API
Uses the Olostep /searches endpoint directly via fetch, without any SDK dependency.
Returns result.links[] where each link has url, title, and description.
