β¨ Whatβs New
π§ 1. New Model:Β gpt-oss:20b
Introducing the first-ever MoE (Mixture of Experts) model to run natively on AMD Ryzenβ’ AI NPUs, and also the first MoE model released by FastFlowLM (FLM).
gpt-oss:20b is a fast, open-source MoE model by OpenAI β powered by FLMβs NPU-native MoE engine with MXFP4 support, delivering high throughput and power efficiency optimized for AMD NPUs.
- Runs fully offline on AMD Ryzenβ’ AI NPU
- Supports reasoning effort controls in both CLI and Server mode
Try it:
# CLI
flm run gpt-oss:20b
# Server
flm serve gpt-oss:20bSet reasoning effort (CLI):
# CLI
flm run gpt-oss:20b
/set r-eff mediumπ NOTE
- Memory Requirements
β οΈ Note: Runninggpt-oss:20bmay need a system with > 32 GB RAM. The model itself uses ~15.1 GB of memory in FLM, and there is an internal cap (~15.6 GB) from on NPU memory allocation enforced by AMD/Microsoft, which makes only about half of the total system RAM available to the NPU. On 32 GB machines, it sometimes works sometimes not, so we recommend more RAM for a smooth experience.
π 2. Cross-Origin Resource Sharing (CORS)
CORS lets browser apps hosted on a different origin call your FLM server safely.
- Enable CORS
flm serve --cors 1- Disable CORS
flm serve --cors 0β οΈ Default: CORS is enabled.
π Security tip: Disable CORS (or restrict at your proxy) if your server is exposed beyond localhost.
π 3. Default Server Port Change
The default port has moved from 11434 β 52625 to reduce conflicts.
Check or override anytime:
# Show current effective port
flm port
# Use a custom port for this session only
flm serve llama3.2:1b --port 8000
flm serve llama3.2:1b -p 8000π‘
--port(or-p) affects this run only and does not change your system defaults.
π 4 Improved flm list
Cleaner output, filters, and a quiet mode.
Common uses:
# Default view (pretty, with icons)
flm list
# Quiet view (no emoji / minimal)
flm list --quiet
# Show everything
flm list --filter all --quiet
# Only models already installed
flm list --filter installed --quiet
# Only models not yet installed
flm list --filter not-installed --quiet
π Summary
This release supports gpt-oss:20b which is a state-of-the-art MoE model, enables CORS by default (toggleable), changes the default server port to 52625, and improves flm list with quieter, filterable output.