Text Generation
Transformers
Safetensors
English
qwen3_5
image-text-to-text
szl-holdings
series-a
doctrine-v11
governed-ai
proposal-only
conversational
Instructions to use SZLHOLDINGS/chaski with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SZLHOLDINGS/chaski with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SZLHOLDINGS/chaski") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("SZLHOLDINGS/chaski") model = AutoModelForMultimodalLM.from_pretrained("SZLHOLDINGS/chaski", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use SZLHOLDINGS/chaski with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SZLHOLDINGS/chaski" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SZLHOLDINGS/chaski", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SZLHOLDINGS/chaski
- SGLang
How to use SZLHOLDINGS/chaski 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 "SZLHOLDINGS/chaski" \ --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": "SZLHOLDINGS/chaski", "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 "SZLHOLDINGS/chaski" \ --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": "SZLHOLDINGS/chaski", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use SZLHOLDINGS/chaski with Docker Model Runner:
docker model run hf.co/SZLHOLDINGS/chaski
Remove Khipu MEASURED pin from Chaski; Jobs RUNNING only
Browse files
README.md
CHANGED
|
@@ -20,22 +20,11 @@ szl:
|
|
| 20 |
artifact_class: ADAPTER
|
| 21 |
originality: FINETUNE_DISCLOSED_BASE
|
| 22 |
collection: "SZL Fall 2026 — Original Cuts"
|
| 23 |
-
demo_space: https://huggingface.co/spaces/SZLHOLDINGS/szl-model-inference-lab
|
| 24 |
jobs: RUNNING
|
| 25 |
job_id: 6a91b8ba984507d9db4ea071
|
| 26 |
job_namespace: SZLHOLDINGS
|
| 27 |
---
|
| 28 |
|
| 29 |
-
<!-- SZL-ESTATE-CARD:v2:START -->
|
| 30 |
-
<p align="center"><a href="https://a-11-oy.com/"><img src="https://huggingface.co/spaces/SZLHOLDINGS/README/resolve/main/assets/estate-banner-v2.svg" alt="SZL Holdings — governed, receipted, verifiable" width="100%"></a></p>
|
| 31 |
-
<p align="center">
|
| 32 |
-
<a href="https://github.com/szl-holdings/.github/tree/main/doctrine"><img src="https://img.shields.io/badge/doctrine-v11%20LOCKED-0B1F3A?style=flat-square" alt="doctrine v11"></a>
|
| 33 |
-
<a href="https://huggingface.co/spaces/SZLHOLDINGS/szl-model-inference-lab"><img src="https://img.shields.io/badge/demo-lab%20LIVE%20%C2%B7%20Chaski%20not%20loaded-3AF4C8?style=flat-square" alt="demo Space"></a>
|
| 34 |
-
<a href="https://a-11-oy.com/"><img src="https://img.shields.io/badge/evidence%20wall-verify%20in%20browser-C9B787?style=flat-square" alt="evidence wall"></a>
|
| 35 |
-
</p>
|
| 36 |
-
<p align="center"><sub>Part of the <a href="https://huggingface.co/SZLHOLDINGS">SZL Holdings</a> governed estate. Verification proves integrity and origin, never accuracy or performance. Λ = Conjecture 1.</sub></p>
|
| 37 |
-
<!-- SZL-ESTATE-CARD:v2:END -->
|
| 38 |
-
|
| 39 |
# Chaski
|
| 40 |
|
| 41 |
**One line.** Messenger LLM. Proposal-only drafts and honest refusals for the SZL controller.
|
|
@@ -46,13 +35,15 @@ szl:
|
|
| 46 |
| **Originality** | SZL fine-tune of a disclosed Apache Qwen instruct base |
|
| 47 |
| **Base** | `Qwen/Qwen3.5-0.8B` (Apache-2.0, 0.6B–2B lock) |
|
| 48 |
| **License** | `apache-2.0` |
|
| 49 |
-
| **
|
| 50 |
-
| **HF Jobs** | RUNNING `6a91b8ba984507d9db4ea071` under `SZLHOLDINGS`. Not MEASURED until the job finishes and a receipt exists. |
|
| 51 |
| **Status** | CUTTING · train in flight · weights ROADMAP |
|
|
|
|
| 52 |
| **Sibling** | [`szl-receiptagent-qwen35-0.8b-v2`](https://huggingface.co/SZLHOLDINGS/szl-receiptagent-qwen35-0.8b-v2) |
|
| 53 |
|
| 54 |
> **Fashion rule.** Silhouette from Qwen3 / Qwen3.5 instruct. Cut is original SZL. We do not republish someone else's tensors.
|
| 55 |
|
|
|
|
|
|
|
| 56 |
## Intended use
|
| 57 |
|
| 58 |
- **Who:** a11oy / Alloy controller, not an end-user chatbot
|
|
@@ -62,25 +53,19 @@ szl:
|
|
| 62 |
## What it is NOT
|
| 63 |
|
| 64 |
- Not an autonomous agent, executor, factual oracle, or weapon.
|
| 65 |
-
- Not a Qwen rehost.
|
| 66 |
-
- Not
|
| 67 |
-
- Not the model running in the house lab today (that pin is `SZL-Khipu-1.5B-GGUF` Q4_K_M).
|
| 68 |
-
|
| 69 |
-
## Honesty labels
|
| 70 |
-
|
| 71 |
-
**Forbidden:** a score with no method, a copied leaderboard number, SOTA without a dated run, or Λ called a theorem.
|
| 72 |
|
| 73 |
## Evaluation
|
| 74 |
|
| 75 |
-
**Status: ROADMAP.**
|
| 76 |
|
| 77 |
## Training
|
| 78 |
|
| 79 |
-
- **Recipe:** Unsloth QLoRA SFT
|
| 80 |
-
- **Data:** `SZLHOLDINGS/szl-1-doctrine-sft` (41 MEASURED rows) plus ouroboros identity turns. Brain corpus excluded
|
| 81 |
-
- **Job:** `6a91b8ba984507d9db4ea071` namespace `SZLHOLDINGS`.
|
| 82 |
-
- **Train receipt:** absent until the job finishes. Absence = do not claim signed provenance.
|
| 83 |
|
| 84 |
## Limitations
|
| 85 |
|
| 86 |
-
- Narrow
|
|
|
|
| 20 |
artifact_class: ADAPTER
|
| 21 |
originality: FINETUNE_DISCLOSED_BASE
|
| 22 |
collection: "SZL Fall 2026 — Original Cuts"
|
|
|
|
| 23 |
jobs: RUNNING
|
| 24 |
job_id: 6a91b8ba984507d9db4ea071
|
| 25 |
job_namespace: SZLHOLDINGS
|
| 26 |
---
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
# Chaski
|
| 29 |
|
| 30 |
**One line.** Messenger LLM. Proposal-only drafts and honest refusals for the SZL controller.
|
|
|
|
| 35 |
| **Originality** | SZL fine-tune of a disclosed Apache Qwen instruct base |
|
| 36 |
| **Base** | `Qwen/Qwen3.5-0.8B` (Apache-2.0, 0.6B–2B lock) |
|
| 37 |
| **License** | `apache-2.0` |
|
| 38 |
+
| **HF Jobs** | RUNNING `6a91b8ba984507d9db4ea071` under `SZLHOLDINGS`. Not MEASURED. No serve pin. |
|
|
|
|
| 39 |
| **Status** | CUTTING · train in flight · weights ROADMAP |
|
| 40 |
+
| **Later SKU** | `A11OY-MINI` will be a GGUF of **this** model after train. ROADMAP. Not Khipu. |
|
| 41 |
| **Sibling** | [`szl-receiptagent-qwen35-0.8b-v2`](https://huggingface.co/SZLHOLDINGS/szl-receiptagent-qwen35-0.8b-v2) |
|
| 42 |
|
| 43 |
> **Fashion rule.** Silhouette from Qwen3 / Qwen3.5 instruct. Cut is original SZL. We do not republish someone else's tensors.
|
| 44 |
|
| 45 |
+
The house CPU lab serves **Khipu GGUF**, not Chaski. Cite that pin only on Khipu cards.
|
| 46 |
+
|
| 47 |
## Intended use
|
| 48 |
|
| 49 |
- **Who:** a11oy / Alloy controller, not an end-user chatbot
|
|
|
|
| 53 |
## What it is NOT
|
| 54 |
|
| 55 |
- Not an autonomous agent, executor, factual oracle, or weapon.
|
| 56 |
+
- Not a Qwen rehost.
|
| 57 |
+
- Not the live lab model. Not a tokens/s claim.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
## Evaluation
|
| 60 |
|
| 61 |
+
**Status: ROADMAP.** Quality is UNKNOWN until a held-out k/n run exists.
|
| 62 |
|
| 63 |
## Training
|
| 64 |
|
| 65 |
+
- **Recipe:** Unsloth QLoRA SFT. Script: `train_chaski.py`.
|
| 66 |
+
- **Data:** `SZLHOLDINGS/szl-1-doctrine-sft` (41 MEASURED rows) plus ouroboros identity turns. Brain corpus excluded.
|
| 67 |
+
- **Job:** `6a91b8ba984507d9db4ea071` namespace `SZLHOLDINGS`. RUNNING. Train receipt absent until finish.
|
|
|
|
| 68 |
|
| 69 |
## Limitations
|
| 70 |
|
| 71 |
+
- Narrow curriculum. Controller required. Λ = Conjecture 1. Trust ceiling 0.97.
|