### FastFlowLM Installation and Model Pull Source: https://www.fastflowlm.com Install FastFlowLM using the provided Windows executable and pull a specific model for use. The `--ctx-len` flag allows setting a custom context length. ```powershell Invoke-WebRequest https://github.com/FastFlowLM/FastFlowLM/releases/latest/download/flm-setup.exe ` -OutFile flm-setup.exe Start-Process .\flm-setup.exe -Wait flm pull llama3.2:3b flm run llama3.2:3b --ctx-len 131072 ``` -------------------------------- ### FastFlowLM CLI Commands Source: https://www.fastflowlm.com Basic commands for interacting with the FastFlowLM runtime via its command-line interface. Use these to run, list, and serve models. ```powershell flm run llama3.2:1b flm list flm serve llama3.2:1b ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.