How to use from
Hermes Agent
Start the llama.cpp server
# Install llama.cpp:
brew install llama.cpp
# Start a local OpenAI-compatible server:
llama serve -hf RoeAcquisitions/aether-mini-v1
Configure Hermes
# Install Hermes:
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
hermes setup
# Point Hermes at the local server:
hermes config set model.provider custom
hermes config set model.base_url http://127.0.0.1:8080/v1
hermes config set model.default RoeAcquisitions/aether-mini-v1
Run Hermes
hermes
Quick Links

Aether Mini V1

Aether Mini V1 is a fast, efficient 0.5B parameter language model optimized for general tasks, code generation, and instruction following. Based on Qwen2.5 architecture, fine-tuned for enterprise use cases.

Features

  • Fast Inference: Sub-second response times on consumer hardware
  • Code Generation: Optimized for Python, JavaScript, TypeScript, and more
  • Instruction Following: Fine-tuned for precise instruction adherence
  • Low Resource: Runs on CPU with minimal memory requirements

Usage

Transformers

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("RoeAcquisitions/aether-mini-v1")
tokenizer = AutoTokenizer.from_pretrained("RoeAcquisitions/aether-mini-v1")

messages = [
    {"role": "user", "content": "Write a Python function to calculate fibonacci numbers"}
]

text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt")

generated_ids = model.generate(**inputs, max_new_tokens=512)
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)

API

Access via Aether Tech AI API:

curl https://aether-models.nebulahq.work/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "aether-mini-v1",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Pricing

  • Input: $0.10 per 1M tokens
  • Output: $0.30 per 1M tokens

License

Apache 2.0

Contact

Downloads last month
3
GGUF
Model size
0.5B params
Architecture
qwen2
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support