@fugood/bricks-project 2.23.0-beta.18 → 2.23.0-beta.22
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.22",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"lodash": "^4.17.4",
|
|
15
15
|
"uuid": "^8.3.1"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "d0a0fe0012e6938d1e756e0c6ef04759e997e138"
|
|
18
18
|
}
|
|
@@ -382,6 +382,11 @@ export type GeneratorLLMActionStopCompletion = Action & {
|
|
|
382
382
|
__actionName: 'GENERATOR_LLM_STOP_COMPLETION'
|
|
383
383
|
}
|
|
384
384
|
|
|
385
|
+
/* Clear KV cache */
|
|
386
|
+
export type GeneratorLLMActionClearCache = Action & {
|
|
387
|
+
__actionName: 'GENERATOR_LLM_CLEAR_CACHE'
|
|
388
|
+
}
|
|
389
|
+
|
|
385
390
|
/* Clear downloaded models & current jobs */
|
|
386
391
|
export type GeneratorLLMActionClearDownload = Action & {
|
|
387
392
|
__actionName: 'GENERATOR_LLM_CLEAR_DOWNLOAD'
|