Views
No views yet
Qwen/Qwen2.5-Coder-7B-Instruct for the FiberBrowser Copilot — a local genome-browser planner that turns natural-language analysis requests into structured JSON action plans.balanced (7.0B params, fp16). Recommended for Macs with 32+ GB unified memory (16 GB minimum).mlx_lm.server instance loads it and the FiberBrowser frontend talks to it via OpenAI-compatible chat completions. The browser handles the system prompt, viewport context, dataset metadata, and previous-turn history; the model emits a JSON action plan inside <think>...</think> tags.1# Install
2pip install mlx-lm fiberbrowser # or your preferred install
3
4# Serve
5python -m mlx_lm server --model mtcicero26/fiberbrowser-copilot-7b-v5 --port 8080
6
7# Point the browser at it
8FIBERBROWSER_COPILOT_BACKEND=mlx \
9FIBERBROWSER_COPILOT_MLX_URL=http://127.0.0.1:8080/v1/chat/completions \
10python browser.pypython browser.py --copilot mlx — the launcher auto-detects RAM, downloads the right tier, starts the server, and shuts it down with the browser.0.016.<think>
{reasoning about which actions to chain}
</think>
{"summary": "...", "actions": [{"type": "...", ...}], "warnings": []}navigate_gene, navigate_region — viewportscan_peaks, set_peaks_locked, select_peak_at — peakscluster_selected_peaks, cluster_peak_at_gene_tss — clusteringadd_region_label_rule — colormap rules (TSS-relative form for strand-aware coords)query_motif_overlaps — motif intersectionsapi_call — escape hatch to any safe /api/... route (settings, render, sort, filter, footprint analyze, primer design, etc.)respond_to_user — terminator for the agentic loop| tier | base | size | min RAM | repo |
|---|---|---|---|---|
| tiny | Qwen2.5-Coder-1.5B-Instruct | 1.5B | 8 GB | mtcicero26/fiberbrowser-copilot-1.5b-v1 |
| light | Qwen2.5-Coder-3B-Instruct | 3B | 12 GB | mtcicero26/fiberbrowser-copilot-3b-v1 |
| balanced | Qwen2.5-Coder-7B-Instruct | 7B | 16 GB | mtcicero26/fiberbrowser-copilot-7b-v1 |
| balanced (q4) | Qwen2.5-Coder-7B-Instruct | 7B int4 | 8 GB | mtcicero26/fiberbrowser-copilot-7b-v1-q4 |