@oh-my-pi/pi-utils 14.0.5 → 14.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/dirs.ts +0 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.1.1",
|
|
5
5
|
"description": "Shared utilities for pi packages",
|
|
6
6
|
"homepage": "https://github.com/can1357/oh-my-pi",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/bun": "^1.3",
|
|
41
|
-
"@oh-my-pi/pi-natives": "
|
|
41
|
+
"@oh-my-pi/pi-natives": "workspace:*"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"bun": ">=1.3.7"
|
package/src/dirs.ts
CHANGED
|
@@ -325,11 +325,6 @@ export function getModelDbPath(agentDir?: string): string {
|
|
|
325
325
|
return dirs.agentSubdir(agentDir, "models.db", "data");
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
-
/** Get the directory path for the shared search DB state (~/.omp/agent/search-db). */
|
|
329
|
-
export function getSearchDbDir(agentDir?: string): string {
|
|
330
|
-
return dirs.agentSubdir(agentDir, "search-db", "data");
|
|
331
|
-
}
|
|
332
|
-
|
|
333
328
|
/** Get the sessions directory (~/.omp/agent/sessions). */
|
|
334
329
|
export function getSessionsDir(agentDir?: string): string {
|
|
335
330
|
return dirs.agentSubdir(agentDir, "sessions", "data");
|