Skip to content

Commit e20bd81

Browse files
authored
Merge pull request #4062 from elizaOS/v2-local-ai-default-dir
change default director for models and cache for localai
2 parents 905545a + 734eed2 commit e20bd81

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/plugin-local-ai/src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import fs from 'node:fs';
2+
import os from 'node:os';
23
import path from 'node:path';
34
import { Readable } from 'node:stream';
45
import { fileURLToPath } from 'node:url';
@@ -167,7 +168,7 @@ class LocalAIManager {
167168
*/
168169
private constructor() {
169170
// Set up models directory consistently, similar to cacheDir
170-
const modelsDir = path.join(process.cwd(), 'models');
171+
const modelsDir = path.join(os.homedir(), '.eliza', 'models');
171172

172173
// Check if LLAMALOCAL_PATH is set
173174
if (process.env.LLAMALOCAL_PATH?.trim()) {
@@ -191,7 +192,7 @@ class LocalAIManager {
191192
if (cacheDirEnv) {
192193
this.cacheDir = path.resolve(cacheDirEnv);
193194
} else {
194-
const cacheDir = path.join(process.cwd(), 'cache');
195+
const cacheDir = path.join(os.homedir(), '.eliza', 'cache');
195196
// Ensure cache directory exists
196197
if (!fs.existsSync(cacheDir)) {
197198
fs.mkdirSync(cacheDir, { recursive: true });

0 commit comments

Comments
 (0)