alys-akusa 0.1.22 → 0.1.23
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 +9 -2
- package/dist/index.cjs +2189 -143
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,8 @@ Or run without installing:
|
|
|
12
12
|
```bash
|
|
13
13
|
npx alys-akusa prepare ./company-docs
|
|
14
14
|
npx alys-akusa audit ./knowledge-base
|
|
15
|
+
npx alys-akusa media-debug ./call-recordings
|
|
16
|
+
npx alys-akusa media-transcribe-plan ./call-recordings --gcs-input gs://bucket/in --gcs-output gs://bucket/out
|
|
15
17
|
npx alys-akusa simulate-rag ./knowledge-base
|
|
16
18
|
npx alys-akusa improve ./knowledge-base
|
|
17
19
|
npx alys-akusa benchmark ./knowledge-base
|
|
@@ -20,8 +22,11 @@ npx alys-akusa finetune-ready ./support-tickets
|
|
|
20
22
|
```
|
|
21
23
|
|
|
22
24
|
Alys turns messy local knowledge into OpenAI fine-tuning JSONL, Anthropic instruction
|
|
23
|
-
records, RAG chunks, QA datasets, eval datasets, embeddings-ready corpora,
|
|
24
|
-
|
|
25
|
+
records, RAG chunks, QA datasets, eval datasets, embeddings-ready corpora, media
|
|
26
|
+
manifests, SHA-256 fingerprints, timestamped and redacted segment rows, dataset
|
|
27
|
+
cards, redaction reviews, and debug reports for transcript-backed audio/video assets,
|
|
28
|
+
Google Speech-to-Text V2 transcription plans, GCS upload manifests, BatchRecognize
|
|
29
|
+
request JSON, VTT/SRT import maps, source lists, and AI readiness reports.
|
|
25
30
|
|
|
26
31
|
## What It Does
|
|
27
32
|
|
|
@@ -56,6 +61,8 @@ Do not publish to npm for normal testing. Use the repo CLI directly first:
|
|
|
56
61
|
```bash
|
|
57
62
|
pnpm install
|
|
58
63
|
pnpm alys -- audit ./knowledge-base --yes
|
|
64
|
+
pnpm alys -- media-debug ./call-recordings --yes
|
|
65
|
+
pnpm alys -- media-transcribe-plan ./call-recordings --google-project my-gcp-project --gcs-input gs://bucket/alys-media-input --gcs-output gs://bucket/alys-media-output --yes
|
|
59
66
|
pnpm alys -- simulate-rag ./knowledge-base --queries 12 --top-k 5 --yes
|
|
60
67
|
pnpm alys -- improve ./knowledge-base --yes
|
|
61
68
|
pnpm alys -- benchmark ./knowledge-base --queries 16 --top-k 5 --yes
|