Add comprehensive voice input processing flow documentation

Co-authored-by: mssoftjp <115339791+mssoftjp@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-08-14 06:55:04 +00:00
parent d6d7615c16
commit dd2f65fcd8
2 changed files with 321 additions and 0 deletions

View file

@ -76,6 +76,10 @@ See also OpenAIs Privacy Policy.
- Deploy locally: `npm run deploy-local` (copies to detected vaults)
- Analyze unused code (build-time): `npm run analyze:unused`
### Documentation
- Processing flow visualization: see [`docs/PROCESSING_FLOW.md`](docs/PROCESSING_FLOW.md)
Thirdparty licensing: see `THIRD_PARTY_LICENSES.md`.
@ -175,6 +179,10 @@ OpenAIのプライバシーポリシーもご参照ください。
- ビルド: `npm run build-plugin`
- ローカル配布: `npm run deploy-local`
### ドキュメント
- 処理フローの可視化: [`docs/PROCESSING_FLOW.md`](docs/PROCESSING_FLOW.md) を参照
サードパーティライセンスは `THIRD_PARTY_LICENSES.md` を参照してください。
## ライセンス

313
docs/PROCESSING_FLOW.md Normal file
View file

@ -0,0 +1,313 @@
# Voice Input Processing Flow / 音声入力処理フロー
This document visualizes the complete processing pipeline of the voice input system, showing how audio input flows through prompt addition, API calls, response cleaning, and dictionary processing.
このドキュメントは音声入力システムの完全な処理パイプラインを可視化し、音声入力がプロンプト追加、API呼び出し、レスポンスクリーニング、辞書処理を経てどのように流れるかを示しています。
## Complete Processing Flow / 完全な処理フロー
```
┌─────────────────┐
│ Audio Input │ 🎤
│ 音声入力 │
└─────┬───────────┘
┌─────────────────┐
│ Audio Blob │
│ Creation │
│ 音声Blob作成 │
└─────┬───────────┘
┌─────────────────────────────────────────────────────────────┐
│ TranscriptionService.transcribe() │
│ 文字起こしサービス │
└─────┬───────────────────────────────────────────────────────┘
┌─────────────────┐ ┌──────────────────────────────────────┐
│ Language Check │────│ buildTranscriptionPrompt(language) │
│ 言語チェック │ │ プロンプト構築 │
└─────┬───────────┘ └──────────────────┬───────────────────┘
│ │
│ ┌─────────────────────────────────│──────────────────┐
│ │ │ │
│ │ IF language === 'ja' │ │
│ │ 日本語の場合: │ │
│ │ ▼ │
│ │ ┌───────────────────────────────────────────┐ │
│ │ │ 以下の音声内容のみを文字に起こしてください │ │
│ │ │ この指示文は出力に含めないでください │ │
│ │ │ 話者の発言内容だけを正確に記録してください │ │
│ │ │ │ │
│ │ │ 出力形式: │ │
│ │ │ <TRANSCRIPT> │ │
│ │ │ (話者の発言のみ) │ │
│ │ │ </TRANSCRIPT> │ │
│ │ └───────────────────────────────────────────┘ │
│ │ │ │
│ │ ELSE (en/zh/ko/auto) │ │
│ │ その他の言語: │ │
│ │ ▼ │
│ │ ┌───────────────────────────────────────────┐ │
│ │ │ No Prompt Added │ │
│ │ │ プロンプト追加なし │ │
│ │ └───────────────────────────────────────────┘ │
│ └─────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│ OpenAI API Request │
│ OpenAI API リクエスト │
│ │
│ FormData: │
│ ├─ file: audio.webm (Blob) │
│ ├─ model: gpt-4o-transcribe / gpt-4o-mini-transcribe │
│ ├─ response_format: json │
│ ├─ temperature: 0 │
│ ├─ language: ja/en/zh/ko (if not 'auto') │
│ └─ prompt: [Only for Japanese / 日本語のみ] │
│ │
│ Headers: │
│ └─ Authorization: Bearer ${apiKey} │
└─────┬───────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│ OpenAI API Response │
│ OpenAI API レスポンス │
│ │
│ { text: "transcribed text...", language: "detected" } │
└─────┬───────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│ cleanGPT4oResponse(text, language) │
│ GPT-4oレスポンスクリーニング │
└─────┬───────────────────────────────────────────────────────┘
┌─────────────────┐
│ Extract from │
<TRANSCRIPT>
│ tags │
│ TRANSCRIPTタグ │
│ からの抽出 │
└─────┬───────────┘
┌─────────────────────────────────────────────────────────────┐
│ applyLanguageSpecificCleaning() │
│ 言語固有のクリーニング適用 │
└─────┬───────────────────────────────────────────────────────┘
│ ┌─────────────────────────────────────────────────────┐
│ │ │
│ │ IF language === 'ja' │
│ │ 日本語の場合: │
│ │ │ │
│ │ ▼ │
│ │ ┌───────────────────────────────────────────────┐ │
│ │ │ Remove Japanese prompt patterns: │ │
│ │ │ 日本語プロンプトパターンを除去: │ │
│ │ │ • "以下の音声内容..." │ │
│ │ │ • "この指示文..." │ │
│ │ │ • "話者の発言内容だけを..." │ │
│ │ │ • "話者の発言..." │ │
│ │ │ • "出力形式..." │ │
│ │ │ • "(話者の発言のみ)" │ │
│ │ └───────────────────────────────────────────────┘ │
│ │ │
│ │ ELSE (en/zh/ko) │
│ │ その他の言語: │
│ │ │ │
│ │ ▼ │
│ │ ┌───────────────────────────────────────────────┐ │
│ │ │ Conservative cleaning only │ │
│ │ │ 保守的なクリーニングのみ │ │
│ │ │ (relies on generic cleaning) │ │
│ │ │ (汎用クリーニングに依存) │ │
│ │ └───────────────────────────────────────────────┘ │
│ └─────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│ applyGenericCleaning() │
│ 汎用クリーニング適用 │
│ │
│ Conservative patterns only: │
│ 保守的なパターンのみ: │
│ • "Output format:..." │
│ • "Format:..." │
└─────┬───────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│ isPromptErrorDetected(text, language) │
│ プロンプトエラー検出 │
└─────┬───────────────────────────────────────────────────────┘
│ ┌─────────────────────────────────────────────────────┐
│ │ │
│ │ Check for prompt leakage patterns: │
│ │ プロンプト漏洩パターンをチェック: │
│ │ │
│ │ Japanese (ja): │
│ │ • "この指示文は出力に含めないでください" │
│ │ • "話者の発言内容だけを正確に記録してください" │
│ │ • "(話者の発言のみ)" │
│ │ │
│ │ English (en): │
│ │ • "Please transcribe only the speaker" │
│ │ • "Do not include this instruction" │
│ │ • "(Speaker content only)" │
│ │ │
│ │ Chinese (zh): │
│ │ • "请仅转录说话者" │
│ │ • "不要包含此指令" │
│ │ • "(仅说话者内容)" │
│ │ │
│ │ Korean (ko): │
│ │ • "화자의 발언만 전사해주세요" │
│ │ • "이 지시사항을 포함하지 마세요" │
│ │ • "(화자 발언만)" │
│ └─────────────────────────────────────────────────────┘
┌─────────────────┐ ┌──────────────────────────────────────┐
│ If prompt error │ NO │ Continue to dictionary processing │
│ detected? │───▶│ 辞書処理へ続行 │
│ プロンプトエラー│ └──────────────────┬───────────────────┘
│ 検出? │ │
└─────┬───────────┘ │
│ YES │
▼ │
┌─────────────────┐ │
│ Return empty │ │
│ string │ │
│ 空文字を返す │ │
└─────────────────┘ │
┌─────────────────────────────────────┐
│ enableTranscriptionCorrection? │
│ 文字起こし修正が有効? │
└─────┬───────────────────────────────┘
┌─────────┴─────────┐
│ YES │ NO
▼ ▼
┌───────────────────────────────┐ ┌─────────────────┐
│ DictionaryCorrector.correct() │ │ Skip correction │
│ 辞書修正適用 │ │ 修正をスキップ │
└─────┬─────────────────────────┘ └─────┬───────────┘
│ │
▼ │
┌───────────────────────────────────────┐ │
│ Apply multilingual corrections: │ │
│ 多言語修正を適用: │ │
│ │ │
│ 1. Default rules (empty by default) │ │
│ デフォルトルール(既定では空) │ │
│ │ │
│ 2. Custom rules │ │
│ カスタムルール │ │
│ │ │
│ 3. Dictionary corrections │ │
│ 辞書修正: │ │
│ • Fixed string replacements │ │
│ • Applied to ALL languages │ │
│ • 固定文字列置換 │ │
│ • 全言語に適用 │ │
│ │ │
│ Examples: │ │
│ • "AI" → "artificial intelligence" │ │
│ • "こんにちは" → "こんにちは(修正)" │ │
│ • "你好" → "您好" │ │
│ • "안녕" → "안녕하세요" │ │
└─────┬─────────────────────────────────┘ │
│ │
└───────────────┬───────────────────┘
┌─────────────────────────────────────┐
│ Final Output │
│ 最終出力 │
│ │
│ TranscriptionResult { │
│ text: correctedText, │
│ originalText: originalText, │
│ duration: processingTime, │
│ model: "gpt-4o(-mini)-transcribe", │
│ language: detectedLanguage │
│ } │
└─────────────────────────────────────┘
```
## Key Differences by Language / 言語による主な違い
### Japanese (ja) Processing / 日本語処理
1. **Prompt Addition**: Complex Japanese prompt with specific instructions
- プロンプト追加: 特定の指示を含む複雑な日本語プロンプト
2. **Intensive Cleaning**: Multiple Japanese-specific patterns removed
- 集約的クリーニング: 複数の日本語特有パターンの除去
3. **Error Detection**: Japanese prompt leakage patterns
- エラー検出: 日本語プロンプト漏洩パターン
### Other Languages (en/zh/ko) Processing / その他の言語処理
1. **No Prompt**: Direct transcription without additional prompts
- プロンプトなし: 追加プロンプトなしの直接文字起こし
2. **Conservative Cleaning**: Only generic colon-based patterns
- 保守的クリーニング: コロンベースの汎用パターンのみ
3. **Language-specific Error Detection**: Each language has its own patterns
- 言語固有のエラー検出: 各言語が独自のパターンを持つ
### Auto Language Processing / 自動言語処理
- Uses Japanese patterns as fallback for error detection
- エラー検出時は日本語パターンをフォールバックとして使用
- No prompt addition (treated as non-Japanese)
- プロンプト追加なし(非日本語として扱う)
## Dictionary Processing / 辞書処理
Dictionary correction is **language-agnostic** and applies to all languages when enabled:
辞書修正は**言語非依存**で、有効時は全言語に適用されます:
```
Dictionary Entry: { from: ["AI"], to: "artificial intelligence" }
辞書エントリ: { from: ["AI"], to: "artificial intelligence" }
Applied to:
適用対象:
✓ English: "AI system" → "artificial intelligence system"
✓ Japanese: "AIシステム" → "artificial intelligenceシステム"
✓ Chinese: "AI系统" → "artificial intelligence系统"
✓ Korean: "AI시스템" → "artificial intelligence시스템"
```
## Processing Performance / 処理性能
The system logs detailed performance metrics:
システムは詳細なパフォーマンス指標をログに記録します:
- Audio blob size and type / 音声Blobサイズとタイプ
- Processing duration / 処理時間
- Original vs corrected text length / 元のテキストと修正後のテキスト長
- Model used and cost estimation / 使用モデルとコスト推定
## Error Handling / エラーハンドリング
The system handles various error scenarios:
システムは様々なエラーシナリオを処理します:
1. **API Errors**: Invalid key, quota exceeded, network errors
- API エラー: 無効なキー、クォータ超過、ネットワークエラー
2. **Prompt Leakage**: Detection and mitigation of prompt content in output
- プロンプト漏洩: 出力内のプロンプト内容の検出と軽減
3. **Empty Audio**: Graceful handling of silent or empty audio input
- 空音声: 無音または空の音声入力の適切な処理
This visualization shows the complete flow from audio input to final transcribed and corrected text, highlighting the sophisticated language-specific processing that makes this plugin particularly effective for Japanese users while maintaining compatibility with other languages.
この可視化は、音声入力から最終的な文字起こし・修正テキストまでの完全なフローを示し、このプラグインが日本語ユーザーに特に効果的でありながら他言語との互換性を維持する洗練された言語固有処理を強調しています。