This commit is contained in:
Ryan Huang
2024-04-15 14:52:40 -04:00
parent 3d1805343a
commit e029b80cf6
6 changed files with 255 additions and 0 deletions

8
src/createClient.ts Normal file
View File

@ -0,0 +1,8 @@
import { type SimpleLogger } from "@lmstudio/lms-common";
import { LMStudioClient } from "@lmstudio/sdk";
export function createClient(logger: SimpleLogger) {
return new LMStudioClient({
logger,
});
}