This plugin provides integration with the Isaac X API, enabling ElizaOS Agents to reason scientifically using the latest academic research.
- Research question answering with academic citations
- Rate limit management (10 free requests/day)
- Automatic reference tracking
pnpm add @elizaos/plugin-isaacx
-
First, visit isaacx.ai/docs to create your API key.
-
Add your Isaac X API key to your environment variables:
ISAACX_API_KEY=ix_your_api_key_here
- Register the plugin in your character configuration:
import isaacXPlugin from "@elizaos/plugin-isaacx";
const character = {
plugins: [isaacXPlugin],
};
// Ask a research question
const response = await runtime.processAction("ANSWER_RESEARCH_QUESTION", {
question: "What are the latest developments in quantum computing?",
});
// The response will include both the answer and academic citations
console.log("Research Findings:", response.answer);
console.log("Academic Sources:", response.references);
interface IsaacXResponse {
answer: string;
references: string[];
}
- 10 free requests per day
- 40 $ISAACX per request (~$0.05 USD)
- 20% discount for bulk usage (100+ requests)
# Build the plugin
pnpm build
# Run tests
pnpm test
This plugin is part of the Eliza project. See the main project repository for license information.