File tree 1 file changed +3
-2
lines changed
packages/plugin-local-ai/src
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
import fs from 'node:fs' ;
2
+ import os from 'node:os' ;
2
3
import path from 'node:path' ;
3
4
import { Readable } from 'node:stream' ;
4
5
import { fileURLToPath } from 'node:url' ;
@@ -167,7 +168,7 @@ class LocalAIManager {
167
168
*/
168
169
private constructor ( ) {
169
170
// 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' ) ;
171
172
172
173
// Check if LLAMALOCAL_PATH is set
173
174
if ( process . env . LLAMALOCAL_PATH ?. trim ( ) ) {
@@ -191,7 +192,7 @@ class LocalAIManager {
191
192
if ( cacheDirEnv ) {
192
193
this . cacheDir = path . resolve ( cacheDirEnv ) ;
193
194
} else {
194
- const cacheDir = path . join ( process . cwd ( ) , 'cache' ) ;
195
+ const cacheDir = path . join ( os . homedir ( ) , '.eliza' , 'cache' ) ;
195
196
// Ensure cache directory exists
196
197
if ( ! fs . existsSync ( cacheDir ) ) {
197
198
fs . mkdirSync ( cacheDir , { recursive : true } ) ;
You can’t perform that action at this time.
0 commit comments