How to use from
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 "muradil211/AetherSearch" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "muradil211/AetherSearch",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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 "muradil211/AetherSearch" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "muradil211/AetherSearch",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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