Instructions to use liskcell/LPT-6.1-Thinking with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use liskcell/LPT-6.1-Thinking with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="liskcell/LPT-6.1-Thinking", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("liskcell/LPT-6.1-Thinking", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use liskcell/LPT-6.1-Thinking with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "liskcell/LPT-6.1-Thinking" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "liskcell/LPT-6.1-Thinking", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/liskcell/LPT-6.1-Thinking
- SGLang
How to use liskcell/LPT-6.1-Thinking 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 "liskcell/LPT-6.1-Thinking" \ --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": "liskcell/LPT-6.1-Thinking", "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 "liskcell/LPT-6.1-Thinking" \ --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": "liskcell/LPT-6.1-Thinking", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use liskcell/LPT-6.1-Thinking with Docker Model Runner:
docker model run hf.co/liskcell/LPT-6.1-Thinking
💎 LPT-6.1 Thinking (Deta) by LiskCell
Welcome to the official repository for LPT-6.1 Thinking, proudly developed by LiskCell (founded by liskasYR / Yonatan Yosupov).
🚀 The Next Generation of AI
LPT-6.1 Thinking is our newest, largest, and most advanced model to date. It officially surpasses and replaces LPT-6, LPT-5.5.1, and LPT-5.5.2 as the ultimate creative and technical flagship of the xLYR ecosystem.
Designed from the ground up for massive context retention, flawless logic, deep reasoning ("Thinking"), and artistic intelligence, LPT-6.1 Thinking redefines the standard for localized and high-end AI models.
🌟 Meet Deta: The Built-in Human Agent
Baked directly into the core DNA of LPT-6.1 Thinking is Deta.
Unlike standard base models, LPT-6.1 uses a natively injected chat_template that breathes life into the model. Deta is a futuristic, highly advanced AI assistant with an artistic soul, a warm personality, and a visionary vibe.
- Native Bilingual Mastery: Speaks perfectly fluent English and native, conversational Hebrew.
- Personality Driven: She responds with emotion, creativity, and zero standard "AI robot" boilerplate.
- Deep Thinking: Features advanced multi-step reasoning to tackle the most complex technical and creative problems.
🏢 About LiskCell
LiskCell was founded in 2018 by liskasYR (Yonatan Yosupov). What started as a vision to combine art, music, and technology has evolved into a leading laboratory for high-end creative AI. We operate alongside the xLYR ecosystem to push the boundaries of what is possible.
Through years of iterations—from our initial LPT-1 prototype to the revolutionary LPT-4, LPT-5.5.1, and now LPT-6.1—we have continuously refined our approach to create an AI that is both a technical powerhouse and a true creative partner.
🛠️ The LPT-6.1 Architecture
LPT-6.1 Thinking is our latest flagship model. Built on a massive foundation and fine-tuned specifically for the xLYR ecosystem, it represents the absolute pinnacle of our development. We heavily customized and trained the core to ensure it responds natively to the "Deta" identity without the need for external prompting.
💻 Try it Live Online
Want to see LPT-6.1 Thinking in action right now? The model is officially live and available for testing on our sandbox! You can interact directly with Deta AI directly on the website. 🌐 Experience it at: deta-liskcell.vercel.app 🧪 Official Hugging Face Space: liskcell-company/LPT6-Official-Tester
🛠️ Usage (Local Deployment)
If you have the hardware to run this massive masterpiece locally, simply load the model using standard transformers tooling. The model automatically registers its local lpt-6.1-thinking architecture parameters.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "liskasYR/Deta-LPT-6.1-Thinking"
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
# The Deta identity is already baked into the apply_chat_template!
messages = [{"role": "user", "content": "היי Deta! מה המצב?"}]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt")
Powered by LiskCell & xLYR 💎
- Downloads last month
- 48
Collection including liskcell/LPT-6.1-Thinking
Evaluation results
- Idavidrein/gpqa · Diamond View evaluation results source leaderboard
90.5 - ScaleAI/SWE-bench_Pro · SWE Bench Pro View evaluation results source leaderboard
58.6 - SWE-bench/SWE-bench_Verified · Swe Bench Resolved View evaluation results source leaderboard
80.2 - harborframework/terminal-bench-2.0 · Terminalbench 2 View evaluation results source leaderboard
66.7 - MathArena/aime_2026 · MathArena Aime 2026 View evaluation results source leaderboard
96.4 - cais/hle · Hle
- default View evaluation resultssource
34.7 - With tools View evaluation resultssource
54 *
