The content below is not yet update to reflect changes in [email protected], and is still referencing 0.0.12 APIs.
Bear with us as we update publicly facing docs and headers π»πΎπ.
Below are examples of how to use LM Studio's TypeScript client SDK to perform operations such as loading, unloading, and generating with a model.
Loading an LLM and Generating with It
This example loads a model lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF and predicts text with it.
import { LMStudioClient } from"@lmstudio/sdk";
asyncfunctionmain() {
const client = newLMStudioClient();
// Load a modelconst llama3 = await client.llm.load("lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF", {
config: { gpuOffload: "max" },
});
// Create a text completion predictionconst prediction = llama3.complete("The meaning of life is");
// Stream the responseforawait (const text of prediction) {
process.stdout.write(text);
}
}
main();
Pro Tip
process.stdout.write is a Node.js-specific function that allows you to print text without a newline.
On the browser, you might want to do something like:
// Get the element where you want to display the outputconst outputElement = document.getElementById("output");
forawait (const text of prediction) {
outputElement.textContent += text;
}
Using a Non-Default LM Studio Server Port
This example shows how to connect to LM Studio running on a different port (e.g., 8080).
Loading a Model and Keeping It Loaded After Client Exit (daemon mode)
By default, when your client disconnects from LM Studio, all models loaded by that client are unloaded. You can prevent this by setting the noHup option to true.
await client.llm.load("lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF",
config: { gpuOffload: "max" },
noHup: true,
});
// The model stays loaded even after the client disconnects
Giving a Loaded Model a Friendly Name
You can set an identifier for a model when loading it. This identifier can be used to refer to the model later.
await client.llm.load("lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF", {
config: { gpuOffload: "max" },
identifier: "my-model",
});
// You can refer to the model later using the identifierconst myModel = await client.llm.get("my-model");
// myModel.complete(...);
Loading a Model with a Custom Configuration
By default, the load configuration for a model comes from the preset associated with the model (Can be changed on the "My Models" page in LM Studio).
const llama3 = await client.llm.load("lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF", {
config: {
gpuOffload: "max",
contextLength: 1024,
gpuOffload: 0.5, // Offloads 50% of the computation to the GPU
},
});
// llama3.complete(...);
Loading a Model with a Specific Preset
The preset determines the default load configuration and the default inference configuration for a model. By default, the preset associated with the model is used. (Can be changed on the "My Models" page in LM Studio). You can change the preset used by specifying the preset option.
const llama3 = await client.llm.load("lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF", {
config: { gpuOffload: "max" }, // Overrides the presetpreset: "My ChatML",
});
Custom Loading Progress
You can track the loading progress of a model by providing an onProgress callback.
AbortController is a standard JavaScript API that allows you to cancel asynchronous operations. It is supported in modern browsers and Node.js. For more information, see the MDN Web Docs.
Unloading a Model
You can unload a model by calling the unload method.
Note, by default, all models loaded by a client are unloaded when the client disconnects. Therefore, unless you want to precisely control the lifetime of a model, you do not need to unload them manually.
Pro Tip
If you wish to keep a model loaded after disconnection, you can set the noHup option to true when loading the model.
Using a specific loaded model
To look up an already loaded model by its identifier, use the following:
To look up an already loaded model by its path, use the following:
// Matches any quantizationconst llama3 = await client.llm.get({ path: "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF" });
// Or if a specific quantization is desired:const llama3 = await client.llm.get({
path: "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF/Meta-Llama-3-8B-Instruct-Q4_K_M.gguf",
});
// llama3.complete(...);
Using any loaded model
If you do not have a specific model in mind, and just want to use any loaded model, you can simply pass in an empty object to client.llm.get.
To list all loaded models, use the client.llm.listLoaded method.
const loadedModels = await client.llm.listLoaded();
if (loadedModels.length === 0) {
thrownewError("No models loaded");
}
// Use the first oneconst firstModel = await client.llm.get({ identifier: loadedModels[0].identifier });
// firstModel.complete(...);
Completion
To perform text completion, use the complete method:
const prediction = model.complete("The meaning of life is");
forawait (const text of prediction) {
process.stdout.write(text);
}
By default, the inference parameters in the preset is used for the prediction. You can override them like this:
const prediction = anyModel.complete("Meaning of life is", {
contextOverflowPolicy: "stopAtLimit",
maxPredictedTokens: 100,
prePrompt: "Some pre-prompt",
stopStrings: ["\n"],
temperature: 0.7,
});
// ...Do stuff with the prediction...
Chat Completion
To perform a conversation, use the respond method:
const prediction = anyModel.respond([
{ role: "system", content: "Answer the following questions." },
{ role: "user", content: "What is the meaning of life?" },
]);
forawait (const text of prediction) {
process.stdout.write(text);
}
Similarly, you can override the inference parameters for the conversation (Note the available options are different from text completion):
const prediction = anyModel.respond(
[
{ role: "system", content: "Answer the following questions." },
{ role: "user", content: "What is the meaning of life?" },
],
{
contextOverflowPolicy: "stopAtLimit",
maxPredictedTokens: 100,
stopStrings: ["\n"],
temperature: 0.7,
inputPrefix: "Q: ",
inputSuffix: "\nA:",
},
);
// ...Do stuff with the prediction...
Heads Up
LLMs are stateless. They do not remember or retain information from previous inputs. Therefore, when predicting with an LLM, you should always provide the full history/context.
Getting Prediction Stats
If you wish to get the prediction statistics, you can await on the prediction object to get a PredictionResult, through which you can access the stats via the stats property.
const prediction = model.complete("The meaning of life is");
forawait (const text of prediction) {
process.stdout.write(text);
}
const { stats } = await prediction;
console.log(stats);
Info
When you have already consumed the prediction stream, awaiting on the prediction object will not cause any extra waiting, as the result is cached within the prediction object.
On the other hand, if you only care about the final result, you don't need to iterate through the stream. Instead, you can await on the prediction object directly to get the final result.
const prediction = model.complete("The meaning of life is");
const result = await prediction;
const content = result.content;
const stats = result.stats;
// Or just:const { content, stats } = await model.complete("The meaning of life is");
Producing JSON (Structured Output)
LM Studio supports structured prediction, which will force the model to produce content that conforms to a specific structure. To enable structured prediction, you should set the structured field. It is available for both complete and respond methods.
Here is an example of how to use structured prediction:
const prediction = model.complete("Here is a joke in JSON:", {
maxPredictedTokens: 100,
structured: { type: "json" },
});
const result = await prediction;
try {
// Although the LLM is guaranteed to only produce valid JSON, when it is interrupted, the// partial result might not be. Always check for errors. (See below)const parsed = JSON.parse(result.content);
console.info(parsed);
} catch (e) {
console.error(e);
}
Sometimes, any JSON is not enough. You might want to enforce a specific JSON schema. You can do this by providing a JSON schema to the structured field. Read more about JSON schema at json-schema.org.
Although the model is forced to generate predictions that conform to the specified structure, the prediction may be interrupted (for example, if the user stops the prediction). When that happens, the partial result may not conform to the specified structure. Thus, always check the prediction result before using it, for example, by wrapping the JSON.parse inside a try-catch block.
In certain cases, the model may get stuck. For example, when forcing it to generate valid JSON, it may generate a opening brace { but never generate a closing brace }. In such cases, the prediction will go on forever until the context length is reached, which can take a long time. Therefore, it is recommended to always set a maxPredictedTokens limit. This also contributes to the point above.
Canceling a Prediction
A prediction may be canceled by calling the cancel method on the prediction object.
const prediction = model.complete("The meaning of life is");
// ...Do stuff...
prediction.cancel();
When a prediction is canceled, the prediction will stop normally but with stopReason set to "userStopped". You can detect cancellation like so:
forawait (const text of prediction) {
process.stdout.write(text);
}
const { stats } = await prediction;
if (stats.stopReason === "userStopped") {
console.log("Prediction was canceled by the user");
}