You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feat: Auto-Discovery & Multi-Provider Support for Local AI
- Updated 'NativeAIBridge' to auto-detect running local models (Ollama:11434, Llama:8080, LMStudio:1234).
- Added 'QUANUX_AI_PROVIDER' config to support non-OpenAI payloads in the future.
- Created 'server/skills/native_ai/SKILL.md' detailing Embedded AI setup.
- Ensures native integration for privacy-first, embedded I.Q.
description: "Guide for connecting Local/Embedded AI Models (Ollama, Llama.cpp) to QuanuX C++ Engine."
4
+
---
5
+
6
+
# Native AI Connector (Embedded/Local)
7
+
8
+
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.
9
+
10
+
## 1. Supported Local Runners
11
+
QuanuX supports any runner that provides an OpenAI-compatible API (standard in 2024+).
12
+
13
+
### A. Ollama (Recommended)
14
+
1.**Install**: [ollama.com](https://ollama.com)
15
+
2.**Pull Model**: `ollama pull llama3`
16
+
3.**Run**: `ollama serve` (Runs on port 11434 by default)
17
+
4.**QuanuX Config**:
18
+
- No config needed! QuanuX will **Auto-Discover** Ollama on port 11434.
0 commit comments