Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajschofield/apeirogon
https://github.com/ajschofield/apeirogon
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ajschofield/apeirogon
- Owner: ajschofield
- Created: 2024-12-17T00:34:17.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-18T02:18:17.000Z (about 2 months ago)
- Last Synced: 2024-12-18T03:20:58.266Z (about 2 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apeirogon
## Abstract
Apeirogon is a proof-of-concept stateless engine capable of extensible
functionality, added through user-created modules that follow a
standardised format. A lot of big words, but it's designed to be the
'do-everything' computing solution. This can be as simple as basic
addition, or something more complicated such as one-hot encoding.## Architecture
### Client
In its simplest form, a Rust client designed to send POST requests
to the server, and receive the response.```
{
"module": "one_hot_encode",
"data": "agtatattggaggtgcgctttcctaaaacgag",
"metadata": {
"authToken": "ab43-k49g-k294"
}
}
```This is subject to change and just for illustrative purposes only.
### Server
The server uses Rust and dynamically loaded Lua-based 'modules'. Modules
are added by users, and clients can only execute scripts that have been
added in the plugins folder.