https://github.com/usermicrodevices/neural
simple C++ neural network service
https://github.com/usermicrodevices/neural
ai ai-agent ai-agents ai-tools local-ai local-llm mlm mlm-software mlm-solution mlmodel mlmodels neural neural-network neural-networks prompt prompting prompts training web-interface
Last synced: 3 days ago
JSON representation
simple C++ neural network service
- Host: GitHub
- URL: https://github.com/usermicrodevices/neural
- Owner: usermicrodevices
- License: mit
- Created: 2026-05-18T21:42:04.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-17T19:34:39.000Z (29 days ago)
- Last Synced: 2026-06-17T20:26:32.796Z (29 days ago)
- Topics: ai, ai-agent, ai-agents, ai-tools, local-ai, local-llm, mlm, mlm-software, mlm-solution, mlmodel, mlmodels, neural, neural-network, neural-networks, prompt, prompting, prompts, training, web-interface
- Language: C++
- Homepage:
- Size: 4.07 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# neural
simple C++ neural network service
## Overview
now it can run as master process with all neural network functional and two child processes admin for training, client for question-answer functional.
all gui in html over http in browser. admin localhost:8080, client localhost:8081.
\
\

### requirements
[ASIO](http://think-async.com) ([asio github](https://github.com/chriskohlhoff/asio))
[SQlite](https://sqlite.org)
[spdlog](https://github.com/gabime/spdlog)
[nlohmann/json](https://github.com/nlohmann/json)
### Build System
- **CMake 3.16+**: now only testing on linux
```
./build.sh
```
### running
```
cd build && ./neural
```
in browser goto admin panel ```http://localhost:8080```\
and client panel ```http://localhost:8081```\
also you can use OpenAI compatibility reguests
```
curl -X POST http://localhost:8081/v1/chat \
-H "Content-Type: application/json" \
-d '{"model":"neural","messages":[{"role":"user","content":"What is Python?"}]}'
```