Views
No views yet
flowcast-sota-v3flowcast-sota-v1 with improved expanded-benchmark coverage while maintaining 100% on the core production gate.Say it. Plan it. Do it.
| Gate | v1 | v3 | Δ |
|---|---|---|---|
| Core hard eval (117) | 100% | 100% | — |
| Core held-out (27) | 100% | 100% | — |
| Expanded hard quality (170) | 98.2% | 99.4% | +1.2% |
| Expanded held-out (39) | 97.4% | 100% | +2.6% |
| Generalization suite | 91.4% | 97.1% | +5.7% |
| Core p50 latency | ~1028ms | ~1002ms | ~same |
pip install mlx-lm huggingface_hub1from huggingface_hub import snapshot_download
2from mlx_lm import load, generate
3
4base = snapshot_download("mlx-community/Gemma4-E2B-IT-Text-int4")
5adapter = snapshot_download("nsalerni/gemma-4-e2b-flowcast-v3")
6
7model, tokenizer = load(base, adapter_path=adapter)
8
9prompt = tokenizer.apply_chat_template(
10 [{"role": "user", "content": "Classify: go to gmail"}],
11 tokenize=False,
12 add_generation_prompt=True,
13)
14print(generate(model, tokenizer, prompt=prompt, max_tokens=128))1from huggingface_hub import snapshot_download
2from gemmaflow_tune.production import create_production_runner
3from gemmaflow_tune.prompts import build_automation_planning_for_case
4
5adapter = snapshot_download("nsalerni/gemma-4-e2b-flowcast-v3")
6runner = create_production_runner(adapter_path=adapter)
7
8case = {"transcript": "go to gmail", "tags": ["web_routing"]}
9prompt = build_automation_planning_for_case(case, "hybrid_slim")
10result = runner.generate("", user_content=prompt, max_tokens=256)
11print(result.text)| File | Description |
|---|---|
adapters.safetensors | LoRA weights (checkpoint 0000030) |
adapter_config.json | LoRA config + base model reference |
inference_config.json | Recommended runtime settings + benchmark scores |
1{
2 "prompt_mode": "hybrid_slim",
3 "json_early_stop": true,
4 "use_prompt_kv_cache": true,
5 "temperature": 0.02,
6 "top_p": 0.85,
7 "max_tokens": 256
8}mlx-community/Gemma4-E2B-IT-Text-int4 (0.7B active, ~2.5 GB disk)flowcast-sota-v1 → flowcast-v2-gen-refine1@misc{gemma4e2bflowcastv32026,
2 title = {gemma-4-e2b-flowcast-v3: Voice Desktop Automation for GemmaFlow},
3 author = {Salerni, Nicola},
4 year = {2026},
5 url = {https://huggingface.co/nsalerni/gemma-4-e2b-flowcast-v3}
6}