Local Agents With LM Studio Bionic

So far this book has treated LM Studio as a place to run models and serve an API. LM Studio Bionic is a different app with a different job. Bionic is an AI agent built for open models. Where LM Studio manages models and serves requests, Bionic uses those models to get real work done: it reads your files, searches the web, runs code, and edits a codebase, all under your direction.

The two apps work as a pair. LM Studio stays the low-level tool for downloading models, setting load parameters, and running the local server. Bionic is the agent layer on top. You still keep your model library in LM Studio, and Bionic draws on it.

Two Kinds of Projects: Work and Code

Bionic organizes what you do into projects, and it offers two types.

A Work Project suits research, writing, and analysis. You give the agent a goal, point it at documents or the web, and it gathers information, drafts text, and reasons over what it finds. This is the project type to reach for when you want a private research assistant that never sends your source material to a cloud provider.

A Code Project works inside a local codebase. The agent gets a set of tools built for software work: it can read and write files, search the project, run Git commands, and run shell commands. You describe a change in plain language, and the agent edits files, runs tests, and reports back. Because everything runs on your machine against a local model, your source code never leaves your computer.

The split matters because the two modes need different tools and different guardrails. A writing task needs document and web access. A coding task needs file, search, Git, and shell access, which is more powerful and more dangerous, so you want to review what the agent does before it acts.

Choosing a Model: Local, Cloud, and Remote

Bionic can run a task against three kinds of models.

Local models come straight from your LM Studio library. This is the private, offline path: the model runs on your own hardware and no data leaves the machine. For most personal and proprietary work, this is the right choice, and it is the whole reason to prefer a tool like Bionic.

Cloud models run on LM Studio Secure Cloud, which offers Zero Data Retention. When a task is too large for your local hardware, or you want more speed, you can send it to a cloud model without giving up as much privacy as a typical commercial API, because Secure Cloud does not retain your data.

Remote models run on another one of your own devices over LM Link. You can run a large model on a powerful desktop at home and drive it from a laptop through Bionic. The connection is end-to-end encrypted, so the setup keeps the privacy of local inference while freeing you from the desktop. See the CLI chapter for the lms link commands that enable LM Link.

You pick the model per task, so you can keep sensitive work local and send only the safe, heavy jobs to the cloud.

Voice Input

Bionic accepts voice input, so you can speak a task instead of typing it. This helps when you describe a longer goal, and it fits an agent workflow where you set direction and then review results rather than write out every instruction by hand.

Bionic and Your LM Studio Model Library

You do not manage models twice. Bionic uses the same models you download and configure in LM Studio. When you add a model in LM Studio, it becomes available to Bionic as a local model. This is why the two apps ship separately but belong together: LM Studio handles the model management that this book has covered in earlier chapters, and Bionic handles the agent loop that uses those models.

In practice, you set up your models once in LM Studio, tune their load settings and context sizes there, and then switch to Bionic when you want an agent to use them.

When to Use Bionic vs LM Studio Desktop

Use LM Studio desktop when you want to chat with a model, test a prompt, serve the local API for your own scripts, or manage your model library. Everything in the earlier chapters of this book runs here.

Use Bionic when you want an agent to complete a multi-step task on its own: research a topic across many documents, draft a report, or make a change across a codebase and run the tests. Bionic runs the tool loop for you, so you describe the goal instead of wiring up each tool call yourself, as you did by hand in the tool use chapter.

The choice is simple. If you are building an application that calls a model, use LM Studio and its API. If you want a ready-made agent to do a job for you with local models, use Bionic.

Wrap Up

LM Studio Bionic extends the private, local-first approach of this book from single prompts to full agent workflows. It keeps your data on your own hardware while giving a capable model the tools to research, write, and code on your behalf. Because it draws on the same model library you already manage in LM Studio, adopting Bionic adds a new way to work without changing how you handle models.