@@ -18,7 +18,7 @@ The AI agent script CLI
18
18
Developing an intelligent application with AI Agent Script Engine involves just three steps:
19
19
20
20
* Choose an appropriate brain🧠 (LLM Large Language Model)
21
- * Select a parameter size based on your application's requirements; larger sizes offer better performance but consume more resources and increase response time...
21
+ * Select a parameter size based on your application's requirements; larger sizes offer better quality but consume more resources and increase response time...
22
22
* Choose the model's expertise: Different models are trained with distinct methods and datasets, resulting in unique capabilities...
23
23
* Optimize quantization: Higher levels of quantization (compression) result in faster speed and smaller size, but potentially lower accuracy...
24
24
* Decide on the optimal context window size (` content_size ` ): Typically, 2048 is sufficient; this parameter also influences model performance...
@@ -40,7 +40,7 @@ $ npm install -g @offline-ai/cli
40
40
$ ai COMMAND
41
41
running command...
42
42
$ ai (--version)
43
- @offline-ai/cli/0.0.4 linux-x64 node-v20.14.0
43
+ @offline-ai/cli/0.0.5 linux-x64 node-v20.14.0
44
44
$ ai --help [COMMAND]
45
45
USAGE
46
46
$ ai COMMAND
@@ -166,28 +166,31 @@ Specific script instruction manual see: [ai-tool-agent](https://www.npmjs.com/pa
166
166
## Commands
167
167
168
168
<!-- commands -->
169
- * [ ` ai agent ` ] ( #ai-agent )
170
- * [ ` ai autocomplete [SHELL] ` ] ( #ai-autocomplete-shell )
171
- * [ ` ai brain [NAME] ` ] ( #ai-brain-name )
172
- * [ ` ai brain dn [NAME] ` ] ( #ai-brain-dn-name )
173
- * [ ` ai brain down [NAME] ` ] ( #ai-brain-down-name )
174
- * [ ` ai brain download [NAME] ` ] ( #ai-brain-download-name )
175
- * [ ` ai brain list [NAME] ` ] ( #ai-brain-list-name )
176
- * [ ` ai config [ITEM_NAME] ` ] ( #ai-config-item_name )
177
- * [ ` ai config save [DATA] ` ] ( #ai-config-save-data )
178
- * [ ` ai help [COMMAND] ` ] ( #ai-help-command )
179
- * [ ` ai plugins ` ] ( #ai-plugins )
180
- * [ ` ai plugins add PLUGIN ` ] ( #ai-plugins-add-plugin )
181
- * [ ` ai plugins:inspect PLUGIN... ` ] ( #ai-pluginsinspect-plugin )
182
- * [ ` ai plugins install PLUGIN ` ] ( #ai-plugins-install-plugin )
183
- * [ ` ai plugins link PATH ` ] ( #ai-plugins-link-path )
184
- * [ ` ai plugins remove [PLUGIN] ` ] ( #ai-plugins-remove-plugin )
185
- * [ ` ai plugins reset ` ] ( #ai-plugins-reset )
186
- * [ ` ai plugins uninstall [PLUGIN] ` ] ( #ai-plugins-uninstall-plugin )
187
- * [ ` ai plugins unlink [PLUGIN] ` ] ( #ai-plugins-unlink-plugin )
188
- * [ ` ai plugins update ` ] ( #ai-plugins-update )
189
- * [ ` ai run [DATA] ` ] ( #ai-run-data )
190
- * [ ` ai version ` ] ( #ai-version )
169
+ - [ ai-agent] ( #ai-agent )
170
+ - [ Usage] ( #usage )
171
+ - [ Commands] ( #commands )
172
+ - [ ` ai agent ` ] ( #ai-agent-1 )
173
+ - [ ` ai autocomplete [SHELL] ` ] ( #ai-autocomplete-shell )
174
+ - [ ` ai brain [NAME] ` ] ( #ai-brain-name )
175
+ - [ ` ai brain dn [NAME] ` ] ( #ai-brain-dn-name )
176
+ - [ ` ai brain down [NAME] ` ] ( #ai-brain-down-name )
177
+ - [ ` ai brain download [NAME] ` ] ( #ai-brain-download-name )
178
+ - [ ` ai brain list [NAME] ` ] ( #ai-brain-list-name )
179
+ - [ ` ai config [ITEM_NAME] ` ] ( #ai-config-item_name )
180
+ - [ ` ai config save [DATA] ` ] ( #ai-config-save-data )
181
+ - [ ` ai help [COMMAND] ` ] ( #ai-help-command )
182
+ - [ ` ai plugins ` ] ( #ai-plugins )
183
+ - [ ` ai plugins add PLUGIN ` ] ( #ai-plugins-add-plugin )
184
+ - [ ` ai plugins:inspect PLUGIN... ` ] ( #ai-pluginsinspect-plugin )
185
+ - [ ` ai plugins install PLUGIN ` ] ( #ai-plugins-install-plugin )
186
+ - [ ` ai plugins link PATH ` ] ( #ai-plugins-link-path )
187
+ - [ ` ai plugins remove [PLUGIN] ` ] ( #ai-plugins-remove-plugin )
188
+ - [ ` ai plugins reset ` ] ( #ai-plugins-reset )
189
+ - [ ` ai plugins uninstall [PLUGIN] ` ] ( #ai-plugins-uninstall-plugin )
190
+ - [ ` ai plugins unlink [PLUGIN] ` ] ( #ai-plugins-unlink-plugin )
191
+ - [ ` ai plugins update ` ] ( #ai-plugins-update )
192
+ - [ ` ai run [DATA] ` ] ( #ai-run-data )
193
+ - [ ` ai version ` ] ( #ai-version )
191
194
192
195
## ` ai agent `
193
196
@@ -206,7 +209,7 @@ EXAMPLES
206
209
$ ai agent publish <agent-name>
207
210
```
208
211
209
- _ See code: [ src/commands/agent/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/agent/index.ts ) _
212
+ _ See code: [ src/commands/agent/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/agent/index.ts ) _
210
213
211
214
## ` ai autocomplete [SHELL] `
212
215
@@ -278,7 +281,7 @@ EXAMPLES
278
281
$ ai brain download <brain-name>
279
282
```
280
283
281
- _ See code: [ src/commands/brain/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/brain/index.ts ) _
284
+ _ See code: [ src/commands/brain/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/brain/index.ts ) _
282
285
283
286
## ` ai brain dn [NAME] `
284
287
@@ -406,7 +409,7 @@ EXAMPLES
406
409
$ ai brain download <brain-name> [-q <QUANT>]
407
410
```
408
411
409
- _ See code: [ src/commands/brain/download.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/brain/download.ts ) _
412
+ _ See code: [ src/commands/brain/download.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/brain/download.ts ) _
410
413
411
414
## ` ai brain list [NAME] `
412
415
@@ -434,7 +437,7 @@ GLOBAL FLAGS
434
437
--json Format output as json.
435
438
```
436
439
437
- _ See code: [ src/commands/brain/list.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/brain/list.ts ) _
440
+ _ See code: [ src/commands/brain/list.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/brain/list.ts ) _
438
441
439
442
## ` ai config [ITEM_NAME] `
440
443
@@ -471,7 +474,7 @@ EXAMPLES
471
474
}
472
475
```
473
476
474
- _ See code: [ src/commands/config/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/config/index.ts ) _
477
+ _ See code: [ src/commands/config/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/config/index.ts ) _
475
478
476
479
## ` ai config save [DATA] `
477
480
@@ -511,7 +514,7 @@ GLOBAL FLAGS
511
514
--json Format output as json.
512
515
```
513
516
514
- _ See code: [ src/commands/config/save.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/config/save.ts ) _
517
+ _ See code: [ src/commands/config/save.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/config/save.ts ) _
515
518
516
519
## ` ai help [COMMAND] `
517
520
@@ -870,7 +873,7 @@ EXAMPLES
870
873
│[info]:Start Script: ...
871
874
```
872
875
873
- _ See code: [ src/commands/run/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.4 /src/commands/run/index.ts ) _
876
+ _ See code: [ src/commands/run/index.ts] ( https://github.com/offline-ai/cli/blob/v0.0.5 /src/commands/run/index.ts ) _
874
877
875
878
## ` ai version `
876
879
0 commit comments