gitextract_j4dfeo4j/ ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── backend/ │ ├── .gitignore │ ├── CT-Transformer-punctuation/ │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cttPunctuator.py │ │ ├── cttpunctuator/ │ │ │ ├── __init__.py │ │ │ └── src/ │ │ │ ├── onnx/ │ │ │ │ └── configuration.json │ │ │ ├── punctuator.py │ │ │ └── utils/ │ │ │ ├── OrtInferSession.py │ │ │ └── text_post_process.py │ │ ├── setup.py │ │ ├── test/ │ │ │ ├── test.py │ │ │ └── test2.py │ │ └── version.txt │ ├── build_onefile.bat │ ├── main.py │ ├── punc-onnx/ │ │ ├── configuration.json │ │ └── punc.onnx │ ├── readme.md │ ├── requirements.txt │ ├── requirements_test.txt │ ├── sherpa-onnx/ │ │ ├── model.int8.onnx │ │ └── tokens.txt │ └── test_api.py ├── frontend/ │ ├── .gitignore │ ├── components.json │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── readme.md │ ├── src/ │ │ ├── VoiceRecognitionIcon.tsx │ │ ├── components/ │ │ │ └── ui/ │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── tabs.tsx │ │ │ └── tooltip.tsx │ │ ├── favicon/ │ │ │ └── site.webmanifest │ │ ├── globals.css │ │ ├── i18n.ts │ │ ├── index.html │ │ ├── lib/ │ │ │ └── utils.ts │ │ ├── log.html │ │ ├── main.ts │ │ ├── preload.ts │ │ ├── renderer.tsx │ │ └── styles.css │ ├── tailwind.config.js │ ├── tsconfig.json │ └── webpack.config.js ├── readme.md └── readme_zh.md