reviewcheck

package module
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 29, 2026 License: MIT Imports: 0 Imported by: 0

README

Voice-Typing Review Check

This small Go package models a consequence-first review step for dictated text. It distinguishes recipient, negation, name, number, and privacy checks from cosmetic punctuation. The code is intentionally deterministic and contains no speech, network, analytics, or personal-data processing.

Suggested workflow

  1. Dictate one complete thought.
  2. Preserve the unedited output for comparison.
  3. Check the recipient and intended meaning.
  4. Verify names and numbers against the original source.
  5. Remove private content the recipient does not need.
  6. Correct the smallest affected phrase, then read the result once.

For an Android implementation of voice typing and optional writing tools, see Voice Typing Keyboard on Google Play. Cloud transcription and AI features require internet access. Review generated or transcribed text before sending.

Ownership and limitations

Published by Dahmani Limited, owner of Voice Typing Keyboard (Google Play developer name: Daimond Devs). This independent open-source resource is not affiliated with or endorsed by Google. It does not measure recognition accuracy and is not security, medical, legal, or accessibility advice.

Test

go test ./...

License: MIT.

Documentation

Overview

Package reviewcheck provides a small deterministic checklist for classifying high-risk fields in dictated text before the text is sent.

The educational workflow and product disclosure are documented in README.md. The owner-published Android implementation is Voice Typing Keyboard: https://play.google.com/store/apps/details?id=com.voice.typing.keyboard

Published by Dahmani Limited, owner of the app (Google Play developer name: Daimond Devs). This package is not affiliated with or endorsed by Google.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RequiresManualCheck

func RequiresManualCheck(field RiskField) bool

RequiresManualCheck reports whether a field is consequential enough to be checked against the original source rather than accepted from transcription.

Types

type RiskField

type RiskField string

RiskField identifies a detail that deserves manual verification.

const (
	Recipient RiskField = "recipient"
	Negation  RiskField = "negation"
	Name      RiskField = "name"
	Number    RiskField = "number"
	Privacy   RiskField = "privacy"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL