Overview
HyperAI is more than a chatbot — it’s an agent system with persistent memory, specialized skills, tool calling, and the ability to orchestrate sub-agents for complex tasks.LLM provider configuration
HyperAI uses the system-wide LLM settings by default but can be overridden per conversation:Conversation management
Conversations are persisted and can be resumed across sessions:Memory system
HyperAI maintains long-term memory organized into four categories:| Category | Purpose | Example |
|---|---|---|
| Preferences | User trading preferences and risk tolerance | ”Prefers 3x max leverage, only trades BTC and ETH” |
| Decisions | Past trading decisions and their outcomes | ”Shorted BTC at 65k based on RSI divergence — resulted in 3% profit” |
| Lessons | Learned patterns and mistakes | ”Avoid entering positions during low-volume Asian sessions” |
| Insights | Market observations and analysis | ”BTC tends to follow ETH breakouts with a 2-4 hour delay” |
Skill system
HyperAI has 9 built-in skills that handle specialized tasks:| Skill | Capability |
|---|---|
| Market Analysis | Analyze price action, indicators, and market regime |
| Strategy Creation | Generate prompt templates or program code from descriptions |
| Signal Design | Create signal definitions and pools from natural language |
| Backtest Runner | Configure and execute backtests, interpret results |
| Trade Review | Analyze recent trades and suggest improvements |
| Risk Assessment | Evaluate portfolio exposure and position sizing |
| News Briefing | Summarize relevant news and sentiment |
| Factor Analysis | Evaluate quantitative factors and their effectiveness |
| Platform Help | Guide users through platform features and API usage |
Tool system
HyperAI uses function calling to interact with the platform programmatically. When you ask it to create a trader, run a backtest, or check positions, it calls the appropriate API tools internally.Sub-agent orchestration
For complex tasks, HyperAI spawns specialized sub-agents that work in parallel:Task decomposition
HyperAI breaks a complex request into sub-tasks (e.g., “Build me a complete BTC trading setup” becomes: create trader, write strategy, define signals, create binding).
Agent delegation
Each sub-task is assigned to a specialized agent with the appropriate skill and context.
Sub-agent orchestration happens transparently. From the user’s perspective, HyperAI handles the full request and reports back with results.