Instructions to use MagistrTheOne/asterias-v73 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MagistrTheOne/asterias-v73 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MagistrTheOne/asterias-v73")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MagistrTheOne/asterias-v73") model = AutoModelForCausalLM.from_pretrained("MagistrTheOne/asterias-v73") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MagistrTheOne/asterias-v73 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MagistrTheOne/asterias-v73" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MagistrTheOne/asterias-v73", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MagistrTheOne/asterias-v73
- SGLang
How to use MagistrTheOne/asterias-v73 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "MagistrTheOne/asterias-v73" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MagistrTheOne/asterias-v73", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "MagistrTheOne/asterias-v73" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MagistrTheOne/asterias-v73", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MagistrTheOne/asterias-v73 with Docker Model Runner:
docker model run hf.co/MagistrTheOne/asterias-v73
π ASTERIAS
NULLXES Digital Execution Model
A deterministic, execution-oriented language model engineered for enterprise workflows and AI digital employees.
π Overview
ASTERIAS is a research project by NULLXES, focused on building deterministic language models for real-world enterprise execution. This release is an early iteration β the project is actively scaling toward a 70B parameter model as its next training milestone.
The model is designed around four core principles:
| Principle | Description |
|---|---|
| π― Strict output control | Responses follow predefined structure with no deviation |
| π Minimal noise | No filler, no apologies, no meta-commentary |
| π§© Structured reasoning | Outputs are machine-parseable by default |
| π Predictable behavior | Same input β same output, reliably |
βοΈ Operating Rules
ASTERIAS operates under strict generation constraints:
- β No explanations
- β No extra text
- β No repetition
- β Structured, deterministic output only
π§ Behavior
Simple Queries
Returns direct, minimal answers.
Complex Queries
Returns strictly structured output suitable for downstream automation, agent pipelines, and digital-employee workflows.
π¬ Research Status
This is a research project. ASTERIAS is being developed as a stepping stone toward a 70B-parameter deterministic execution model. The current checkpoint is intended for evaluation, benchmarking, and integration testing in enterprise agent environments.
π« Contact
NULLXES π§ ceo@nullxes.com
π License
Released under the Apache 2.0 license.
- Downloads last month
- 198