Getting Started
System Requirements
Node.js: v14.0.0 or higher
NPM: v7.0.0 or higher
TypeScript: Recommended for full type support
Installation
INTUE can be installed directly via npm
# Install the package
npm install @intue/core
# Create project directory (optional)
mkdir my-intue-project
cd my-intue-projectBasic Usage
Create a new file (e.g., index.ts or index.js):
typescript
import { Runtime, Agent } from '@intue/core';
async function main() {
// Initialize the runtime
const runtime = await Runtime.init({
agentName: 'my-first-agent',
options: {
logger: {
level: 'debug'
}
}
});
// Start the runtime
await runtime.start();
// Get the agent instance
const agent = runtime.getAgent();
// Analyze some market data
const result = agent.analyzeMarketData({
price: 45000,
volume: 1250000
});
console.log('Analysis result:', result);
// Stop the runtime
await runtime.stop();
}
// Run the example
main().catch(console.error);Using Advanced Features
Sentiment Analysis
Ecosystem Correlation
Last updated


