refactor: trim lmstudio helper exports

This commit is contained in:
Peter Steinberger
2026-05-01 20:06:53 +01:00
parent cc470dbfc1
commit 1cac6f48f0
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ import {
const log = createSubsystemLogger("memory/embeddings");
export type LmstudioEmbeddingClient = {
type LmstudioEmbeddingClient = {
baseUrl: string;
headers: Record<string, string>;
ssrfPolicy?: SsrFPolicy;

View File

@@ -18,7 +18,7 @@ type LmstudioLoadResponse = {
status?: string;
};
export type FetchLmstudioModelsResult = {
type FetchLmstudioModelsResult = {
reachable: boolean;
status?: number;
models: LmstudioModelWire[];

View File

@@ -1,7 +1,7 @@
import { randomUUID } from "node:crypto";
import { parseStandalonePlainTextToolCallBlocks } from "openclaw/plugin-sdk/tool-payload";
export type LmstudioPlainTextToolCallBlock = {
type LmstudioPlainTextToolCallBlock = {
arguments: Record<string, unknown>;
name: string;
};