Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ jobs:

- name: Check shell scripts
run: |
shellcheck install.sh integrations/sway/local-wisper.sh scripts/baml
bash -n install.sh integrations/sway/local-wisper.sh scripts/baml
shellcheck install.sh integrations/sway/local-wisper.sh scripts/baml scripts/run-cleanup-eval-codex
bash -n install.sh integrations/sway/local-wisper.sh scripts/baml scripts/run-cleanup-eval-codex
4 changes: 2 additions & 2 deletions baml_src/app.baml
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,13 @@ test "history receives the raw and final transcript" {
assert.equal(saved, ["raw words|Final words.|Model|gpt-5.6-luna"])
}

test "local processing records the raw and final transcript" {
test "local processing preserves the transcript" {
let transcript = prepare_transcript("version zero point one.", parse_options([]));
assert.equal(
transcript,
TranscriptRecord {
raw_text: "version zero point one.",
final_text: "version 0.1",
final_text: "version zero point one.",
processing: TranscriptProcessing.Local,
post_process_model: null,
},
Expand Down
Loading