FastFlowLM VS CodeInteract with and manage a FastFlowLM server from Visual Studio Code. Features
ConfigurationOpen Settings and search for FastFlowLM:
For example, a local Python server can be managed with:
Usage
Use FastFlowLM: Show Activity Log to open the activity channel. It reports server startup and shutdown, server stdout/stderr, model discovery, request dispatch, response progress, and completion. This makes model loading and task progress visible even when the server is running as a child process. The extension does not assume how FastFlowLM is installed or launched. Configure the command that matches your server installation. Native Chat requests use streaming responses when the server supports OpenAI-compatible SSE streaming. Requirements
Data and securityChat messages, tool schemas, and tool results are sent to the configured FastFlowLM server. This extension does not send requests to a hosted service of its own. API keys are sent as bearer tokens and should be configured in user settings rather than committed to workspace settings. The extension starts the configured server command with the current user permissions. Only configure commands and working directories you trust. Troubleshooting
Known limitationsToken counting uses a conservative character-based estimate because the extension does not have access to each model's tokenizer. The server remains authoritative for its actual context window. Development
Press Current ScopeThe extension manages one local server process. FastFlowLM receives VS Code tool schemas and conversation context, then returns text or tool calls through the native Chat provider API. The server must support OpenAI-compatible chat completions and function/tool calling. NOTEThis is a work-in-progress, there's a number of things I want to implement - like te FLM server being a bit more chatty in the terminal - I want to see the status and the thinking process , not just a single word |