mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-22 03:51:18 +00:00
refactor: trim lmstudio helper exports
This commit is contained in:
parent
cc470dbfc1
commit
1cac6f48f0
3 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@ import {
|
|||
|
||||
const log = createSubsystemLogger("memory/embeddings");
|
||||
|
||||
export type LmstudioEmbeddingClient = {
|
||||
type LmstudioEmbeddingClient = {
|
||||
baseUrl: string;
|
||||
headers: Record<string, string>;
|
||||
ssrfPolicy?: SsrFPolicy;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ type LmstudioLoadResponse = {
|
|||
status?: string;
|
||||
};
|
||||
|
||||
export type FetchLmstudioModelsResult = {
|
||||
type FetchLmstudioModelsResult = {
|
||||
reachable: boolean;
|
||||
status?: number;
|
||||
models: LmstudioModelWire[];
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue