@mutagent/cli 0.1.28 → 0.1.30
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/README.md +2 -2
- package/dist/bin/cli.js +1404 -1181
- package/dist/bin/cli.js.map +19 -12
- package/dist/index.js +32 -57
- package/dist/index.js.map +3 -3
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -125,7 +125,7 @@ flowchart TD
|
|
|
125
125
|
subgraph DATASET_CMDS ["Dataset Management"]
|
|
126
126
|
DS_LIST["mutagent prompts dataset list <pid>"]
|
|
127
127
|
DS_ADD["mutagent prompts dataset add <pid>"]
|
|
128
|
-
|
|
128
|
+
DS_DELETE["mutagent prompts dataset delete <pid> <did>"]
|
|
129
129
|
end
|
|
130
130
|
|
|
131
131
|
subgraph EVAL_CMDS ["Evaluations"]
|
|
@@ -389,7 +389,7 @@ mutagent prompts dataset add <prompt-id> --file data.json --name "My Dataset"
|
|
|
389
389
|
# Add inline JSON
|
|
390
390
|
mutagent prompts dataset add <prompt-id> -d '[{"input":{...},"expectedOutput":{...}}]' --name "Inline Data"
|
|
391
391
|
|
|
392
|
-
mutagent prompts dataset
|
|
392
|
+
mutagent prompts dataset delete <prompt-id> <dataset-id>
|
|
393
393
|
```
|
|
394
394
|
|
|
395
395
|
### Evaluations
|