بنقرة واحدة
native-ai-embedded
Guide for connecting Local/Embedded AI Models (Ollama, Llama.cpp) to QuanuX C++ Engine.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Guide for connecting Local/Embedded AI Models (Ollama, Llama.cpp) to QuanuX C++ Engine.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Reference for OS and Kernel parameter optimization on the QuanuX Edge.
Reference for using the QuanuX Control CLI (quanuxctl).
Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files.
The authoritative "School of Architecture" for building QuanuX Extensions (Sidecars). Enforces the QXP protocol, Go runtime preference, and privacy-first security model.
Instructions for operating and configuring the SignalR Bridge for TopstepX.
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
| name | native_ai_embedded |
| description | Guide for connecting Local/Embedded AI Models (Ollama, Llama.cpp) to QuanuX C++ Engine. |
The Native AI Connector allows QuanuX Execution Nodes to communicate directly with Embedded AI Models running on the local machine or private network. This bypasses slow/expensive Cloud APIs and enables high-frequency, privacy-preserving I.Q.
QuanuX supports any runner that provides an OpenAI-compatible API (standard in 2024+).
ollama pull llama3ollama serve (Runs on port 11434 by default)make server in llama.cpp repo../server -m my-model.gguf --port 8080 --host 0.0.0.0export QUANUX_AI_ENDPOINT="http://localhost:8080".env)| Variable | Description | Default |
|---|---|---|
QUANUX_AI_ENDPOINT | URL of the AI Server. Leave empty for Auto-Discovery. | AUTODETECT |
QUANUX_AI_MODEL | Model name to request (e.g., llama3, mistral). | llama3 |
QUANUX_AI_PROVIDER | Protocol dialect: openai, ollama, anthropic. | openai |
QUANUX_AI_KEY | Optional API key (if server requires it). | "" |
Strategies access the AI via the OrderService pointer passed during on_init.
#include "quanux/common/StrategyInterface.h"
#include <cstring>
#include <iostream>
// In your strategy logic
void on_market_data(StrategyContext *ctx, const MarketUpdate *update) {
if (update->price > 5000) {
char response[1024];
if (ctx->service->query_ai(ctx->service->engine_ctx,
"Market is over 5000. Buy or Sell?",
response, 1024)) {
std::cout << "AI Advice: " << response << std::endl;
}
}
}
We built the bridge to be Model Agnostic. If you are using a specialized local server (e.g. for Gemini Nano or unreleased models) that uses a different JSON format:
QUANUX_AI_PROVIDER=custom (Future work) or gemini_local.If your AI beast machine is separate from your Trading Node:
ssh -L 8080:localhost:8080 user@ai-serverlocalhost:8080 as if it were local.