next-14b
73
3
14.0B
14 languages
license:mit
by
Lamapi
Language Model
OTHER
14B params
New
73 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
32GB+ RAM
Mobile
Laptop
Server
Quick Summary
Türkiye’s First Reasoning-Capable AI Model — Logical, Analytical, and Enterprise-Ready [](https://opensource.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
14GB+ RAM
Code Examples
🚀 Installation & Usagepythontransformers
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "Lamapi/next-14b"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")
messages = [
{"role": "system", "content": "You are Next-X1, a reasoning-capable AI assistant created by Lamapi. You think deeply, reason logically, and always answer concisely. Proudly made in Turkey."},
{"role": "user", "content": "Explain why the sky appears blue using logical reasoning."}
]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=150)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.