Isaac X Plugin for ElizaOS
This plugin provides integration with the Isaac X API, enabling ElizaOS Agents to reason scientifically using the latest academic research.
Features​
- Research question answering with academic citations
- Rate limit management (10 free requests/day)
- Automatic reference tracking
Installation​
bun add @elizaos/plugin-isaacx
Configuration​
-
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],
};
Usage​
// 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);
Response Format​
interface IsaacXResponse {
answer: string;
references: string[];
}
Rate Limiting​
- 10 free requests per day
- 40 $ISAACX per request (~$0.05 USD)
- 20% discount for bulk usage (100+ requests)
Development​
# Build the plugin
bun build
# Run tests
bun test
License​
This plugin is part of the Eliza project. See the main project repository for license information.