How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="muradil211/AetherSearch")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("muradil211/AetherSearch")
model = AutoModelForCausalLM.from_pretrained("muradil211/AetherSearch", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

AetherSearch

AetherSearch is a search-augmented language model release trained through a multi-stage post-training pipeline with SFT, DPO, and reinforcement learning.

The released weights are provided in Hugging Face Transformers format and can be loaded with AutoModelForCausalLM and AutoTokenizer.

Files

  • model.safetensors: model weights.
  • config.json and generation_config.json: Transformers configuration.
  • tokenizer.json, tokenizer_config.json, vocab.json, merges.txt, added_tokens.json, and special_tokens_map.json: tokenizer assets.
  • MODEL_MANIFEST.sha256: SHA256 checksums for the uploaded files.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

repo_id = "muradil211/AetherSearch"

tokenizer = AutoTokenizer.from_pretrained(repo_id)
model = AutoModelForCausalLM.from_pretrained(
    repo_id,
    torch_dtype="auto",
    device_map="auto",
)

Notes

The companion training code is released at: https://github.com/Muradil-mamat-211/AetherSearch

License and upstream base-model attribution should be set according to the actual base model and data release terms before wider redistribution.

Downloads last month
5
Safetensors
Model size
3B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support