pandrator 0.6.1__tar.gz
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.
- pandrator-0.6.1/.github/workflows/manager-ci.yml +143 -0
- pandrator-0.6.1/.github/workflows/publish-pypi.yml +134 -0
- pandrator-0.6.1/.github/workflows/runtime-ci.yml +48 -0
- pandrator-0.6.1/.github/workflows/web-preview.yml +83 -0
- pandrator-0.6.1/.gitignore +106 -0
- pandrator-0.6.1/LICENSE +21 -0
- pandrator-0.6.1/PKG-INFO +356 -0
- pandrator-0.6.1/README.md +305 -0
- pandrator-0.6.1/containers/appimage/Dockerfile +60 -0
- pandrator-0.6.1/containers/appimage/build.sh +55 -0
- pandrator-0.6.1/logs/.gitkeep +0 -0
- pandrator-0.6.1/openapi.json +6578 -0
- pandrator-0.6.1/pandrator/__init__.py +0 -0
- pandrator-0.6.1/pandrator/__main__.py +6 -0
- pandrator-0.6.1/pandrator/config.json +1 -0
- pandrator-0.6.1/pandrator/constants.py +163 -0
- pandrator-0.6.1/pandrator/logic/__init__.py +0 -0
- pandrator-0.6.1/pandrator/logic/audio_processor.py +256 -0
- pandrator-0.6.1/pandrator/logic/audio_variant_handler.py +404 -0
- pandrator-0.6.1/pandrator/logic/dubbing/__init__.py +29 -0
- pandrator-0.6.1/pandrator/logic/dubbing/artifacts.py +143 -0
- pandrator-0.6.1/pandrator/logic/dubbing/audio_sync.py +1226 -0
- pandrator-0.6.1/pandrator/logic/dubbing/bilingual_ass.py +46 -0
- pandrator-0.6.1/pandrator/logic/dubbing/boundary_correction.py +470 -0
- pandrator-0.6.1/pandrator/logic/dubbing/credentials.py +113 -0
- pandrator-0.6.1/pandrator/logic/dubbing/crispasr.py +820 -0
- pandrator-0.6.1/pandrator/logic/dubbing/equalization.py +133 -0
- pandrator-0.6.1/pandrator/logic/dubbing/languages.py +92 -0
- pandrator-0.6.1/pandrator/logic/dubbing/llm_config.py +63 -0
- pandrator-0.6.1/pandrator/logic/dubbing/llm_correction.py +650 -0
- pandrator-0.6.1/pandrator/logic/dubbing/llm_translation.py +926 -0
- pandrator-0.6.1/pandrator/logic/dubbing/manual_timing.py +452 -0
- pandrator-0.6.1/pandrator/logic/dubbing/models.py +69 -0
- pandrator-0.6.1/pandrator/logic/dubbing/settings.py +277 -0
- pandrator-0.6.1/pandrator/logic/dubbing/speech_blocks.py +388 -0
- pandrator-0.6.1/pandrator/logic/dubbing/srt_utils.py +330 -0
- pandrator-0.6.1/pandrator/logic/dubbing/stt_backends.py +140 -0
- pandrator-0.6.1/pandrator/logic/dubbing/subtitle_comparison.py +146 -0
- pandrator-0.6.1/pandrator/logic/dubbing/subtitle_finalization.py +672 -0
- pandrator-0.6.1/pandrator/logic/dubbing/transcript_normalization.py +494 -0
- pandrator-0.6.1/pandrator/logic/dubbing/transcription.py +130 -0
- pandrator-0.6.1/pandrator/logic/dubbing/video_muxing.py +263 -0
- pandrator-0.6.1/pandrator/logic/dubbing/workflow.py +178 -0
- pandrator-0.6.1/pandrator/logic/dubbing/zoom.py +197 -0
- pandrator-0.6.1/pandrator/logic/dubbing_handler.py +784 -0
- pandrator-0.6.1/pandrator/logic/file_handler.py +193 -0
- pandrator-0.6.1/pandrator/logic/llm_handler.py +1912 -0
- pandrator-0.6.1/pandrator/logic/nemo_normalizer.py +199 -0
- pandrator-0.6.1/pandrator/logic/retry_utils.py +145 -0
- pandrator-0.6.1/pandrator/logic/rvc_handler.py +111 -0
- pandrator-0.6.1/pandrator/logic/sentence_segmenter.py +145 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/__init__.py +47 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/agent.py +1007 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/__init__.py +649 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/boilerplate.py +194 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/chapters.py +405 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/footnotes.py +683 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/illustrations.py +129 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/parser.py +449 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/deterministic/toc.py +136 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/epub_adapter.py +566 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/indexer.py +61 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/models.py +200 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/operations.py +369 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/pdf_adapter.py +1232 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/pdf_text_adapter.py +131 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/pipeline.py +358 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/prompts.py +690 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/selectors.py +155 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/tools.py +1015 -0
- pandrator-0.6.1/pandrator/logic/source_cleaning/validators.py +318 -0
- pandrator-0.6.1/pandrator/logic/source_media.py +53 -0
- pandrator-0.6.1/pandrator/logic/state_db_handler.py +2930 -0
- pandrator-0.6.1/pandrator/logic/text_preprocessor.py +884 -0
- pandrator-0.6.1/pandrator/logic/tts_endpoint_discovery.py +557 -0
- pandrator-0.6.1/pandrator/logic/tts_handler.py +4782 -0
- pandrator-0.6.1/pandrator/logic/tts_provider_profiles.py +330 -0
- pandrator-0.6.1/pandrator/logic/xtts_trainer_handler.py +484 -0
- pandrator-0.6.1/pandrator/runtime/__init__.py +6 -0
- pandrator-0.6.1/pandrator/runtime/paths.py +152 -0
- pandrator-0.6.1/pandrator/web/__init__.py +2 -0
- pandrator-0.6.1/pandrator/web/api.py +91 -0
- pandrator-0.6.1/pandrator/web/api_routes.py +3461 -0
- pandrator-0.6.1/pandrator/web/application_services.py +255 -0
- pandrator-0.6.1/pandrator/web/artifact_selection.py +523 -0
- pandrator-0.6.1/pandrator/web/artifacts.py +342 -0
- pandrator-0.6.1/pandrator/web/audio_assembly.py +657 -0
- pandrator-0.6.1/pandrator/web/audio_verification.py +250 -0
- pandrator-0.6.1/pandrator/web/audit.py +186 -0
- pandrator-0.6.1/pandrator/web/auth.py +494 -0
- pandrator-0.6.1/pandrator/web/automation_enrollment.py +453 -0
- pandrator-0.6.1/pandrator/web/automation_routes.py +442 -0
- pandrator-0.6.1/pandrator/web/bundles.py +254 -0
- pandrator-0.6.1/pandrator/web/capabilities.py +654 -0
- pandrator-0.6.1/pandrator/web/cli.py +1185 -0
- pandrator-0.6.1/pandrator/web/credentials.py +1045 -0
- pandrator-0.6.1/pandrator/web/database.py +97 -0
- pandrator-0.6.1/pandrator/web/domain_blueprints.py +146 -0
- pandrator-0.6.1/pandrator/web/http_lifecycle.py +491 -0
- pandrator-0.6.1/pandrator/web/idempotency.py +187 -0
- pandrator-0.6.1/pandrator/web/identity.py +139 -0
- pandrator-0.6.1/pandrator/web/job_handler_domains.py +221 -0
- pandrator-0.6.1/pandrator/web/job_registry.py +125 -0
- pandrator-0.6.1/pandrator/web/jobs.py +1080 -0
- pandrator-0.6.1/pandrator/web/legacy_migration.py +425 -0
- pandrator-0.6.1/pandrator/web/maintenance.py +36 -0
- pandrator-0.6.1/pandrator/web/managed_services.py +69 -0
- pandrator-0.6.1/pandrator/web/manager_proxy.py +540 -0
- pandrator-0.6.1/pandrator/web/media_process.py +176 -0
- pandrator-0.6.1/pandrator/web/migrations/env.py +45 -0
- pandrator-0.6.1/pandrator/web/migrations/script.py.mako +22 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0001_web_schema.py +19 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0002_training_runs.py +46 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0003_parity_workspace.py +59 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0004_output_assembly_jobs.py +65 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0005_generation_segment_kinds.py +28 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0006_session_languages.py +30 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0007_generation_optimization.py +50 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0008_generation_paragraph_boundaries.py +44 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0009_stored_credentials.py +218 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0010_named_generation_runs.py +72 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0011_active_provider_models.py +128 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0012_inactive_provider_models.py +30 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0013_stage_artifact_selections.py +39 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0014_usage_event_links.py +42 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0015_generation_segment_voice.py +71 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0016_agentic_research_and_speech_plans.py +150 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0017_job_progress_detail.py +26 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0018_generation_segment_speaker.py +28 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0019_job_lease_fencing.py +72 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0020_capability_snapshots.py +51 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0021_query_path_indexes.py +111 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0022_source_asset_backfill.py +140 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0023_scoped_api_principals.py +164 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0024_api_idempotency.py +29 -0
- pandrator-0.6.1/pandrator/web/migrations/versions/0025_workflow_execution_plans.py +37 -0
- pandrator-0.6.1/pandrator/web/models.py +957 -0
- pandrator-0.6.1/pandrator/web/openapi.py +581 -0
- pandrator-0.6.1/pandrator/web/parity_registry.py +60 -0
- pandrator-0.6.1/pandrator/web/pdf_editor.py +246 -0
- pandrator-0.6.1/pandrator/web/process_guard.py +135 -0
- pandrator-0.6.1/pandrator/web/pronunciations.py +352 -0
- pandrator-0.6.1/pandrator/web/provider_settings.py +250 -0
- pandrator-0.6.1/pandrator/web/route_context.py +16 -0
- pandrator-0.6.1/pandrator/web/schemas.py +517 -0
- pandrator-0.6.1/pandrator/web/sessions.py +213 -0
- pandrator-0.6.1/pandrator/web/speech_planning.py +883 -0
- pandrator-0.6.1/pandrator/web/startup.py +91 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/0.BywP3ozt.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/11.CWEMgTHq.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/13.DixVIaDr.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/14.BaVI71AV.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/15.DzxRWguv.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/17.ClmDfx3Y.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/2.DiDWNY1s.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/3.D-wxB2yP.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/5.C8crrSko.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/6.CWh5xlHg.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/8.DGvoW3Jr.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/9.CGQIUaHI.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/AddSourceDialog.C6fHQDl_.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/AdvancedTools.CIM3tCSV.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/ArtifactPreview.CTV5nvob.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/GuidedTour.CrDD_Mvq.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/JobActivityList.DFfSGm9Q.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/NewSessionWizard.8wNclvCW.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/OutputSettingsPanel.DVaUyfwR.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/PdfEditor.DDt7giaX.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/SearchReplaceBar.DL4SbJiT.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/ServiceManager.BUmipWQC.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/SettingField.DvI9Q8zj.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/SettingsPanel.uadWf5tY.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/SubtitleReview.CLr93ZqO.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/TextDiff.peogrQSy.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/VoiceManager.BFKYe2KQ.css +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/assets/pdf.worker.min.iDqQPrd3.mjs +31 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/0qFO-dVY.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/1oJCswpR.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/1v-Eup5H.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/AeRDWc7T.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/B56YH3rW.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/B6kiKc_G.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/B9X_D7vg.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BCtCK7Z3.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BFCPbBVq.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BGftnVPa.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BHvmwlS_.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BK-cQ-wS.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BVN4A6XG.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BaaD0xxF.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BfNd5Ioo.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Bk_jFOGf.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/BnXiZzQb.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Bs7TVyle.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Bs_XQF6A.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/C5BCyUua.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/C6ycMIl8.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/C8IWavqP.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CBOHD01g.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CCVMqYwU.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CEjjmBiV.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CGnrPm12.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CI9o5sp1.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CJNMGgO1.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CQXeczT5.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CYYzcUiv.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/C_sCMxg1.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CgJZQO--.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CnO2VdTL.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Cr7hAx64.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CrCq4Xoh.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CroBkDga.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Csx7A0DN.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Cuvx4LgW.js +3 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/CyawoxC2.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/D-n060w1.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/D4WPxGPo.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/D95YcYKq.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DAbvT-X3.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DCb_ZtQH.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DE1P3r7F.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DFLguEM_.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DGbhoIs5.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DHi1YNMu.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DI7cZCxl.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DJLHLsVi.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DTtxc_FB.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DbEiOsGJ.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DcxHQaTs.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Dd5wp9-n.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DmAckDBq.js +55 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Dr0Y7BPZ.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Dv0kXOgx.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/DvgFZmvX.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Dw3JCUP_.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Fs91YEl8.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/I3sYpKg0.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/K8FM4nzM.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/LqQD7uU2.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/NTKXfsWw.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/PPVm8Dsz.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/VzGbN-nu.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/Xb7nUoZd.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/ackQDMRl.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/cO7r2mHo.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/dTob4RHe.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/fr-pmeFJ.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/go5edTjZ.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/lPzootGC.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/m8638FeX.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/pfpg6Lx0.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/rFE-i1UA.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/rzKGJsoj.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/sq7b1v96.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/uweu9Vjx.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/chunks/wbPk3Yxo.js +81 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/entry/app.CFzM969k.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/entry/start.uexIqm2-.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/0.cGzcH4ea.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/1.DICIi26r.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/10.1AsaFQKl.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/11.CTkRz8vV.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/12.D8YcN0be.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/13.XO412VeQ.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/14.DhwW-yBR.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/15.DT10uUoi.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/16.CVr4Ikec.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/17.DepNiX-l.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/18.4AXRm86Y.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/19.CsD_sIdB.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/2.CDzwb_zT.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/3.CbmKBC8l.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/4.ctQVl-vz.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/5.CxZW6cUm.js +2 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/6.BTJvXEwL.js +17 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/7.D9IKkq80.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/8.Bygw2be2.js +1 -0
- pandrator-0.6.1/pandrator/web/static/_app/immutable/nodes/9.DwhUgfjK.js +5 -0
- pandrator-0.6.1/pandrator/web/static/_app/version.json +1 -0
- pandrator-0.6.1/pandrator/web/static/index.html +64 -0
- pandrator-0.6.1/pandrator/web/static/pandrator-logo.png +0 -0
- pandrator-0.6.1/pandrator/web/subtitle_review.py +293 -0
- pandrator-0.6.1/pandrator/web/tts_optimization.py +360 -0
- pandrator-0.6.1/pandrator/web/tts_providers.py +934 -0
- pandrator-0.6.1/pandrator/web/uploads.py +214 -0
- pandrator-0.6.1/pandrator/web/usage.py +46 -0
- pandrator-0.6.1/pandrator/web/voice_library.py +88 -0
- pandrator-0.6.1/pandrator/web/waveform.py +107 -0
- pandrator-0.6.1/pandrator/web/web_research.py +756 -0
- pandrator-0.6.1/pandrator/web/work.py +321 -0
- pandrator-0.6.1/pandrator/web/workflow_handlers.py +5788 -0
- pandrator-0.6.1/pandrator/web/workflow_plan_routes.py +161 -0
- pandrator-0.6.1/pandrator/web/workflow_plans.py +949 -0
- pandrator-0.6.1/pandrator/web/workflows.py +675 -0
- pandrator-0.6.1/pandrator/web/workspace.py +1951 -0
- pandrator-0.6.1/pandrator.ico +0 -0
- pandrator-0.6.1/pandrator.png +0 -0
- pandrator-0.6.1/pandrator_installer/__init__.py +12 -0
- pandrator-0.6.1/pandrator_installer/backend_catalog.py +583 -0
- pandrator-0.6.1/pandrator_installer/build_support.py +191 -0
- pandrator-0.6.1/pandrator_installer/catalog.py +359 -0
- pandrator-0.6.1/pandrator_installer/cli.py +627 -0
- pandrator-0.6.1/pandrator_installer/components.py +2203 -0
- pandrator-0.6.1/pandrator_installer/constants.py +153 -0
- pandrator-0.6.1/pandrator_installer/crispasr.py +99 -0
- pandrator-0.6.1/pandrator_installer/gui/__init__.py +1 -0
- pandrator-0.6.1/pandrator_installer/gui/actions.py +423 -0
- pandrator-0.6.1/pandrator_installer/gui/backend_card.py +251 -0
- pandrator-0.6.1/pandrator_installer/gui/main_window.py +2105 -0
- pandrator-0.6.1/pandrator_installer/gui/support.py +222 -0
- pandrator-0.6.1/pandrator_installer/lifecycle.py +805 -0
- pandrator-0.6.1/pandrator_installer/models.py +253 -0
- pandrator-0.6.1/pandrator_installer/operations.py +1199 -0
- pandrator-0.6.1/pandrator_installer/pixi.py +1007 -0
- pandrator-0.6.1/pandrator_installer/platforms.py +245 -0
- pandrator-0.6.1/pandrator_installer/process_identity.py +118 -0
- pandrator-0.6.1/pandrator_installer/pyproject.toml +29 -0
- pandrator-0.6.1/pandrator_installer/reporting.py +46 -0
- pandrator-0.6.1/pandrator_installer/runtime.py +1594 -0
- pandrator-0.6.1/pandrator_installer/service.py +61 -0
- pandrator-0.6.1/pandrator_installer/storage.py +236 -0
- pandrator-0.6.1/pandrator_installer/subprocess_env.py +56 -0
- pandrator-0.6.1/pandrator_installer/supervisor.py +618 -0
- pandrator-0.6.1/pandrator_installer/update.py +177 -0
- pandrator-0.6.1/pandrator_installer/workflows.py +1022 -0
- pandrator-0.6.1/pandrator_installer_launcher.py +66 -0
- pandrator-0.6.1/pandrator_installer_launcher.spec +52 -0
- pandrator-0.6.1/pandrator_installer_launcher_linux.spec +61 -0
- pandrator-0.6.1/pandrator_manager/LICENSE +21 -0
- pandrator-0.6.1/pandrator_manager/README.md +324 -0
- pandrator-0.6.1/pandrator_manager/__init__.py +36 -0
- pandrator-0.6.1/pandrator_manager/api/__init__.py +6 -0
- pandrator-0.6.1/pandrator_manager/api/app.py +1797 -0
- pandrator-0.6.1/pandrator_manager/api/openapi.py +254 -0
- pandrator-0.6.1/pandrator_manager/api/schemas.py +92 -0
- pandrator-0.6.1/pandrator_manager/application.py +450 -0
- pandrator-0.6.1/pandrator_manager/artifacts/__init__.py +6 -0
- pandrator-0.6.1/pandrator_manager/artifacts/download.py +181 -0
- pandrator-0.6.1/pandrator_manager/artifacts/extract.py +93 -0
- pandrator-0.6.1/pandrator_manager/auth/__init__.py +25 -0
- pandrator-0.6.1/pandrator_manager/auth/automation.py +552 -0
- pandrator-0.6.1/pandrator_manager/auth/credentials.py +432 -0
- pandrator-0.6.1/pandrator_manager/autostart.py +250 -0
- pandrator-0.6.1/pandrator_manager/cli.py +672 -0
- pandrator-0.6.1/pandrator_manager/client.py +595 -0
- pandrator-0.6.1/pandrator_manager/compat.py +19 -0
- pandrator-0.6.1/pandrator_manager/components/__init__.py +6 -0
- pandrator-0.6.1/pandrator_manager/components/builtin.py +659 -0
- pandrator-0.6.1/pandrator_manager/components/catalog.py +780 -0
- pandrator-0.6.1/pandrator_manager/components/crispasr.py +114 -0
- pandrator-0.6.1/pandrator_manager/components/host.py +358 -0
- pandrator-0.6.1/pandrator_manager/components/registry.py +238 -0
- pandrator-0.6.1/pandrator_manager/components/runtime_bootstrap.py +334 -0
- pandrator-0.6.1/pandrator_manager/components/slots.py +39 -0
- pandrator-0.6.1/pandrator_manager/context.py +243 -0
- pandrator-0.6.1/pandrator_manager/daemon.py +506 -0
- pandrator-0.6.1/pandrator_manager/doctor.py +702 -0
- pandrator-0.6.1/pandrator_manager/environments/__init__.py +13 -0
- pandrator-0.6.1/pandrator_manager/environments/bootstrap.py +390 -0
- pandrator-0.6.1/pandrator_manager/environments/pixi.py +112 -0
- pandrator-0.6.1/pandrator_manager/errors.py +66 -0
- pandrator-0.6.1/pandrator_manager/launcher.py +975 -0
- pandrator-0.6.1/pandrator_manager/legacy.py +948 -0
- pandrator-0.6.1/pandrator_manager/legacy_data.py +474 -0
- pandrator-0.6.1/pandrator_manager/lifecycle.py +394 -0
- pandrator-0.6.1/pandrator_manager/models.py +518 -0
- pandrator-0.6.1/pandrator_manager/network.py +316 -0
- pandrator-0.6.1/pandrator_manager/operations/__init__.py +6 -0
- pandrator-0.6.1/pandrator_manager/operations/engine.py +554 -0
- pandrator-0.6.1/pandrator_manager/operations/handlers.py +1785 -0
- pandrator-0.6.1/pandrator_manager/planning.py +355 -0
- pandrator-0.6.1/pandrator_manager/preflight.py +384 -0
- pandrator-0.6.1/pandrator_manager/processes/__init__.py +12 -0
- pandrator-0.6.1/pandrator_manager/processes/identity.py +58 -0
- pandrator-0.6.1/pandrator_manager/processes/runner.py +236 -0
- pandrator-0.6.1/pandrator_manager/pyproject.toml +101 -0
- pandrator-0.6.1/pandrator_manager/recovery_ui/__init__.py +1 -0
- pandrator-0.6.1/pandrator_manager/recovery_ui/static/app.js +2141 -0
- pandrator-0.6.1/pandrator_manager/recovery_ui/static/index.html +632 -0
- pandrator-0.6.1/pandrator_manager/recovery_ui/static/styles.css +1488 -0
- pandrator-0.6.1/pandrator_manager/releases/__init__.py +62 -0
- pandrator-0.6.1/pandrator_manager/releases/authority.py +257 -0
- pandrator-0.6.1/pandrator_manager/releases/bundles.py +178 -0
- pandrator-0.6.1/pandrator_manager/releases/discovery.py +130 -0
- pandrator-0.6.1/pandrator_manager/releases/handoff.py +1336 -0
- pandrator-0.6.1/pandrator_manager/releases/models.py +175 -0
- pandrator-0.6.1/pandrator_manager/releases/planning.py +419 -0
- pandrator-0.6.1/pandrator_manager/releases/slots.py +319 -0
- pandrator-0.6.1/pandrator_manager/releases/trust.py +236 -0
- pandrator-0.6.1/pandrator_manager/runtime_specs.py +622 -0
- pandrator-0.6.1/pandrator_manager/state/__init__.py +5 -0
- pandrator-0.6.1/pandrator_manager/state/migrations.py +292 -0
- pandrator-0.6.1/pandrator_manager/state/store.py +1694 -0
- pandrator-0.6.1/pandrator_manager/supervisor/__init__.py +5 -0
- pandrator-0.6.1/pandrator_manager/supervisor/runtime.py +793 -0
- pandrator-0.6.1/pandrator_manager/tray/__init__.py +211 -0
- pandrator-0.6.1/pandrator_manager/uninstall.py +1568 -0
- pandrator-0.6.1/pandrator_manager/workspace_selection.py +456 -0
- pandrator-0.6.1/pandrator_manager_bootstrap.py +6 -0
- pandrator-0.6.1/pandrator_manager_bootstrap.spec +61 -0
- pandrator-0.6.1/pandrator_mcp/LICENSE +21 -0
- pandrator-0.6.1/pandrator_mcp/README.md +405 -0
- pandrator-0.6.1/pandrator_mcp/__init__.py +17 -0
- pandrator-0.6.1/pandrator_mcp/__main__.py +778 -0
- pandrator-0.6.1/pandrator_mcp/catalog.py +373 -0
- pandrator-0.6.1/pandrator_mcp/clients/__init__.py +27 -0
- pandrator-0.6.1/pandrator_mcp/clients/application.py +781 -0
- pandrator-0.6.1/pandrator_mcp/clients/local_manager.py +327 -0
- pandrator-0.6.1/pandrator_mcp/clients/manager_gateway.py +210 -0
- pandrator-0.6.1/pandrator_mcp/clients/manager_proxy.py +70 -0
- pandrator-0.6.1/pandrator_mcp/clients/manager_recovery.py +426 -0
- pandrator-0.6.1/pandrator_mcp/compatibility.py +102 -0
- pandrator-0.6.1/pandrator_mcp/context.py +104 -0
- pandrator-0.6.1/pandrator_mcp/contracts/manager-automation-v1.openapi.json +641 -0
- pandrator-0.6.1/pandrator_mcp/credentials.py +245 -0
- pandrator-0.6.1/pandrator_mcp/doctor.py +317 -0
- pandrator-0.6.1/pandrator_mcp/enrollment.py +757 -0
- pandrator-0.6.1/pandrator_mcp/errors.py +89 -0
- pandrator-0.6.1/pandrator_mcp/guide_registry.py +117 -0
- pandrator-0.6.1/pandrator_mcp/guides/artifacts-and-revisions.md +20 -0
- pandrator-0.6.1/pandrator_mcp/guides/audiobooks.md +23 -0
- pandrator-0.6.1/pandrator_mcp/guides/dubbing-voiceover.md +19 -0
- pandrator-0.6.1/pandrator_mcp/guides/durable-work.md +24 -0
- pandrator-0.6.1/pandrator_mcp/guides/index.json +124 -0
- pandrator-0.6.1/pandrator_mcp/guides/manager-and-recovery.md +42 -0
- pandrator-0.6.1/pandrator_mcp/guides/overview.md +34 -0
- pandrator-0.6.1/pandrator_mcp/guides/providers-and-voices.md +24 -0
- pandrator-0.6.1/pandrator_mcp/guides/remote-targets.md +107 -0
- pandrator-0.6.1/pandrator_mcp/guides/subtitles.md +21 -0
- pandrator-0.6.1/pandrator_mcp/guides/threat-model.md +70 -0
- pandrator-0.6.1/pandrator_mcp/guides/workflows.md +31 -0
- pandrator-0.6.1/pandrator_mcp/host_config.py +161 -0
- pandrator-0.6.1/pandrator_mcp/network_policy.py +230 -0
- pandrator-0.6.1/pandrator_mcp/pyproject.toml +76 -0
- pandrator-0.6.1/pandrator_mcp/request_context.py +50 -0
- pandrator-0.6.1/pandrator_mcp/results.py +17 -0
- pandrator-0.6.1/pandrator_mcp/schemas/__init__.py +102 -0
- pandrator-0.6.1/pandrator_mcp/schemas/common.py +56 -0
- pandrator-0.6.1/pandrator_mcp/schemas/guidance.py +44 -0
- pandrator-0.6.1/pandrator_mcp/schemas/inventory.py +23 -0
- pandrator-0.6.1/pandrator_mcp/schemas/manager.py +226 -0
- pandrator-0.6.1/pandrator_mcp/schemas/recommendations.py +12 -0
- pandrator-0.6.1/pandrator_mcp/schemas/sessions.py +300 -0
- pandrator-0.6.1/pandrator_mcp/schemas/system.py +18 -0
- pandrator-0.6.1/pandrator_mcp/schemas/work.py +40 -0
- pandrator-0.6.1/pandrator_mcp/schemas/workflow.py +142 -0
- pandrator-0.6.1/pandrator_mcp/server.py +984 -0
- pandrator-0.6.1/pandrator_mcp/settings.py +34 -0
- pandrator-0.6.1/pandrator_mcp/targets.py +670 -0
- pandrator-0.6.1/pandrator_mcp/tools/__init__.py +57 -0
- pandrator-0.6.1/pandrator_mcp/tools/guidance.py +30 -0
- pandrator-0.6.1/pandrator_mcp/tools/inventory.py +103 -0
- pandrator-0.6.1/pandrator_mcp/tools/manager.py +528 -0
- pandrator-0.6.1/pandrator_mcp/tools/recommendations.py +82 -0
- pandrator-0.6.1/pandrator_mcp/tools/sessions.py +488 -0
- pandrator-0.6.1/pandrator_mcp/tools/system.py +124 -0
- pandrator-0.6.1/pandrator_mcp/tools/work.py +137 -0
- pandrator-0.6.1/pandrator_mcp/tools/workflow.py +76 -0
- pandrator-0.6.1/pandrator_mcp/transport.py +164 -0
- pandrator-0.6.1/pandrator_mcp/work_mapping.py +149 -0
- pandrator-0.6.1/pixi.lock +7739 -0
- pandrator-0.6.1/pixi.toml +50 -0
- pandrator-0.6.1/pyproject.toml +70 -0
- pandrator-0.6.1/requirements-installer.txt +10 -0
- pandrator-0.6.1/requirements.txt +34 -0
- pandrator-0.6.1/scripts/audit_python_distributions.py +162 -0
- pandrator-0.6.1/scripts/benchmark_tts.py +859 -0
- pandrator-0.6.1/scripts/build_appimage_container.py +272 -0
- pandrator-0.6.1/scripts/build_installer.py +47 -0
- pandrator-0.6.1/scripts/build_linux_appimage.py +269 -0
- pandrator-0.6.1/scripts/build_manager_appimage.py +354 -0
- pandrator-0.6.1/scripts/build_manager_bootstrap.py +298 -0
- pandrator-0.6.1/scripts/build_manager_release_bundle.py +181 -0
- pandrator-0.6.1/scripts/build_release_packages.py +954 -0
- pandrator-0.6.1/scripts/dubbing_live_smoke.py +344 -0
- pandrator-0.6.1/scripts/generate_manager_release_key.py +109 -0
- pandrator-0.6.1/scripts/generate_requirements.py +109 -0
- pandrator-0.6.1/scripts/generate_web_contract.py +23 -0
- pandrator-0.6.1/scripts/phase0_baseline.py +788 -0
- pandrator-0.6.1/scripts/qualify_manager_lifecycle.py +479 -0
- pandrator-0.6.1/scripts/qualify_mcp_enrollment.py +209 -0
- pandrator-0.6.1/scripts/run_dubbing_local_smoke.ps1 +22 -0
- pandrator-0.6.1/scripts/run_dubbing_tests.ps1 +22 -0
- pandrator-0.6.1/scripts/run_web_e2e_server.py +40 -0
- pandrator-0.6.1/scripts/sign_manager_release.py +220 -0
- pandrator-0.6.1/tests/conftest.py +8 -0
- pandrator-0.6.1/tests/test_audio_variant_handler.py +88 -0
- pandrator-0.6.1/tests/test_audio_verification.py +60 -0
- pandrator-0.6.1/tests/test_build_appimage_container.py +109 -0
- pandrator-0.6.1/tests/test_build_release_packages.py +84 -0
- pandrator-0.6.1/tests/test_dependency_manifests.py +83 -0
- pandrator-0.6.1/tests/test_dubbing_artifacts.py +123 -0
- pandrator-0.6.1/tests/test_dubbing_audio_sync.py +520 -0
- pandrator-0.6.1/tests/test_dubbing_boundary_correction.py +77 -0
- pandrator-0.6.1/tests/test_dubbing_credentials.py +110 -0
- pandrator-0.6.1/tests/test_dubbing_llm_correction.py +345 -0
- pandrator-0.6.1/tests/test_dubbing_llm_translation.py +431 -0
- pandrator-0.6.1/tests/test_dubbing_manual_timing.py +103 -0
- pandrator-0.6.1/tests/test_dubbing_run_usage.py +37 -0
- pandrator-0.6.1/tests/test_dubbing_settings.py +135 -0
- pandrator-0.6.1/tests/test_dubbing_speech_blocks_integration.py +361 -0
- pandrator-0.6.1/tests/test_dubbing_subtitle_logic.py +418 -0
- pandrator-0.6.1/tests/test_dubbing_transcription.py +532 -0
- pandrator-0.6.1/tests/test_frontend_architecture.py +156 -0
- pandrator-0.6.1/tests/test_guided_dubbing_workflow.py +123 -0
- pandrator-0.6.1/tests/test_installer_architecture.py +1407 -0
- pandrator-0.6.1/tests/test_installer_backend_catalog.py +203 -0
- pandrator-0.6.1/tests/test_installer_gui_worker.py +100 -0
- pandrator-0.6.1/tests/test_installer_launcher_chatterbox.py +329 -0
- pandrator-0.6.1/tests/test_installer_lifecycle.py +429 -0
- pandrator-0.6.1/tests/test_installer_rvc_service.py +314 -0
- pandrator-0.6.1/tests/test_installer_update_migrations.py +406 -0
- pandrator-0.6.1/tests/test_installer_web_readiness.py +96 -0
- pandrator-0.6.1/tests/test_llm_handler.py +504 -0
- pandrator-0.6.1/tests/test_manager_automation.py +384 -0
- pandrator-0.6.1/tests/test_manager_build.py +312 -0
- pandrator-0.6.1/tests/test_manager_control_plane.py +936 -0
- pandrator-0.6.1/tests/test_manager_core.py +1190 -0
- pandrator-0.6.1/tests/test_manager_doctor.py +155 -0
- pandrator-0.6.1/tests/test_manager_guided_setup.py +481 -0
- pandrator-0.6.1/tests/test_manager_launcher.py +511 -0
- pandrator-0.6.1/tests/test_manager_network.py +532 -0
- pandrator-0.6.1/tests/test_manager_operations.py +456 -0
- pandrator-0.6.1/tests/test_manager_releases.py +1102 -0
- pandrator-0.6.1/tests/test_manager_uninstall.py +681 -0
- pandrator-0.6.1/tests/test_mcp_application_client.py +700 -0
- pandrator-0.6.1/tests/test_mcp_architecture.py +518 -0
- pandrator-0.6.1/tests/test_mcp_doctor.py +172 -0
- pandrator-0.6.1/tests/test_mcp_enrollment.py +212 -0
- pandrator-0.6.1/tests/test_mcp_host_config.py +188 -0
- pandrator-0.6.1/tests/test_mcp_server.py +217 -0
- pandrator-0.6.1/tests/test_mcp_targets_cli.py +318 -0
- pandrator-0.6.1/tests/test_nemo_normalizer.py +45 -0
- pandrator-0.6.1/tests/test_pdf_ingestion.py +601 -0
- pandrator-0.6.1/tests/test_phase0_baseline.py +65 -0
- pandrator-0.6.1/tests/test_rvc_handler.py +69 -0
- pandrator-0.6.1/tests/test_sentence_segmenter.py +77 -0
- pandrator-0.6.1/tests/test_source_cleaning.py +1815 -0
- pandrator-0.6.1/tests/test_state_db_handler.py +602 -0
- pandrator-0.6.1/tests/test_subtitle_finalization.py +197 -0
- pandrator-0.6.1/tests/test_text_preprocessor.py +285 -0
- pandrator-0.6.1/tests/test_transcript_normalization.py +155 -0
- pandrator-0.6.1/tests/test_tts_endpoint_discovery.py +153 -0
- pandrator-0.6.1/tests/test_tts_handler.py +826 -0
- pandrator-0.6.1/tests/test_tts_provider_profiles.py +97 -0
- pandrator-0.6.1/tests/test_web_advanced_parity.py +401 -0
- pandrator-0.6.1/tests/test_web_artifact_selection.py +220 -0
- pandrator-0.6.1/tests/test_web_audio_assembly.py +508 -0
- pandrator-0.6.1/tests/test_web_audio_streaming.py +340 -0
- pandrator-0.6.1/tests/test_web_automation_security.py +591 -0
- pandrator-0.6.1/tests/test_web_backend_architecture.py +218 -0
- pandrator-0.6.1/tests/test_web_capabilities.py +189 -0
- pandrator-0.6.1/tests/test_web_credentials.py +288 -0
- pandrator-0.6.1/tests/test_web_database_efficiency.py +271 -0
- pandrator-0.6.1/tests/test_web_foundation.py +971 -0
- pandrator-0.6.1/tests/test_web_job_concurrency.py +473 -0
- pandrator-0.6.1/tests/test_web_manager_proxy.py +342 -0
- pandrator-0.6.1/tests/test_web_parity_workspace.py +794 -0
- pandrator-0.6.1/tests/test_web_pdf_editor.py +101 -0
- pandrator-0.6.1/tests/test_web_process_guard.py +90 -0
- pandrator-0.6.1/tests/test_web_pronunciations.py +161 -0
- pandrator-0.6.1/tests/test_web_provider_api.py +292 -0
- pandrator-0.6.1/tests/test_web_research.py +186 -0
- pandrator-0.6.1/tests/test_web_security.py +253 -0
- pandrator-0.6.1/tests/test_web_session_bundles.py +159 -0
- pandrator-0.6.1/tests/test_web_settings_api.py +371 -0
- pandrator-0.6.1/tests/test_web_speech_planning.py +207 -0
- pandrator-0.6.1/tests/test_web_startup_maintenance.py +103 -0
- pandrator-0.6.1/tests/test_web_subtitle_review.py +249 -0
- pandrator-0.6.1/tests/test_web_supervisor.py +424 -0
- pandrator-0.6.1/tests/test_web_tts_optimization.py +251 -0
- pandrator-0.6.1/tests/test_web_voice_library.py +260 -0
- pandrator-0.6.1/tests/test_web_work_api.py +291 -0
- pandrator-0.6.1/tests/test_web_workflow_handlers.py +1944 -0
- pandrator-0.6.1/tests/test_web_workflow_plans.py +481 -0
- pandrator-0.6.1/tests/web_test_support.py +32 -0
- pandrator-0.6.1/tts_voices/sample_male_new.wav +0 -0
- pandrator-0.6.1/vendor/wheels/pyopenjtalk-0.4.1-cp311-cp311-win_amd64.whl +0 -0
- pandrator-0.6.1/web/package-lock.json +2986 -0
- pandrator-0.6.1/web/package.json +33 -0
- pandrator-0.6.1/web/playwright.config.ts +40 -0
- pandrator-0.6.1/web/src/app.css +103 -0
- pandrator-0.6.1/web/src/app.html +15 -0
- pandrator-0.6.1/web/src/lib/AddSourceDialog.svelte +122 -0
- pandrator-0.6.1/web/src/lib/AdvancedTools.svelte +140 -0
- pandrator-0.6.1/web/src/lib/ArtifactPreview.svelte +168 -0
- pandrator-0.6.1/web/src/lib/AudioPlayer.svelte +103 -0
- pandrator-0.6.1/web/src/lib/CredentialManager.svelte +103 -0
- pandrator-0.6.1/web/src/lib/CredentialStorageFields.svelte +120 -0
- pandrator-0.6.1/web/src/lib/GenerationDrawer.svelte +905 -0
- pandrator-0.6.1/web/src/lib/GenerationReadingView.svelte +136 -0
- pandrator-0.6.1/web/src/lib/GenerationSegmentTable.svelte +216 -0
- pandrator-0.6.1/web/src/lib/GlobalSettingsPanel.svelte +74 -0
- pandrator-0.6.1/web/src/lib/GuidedTour.svelte +21 -0
- pandrator-0.6.1/web/src/lib/JobActivityList.svelte +117 -0
- pandrator-0.6.1/web/src/lib/LocalComponentsPanel.svelte +904 -0
- pandrator-0.6.1/web/src/lib/ManagerOperationBanner.svelte +142 -0
- pandrator-0.6.1/web/src/lib/NewSessionWizard.svelte +186 -0
- pandrator-0.6.1/web/src/lib/OutputSettingsPanel.svelte +209 -0
- pandrator-0.6.1/web/src/lib/PdfEditor.svelte +258 -0
- pandrator-0.6.1/web/src/lib/PdfPageThumbnail.svelte +26 -0
- pandrator-0.6.1/web/src/lib/PrebuiltVoiceLibrary.svelte +313 -0
- pandrator-0.6.1/web/src/lib/ProviderManager.svelte +396 -0
- pandrator-0.6.1/web/src/lib/SearchReplaceBar.svelte +120 -0
- pandrator-0.6.1/web/src/lib/ServiceManager.svelte +320 -0
- pandrator-0.6.1/web/src/lib/SessionWorkspace.svelte +918 -0
- pandrator-0.6.1/web/src/lib/SettingField.svelte +71 -0
- pandrator-0.6.1/web/src/lib/SettingsModal.svelte +14 -0
- pandrator-0.6.1/web/src/lib/SettingsPanel.svelte +121 -0
- pandrator-0.6.1/web/src/lib/SetupChecklist.svelte +29 -0
- pandrator-0.6.1/web/src/lib/SpeechPlanReviewDialog.svelte +179 -0
- pandrator-0.6.1/web/src/lib/StageArtifactHistory.svelte +145 -0
- pandrator-0.6.1/web/src/lib/SubtitleReview.svelte +257 -0
- pandrator-0.6.1/web/src/lib/TextDiff.svelte +67 -0
- pandrator-0.6.1/web/src/lib/TextOptimizationReview.svelte +106 -0
- pandrator-0.6.1/web/src/lib/TtsServicesModal.svelte +12 -0
- pandrator-0.6.1/web/src/lib/VoiceLibraryModal.svelte +28 -0
- pandrator-0.6.1/web/src/lib/VoiceManager.svelte +495 -0
- pandrator-0.6.1/web/src/lib/WaveformPeaks.svelte +32 -0
- pandrator-0.6.1/web/src/lib/WorkflowCustomizer.svelte +120 -0
- pandrator-0.6.1/web/src/lib/WorkflowRunDialogs.svelte +129 -0
- pandrator-0.6.1/web/src/lib/WorkflowStageCard.svelte +191 -0
- pandrator-0.6.1/web/src/lib/admin-api.ts +550 -0
- pandrator-0.6.1/web/src/lib/api-models.ts +683 -0
- pandrator-0.6.1/web/src/lib/api.generated.ts +6482 -0
- pandrator-0.6.1/web/src/lib/api.ts +264 -0
- pandrator-0.6.1/web/src/lib/app-state.svelte.ts +304 -0
- pandrator-0.6.1/web/src/lib/artifact-display.ts +70 -0
- pandrator-0.6.1/web/src/lib/domain-api.ts +711 -0
- pandrator-0.6.1/web/src/lib/generation-store.svelte.ts +324 -0
- pandrator-0.6.1/web/src/lib/generation-view-models.ts +23 -0
- pandrator-0.6.1/web/src/lib/invalidation.ts +120 -0
- pandrator-0.6.1/web/src/lib/resource-state.svelte.ts +75 -0
- pandrator-0.6.1/web/src/lib/search-replace.ts +63 -0
- pandrator-0.6.1/web/src/lib/session-context.ts +16 -0
- pandrator-0.6.1/web/src/lib/session-store.svelte.ts +80 -0
- pandrator-0.6.1/web/src/lib/settings-fields.ts +143 -0
- pandrator-0.6.1/web/src/lib/stage-artifacts.ts +107 -0
- pandrator-0.6.1/web/src/lib/voice-catalog.ts +117 -0
- pandrator-0.6.1/web/src/lib/workflow-store.svelte.ts +108 -0
- pandrator-0.6.1/web/src/routes/+layout.svelte +106 -0
- pandrator-0.6.1/web/src/routes/+layout.ts +3 -0
- pandrator-0.6.1/web/src/routes/+page.svelte +31 -0
- pandrator-0.6.1/web/src/routes/activity/+page.svelte +10 -0
- pandrator-0.6.1/web/src/routes/pronunciations/+page.svelte +276 -0
- pandrator-0.6.1/web/src/routes/providers/+page.svelte +3 -0
- pandrator-0.6.1/web/src/routes/rvc/+page.svelte +2 -0
- pandrator-0.6.1/web/src/routes/sessions/+page.svelte +43 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/+layout.svelte +51 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/+page.svelte +2 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/activity/+page.svelte +8 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/cleaning/+page.svelte +45 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/output/+page.svelte +156 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/sources/+page.svelte +65 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/text/+page.svelte +89 -0
- pandrator-0.6.1/web/src/routes/sessions/[id]/voice/+page.svelte +7 -0
- pandrator-0.6.1/web/src/routes/settings/+page.svelte +53 -0
- pandrator-0.6.1/web/src/routes/sources/+page.svelte +29 -0
- pandrator-0.6.1/web/src/routes/training/+page.svelte +2 -0
- pandrator-0.6.1/web/src/routes/voices/+page.svelte +4 -0
- pandrator-0.6.1/web/static/pandrator-logo.png +0 -0
- pandrator-0.6.1/web/svelte.config.js +19 -0
- pandrator-0.6.1/web/tests/__screenshots__/workspace.spec.ts/workspace-chromium.png +0 -0
- pandrator-0.6.1/web/tests/__screenshots__/workspace.spec.ts/workspace-firefox.png +0 -0
- pandrator-0.6.1/web/tests/output.spec.ts +188 -0
- pandrator-0.6.1/web/tests/phase0-baseline.spec.ts +169 -0
- pandrator-0.6.1/web/tests/phase2-events.spec.ts +168 -0
- pandrator-0.6.1/web/tests/workspace.spec.ts +385 -0
- pandrator-0.6.1/web/tsconfig.json +15 -0
- pandrator-0.6.1/web/vite.config.ts +13 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
name: Pandrator Manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
paths:
|
|
6
|
+
- ".github/workflows/manager-ci.yml"
|
|
7
|
+
- "pandrator_manager/**"
|
|
8
|
+
- "pandrator_manager_bootstrap.py"
|
|
9
|
+
- "pandrator_manager_bootstrap.spec"
|
|
10
|
+
- "scripts/build_manager_*.py"
|
|
11
|
+
- "scripts/generate_manager_release_key.py"
|
|
12
|
+
- "scripts/qualify_manager_lifecycle.py"
|
|
13
|
+
- "scripts/sign_manager_release.py"
|
|
14
|
+
- "tests/test_manager_*.py"
|
|
15
|
+
pull_request:
|
|
16
|
+
paths:
|
|
17
|
+
- ".github/workflows/manager-ci.yml"
|
|
18
|
+
- "pandrator_manager/**"
|
|
19
|
+
- "pandrator_manager_bootstrap.py"
|
|
20
|
+
- "pandrator_manager_bootstrap.spec"
|
|
21
|
+
- "scripts/build_manager_*.py"
|
|
22
|
+
- "scripts/generate_manager_release_key.py"
|
|
23
|
+
- "scripts/qualify_manager_lifecycle.py"
|
|
24
|
+
- "scripts/sign_manager_release.py"
|
|
25
|
+
- "tests/test_manager_*.py"
|
|
26
|
+
workflow_dispatch:
|
|
27
|
+
|
|
28
|
+
permissions:
|
|
29
|
+
contents: read
|
|
30
|
+
|
|
31
|
+
jobs:
|
|
32
|
+
test:
|
|
33
|
+
name: Test (${{ matrix.os }}, Python ${{ matrix.python }})
|
|
34
|
+
runs-on: ${{ matrix.os }}
|
|
35
|
+
timeout-minutes: 25
|
|
36
|
+
strategy:
|
|
37
|
+
fail-fast: false
|
|
38
|
+
matrix:
|
|
39
|
+
os: [windows-latest, ubuntu-22.04]
|
|
40
|
+
python: ["3.11", "3.12"]
|
|
41
|
+
|
|
42
|
+
steps:
|
|
43
|
+
- uses: actions/checkout@v4
|
|
44
|
+
|
|
45
|
+
- uses: actions/setup-python@v5
|
|
46
|
+
with:
|
|
47
|
+
python-version: ${{ matrix.python }}
|
|
48
|
+
cache: pip
|
|
49
|
+
cache-dependency-path: pandrator_manager/pyproject.toml
|
|
50
|
+
|
|
51
|
+
- name: Install manager test environment
|
|
52
|
+
run: >-
|
|
53
|
+
python -m pip install --disable-pip-version-check
|
|
54
|
+
-e "./pandrator_manager[dev]"
|
|
55
|
+
"alembic>=1.14,<2"
|
|
56
|
+
"argon2-cffi>=23.1,<26"
|
|
57
|
+
"authlib>=1.7,<2"
|
|
58
|
+
"pydub>=0.25,<1"
|
|
59
|
+
"sqlalchemy>=2.0,<3"
|
|
60
|
+
|
|
61
|
+
- name: Check manager source
|
|
62
|
+
shell: bash
|
|
63
|
+
run: |
|
|
64
|
+
ruff check --config pandrator_manager/pyproject.toml \
|
|
65
|
+
pandrator_manager \
|
|
66
|
+
scripts/build_manager_appimage.py \
|
|
67
|
+
scripts/build_manager_bootstrap.py \
|
|
68
|
+
scripts/build_manager_release_bundle.py \
|
|
69
|
+
scripts/generate_manager_release_key.py \
|
|
70
|
+
scripts/qualify_manager_lifecycle.py \
|
|
71
|
+
scripts/sign_manager_release.py
|
|
72
|
+
python -m compileall -q pandrator_manager pandrator_manager_bootstrap.py
|
|
73
|
+
|
|
74
|
+
- name: Run manager tests
|
|
75
|
+
shell: bash
|
|
76
|
+
run: python -m pytest -q tests/test_manager_*.py
|
|
77
|
+
|
|
78
|
+
package:
|
|
79
|
+
name: Package and lifecycle (${{ matrix.os }})
|
|
80
|
+
runs-on: ${{ matrix.os }}
|
|
81
|
+
timeout-minutes: 30
|
|
82
|
+
strategy:
|
|
83
|
+
fail-fast: false
|
|
84
|
+
matrix:
|
|
85
|
+
os: [windows-latest, ubuntu-22.04]
|
|
86
|
+
|
|
87
|
+
steps:
|
|
88
|
+
- uses: actions/checkout@v4
|
|
89
|
+
|
|
90
|
+
- uses: actions/setup-python@v5
|
|
91
|
+
with:
|
|
92
|
+
python-version: "3.12"
|
|
93
|
+
cache: pip
|
|
94
|
+
cache-dependency-path: pandrator_manager/pyproject.toml
|
|
95
|
+
|
|
96
|
+
- name: Install isolated build environment
|
|
97
|
+
run: python -m pip install --disable-pip-version-check -e "./pandrator_manager[build,dev]"
|
|
98
|
+
|
|
99
|
+
- name: Build PyPI artifacts
|
|
100
|
+
run: python -m build pandrator_manager --outdir manager-dist
|
|
101
|
+
|
|
102
|
+
- name: Smoke-test the built wheel without Qt
|
|
103
|
+
shell: bash
|
|
104
|
+
run: |
|
|
105
|
+
python -m venv wheel-smoke
|
|
106
|
+
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
|
107
|
+
PYTHON="wheel-smoke/Scripts/python.exe"
|
|
108
|
+
MANAGER="wheel-smoke/Scripts/pandrator-manager.exe"
|
|
109
|
+
else
|
|
110
|
+
PYTHON="wheel-smoke/bin/python"
|
|
111
|
+
MANAGER="wheel-smoke/bin/pandrator-manager"
|
|
112
|
+
fi
|
|
113
|
+
"$PYTHON" -m pip install --disable-pip-version-check \
|
|
114
|
+
manager-dist/pandrator_manager-*.whl
|
|
115
|
+
"$PYTHON" -c \
|
|
116
|
+
"import importlib.util, pandrator_manager; assert importlib.util.find_spec('PyQt5') is None; assert importlib.util.find_spec('PySide6') is None"
|
|
117
|
+
"$MANAGER" --help >/dev/null
|
|
118
|
+
|
|
119
|
+
- name: Build and self-check native bootstrap
|
|
120
|
+
run: python scripts/build_manager_bootstrap.py --wheel-dir manager-dist
|
|
121
|
+
|
|
122
|
+
- name: Build native manager release bundle
|
|
123
|
+
run: python scripts/build_manager_release_bundle.py
|
|
124
|
+
|
|
125
|
+
- name: Build Linux manager AppImage
|
|
126
|
+
if: runner.os == 'Linux'
|
|
127
|
+
run: >-
|
|
128
|
+
python scripts/build_manager_appimage.py
|
|
129
|
+
--bootstrap dist/PandratorManagerBootstrap
|
|
130
|
+
|
|
131
|
+
- name: Exercise bootstrap, signed handoff, and uninstall
|
|
132
|
+
run: python scripts/qualify_manager_lifecycle.py
|
|
133
|
+
|
|
134
|
+
- name: Upload qualification artifacts
|
|
135
|
+
uses: actions/upload-artifact@v4
|
|
136
|
+
with:
|
|
137
|
+
name: pandrator-manager-${{ matrix.os }}
|
|
138
|
+
if-no-files-found: error
|
|
139
|
+
path: |
|
|
140
|
+
manager-dist/*
|
|
141
|
+
dist/PandratorManagerBootstrap*
|
|
142
|
+
dist/PandratorManager-*.AppImage*
|
|
143
|
+
dist/pandrator-manager-*.zip
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
name: Publish Python packages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
permissions:
|
|
7
|
+
contents: read
|
|
8
|
+
|
|
9
|
+
concurrency:
|
|
10
|
+
group: publish-pypi
|
|
11
|
+
cancel-in-progress: false
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build:
|
|
15
|
+
name: Build and verify distributions
|
|
16
|
+
if: github.ref == 'refs/heads/main'
|
|
17
|
+
runs-on: ubuntu-22.04
|
|
18
|
+
timeout-minutes: 15
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
|
|
22
|
+
|
|
23
|
+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: "3.12"
|
|
26
|
+
|
|
27
|
+
- name: Install packaging tools
|
|
28
|
+
run: python -m pip install --disable-pip-version-check "build>=1.2,<2" "twine>=6,<7"
|
|
29
|
+
|
|
30
|
+
- name: Build Pandrator
|
|
31
|
+
run: python -m build --sdist --wheel --outdir package-dist/pandrator .
|
|
32
|
+
|
|
33
|
+
- name: Build Pandrator Manager
|
|
34
|
+
run: >-
|
|
35
|
+
python -m build --sdist --wheel
|
|
36
|
+
--outdir package-dist/pandrator-manager
|
|
37
|
+
pandrator_manager
|
|
38
|
+
|
|
39
|
+
- name: Build Pandrator MCP
|
|
40
|
+
run: >-
|
|
41
|
+
python -m build --sdist --wheel
|
|
42
|
+
--outdir package-dist/pandrator-mcp
|
|
43
|
+
pandrator_mcp
|
|
44
|
+
|
|
45
|
+
- name: Check package metadata and descriptions
|
|
46
|
+
run: python -m twine check package-dist/*/*
|
|
47
|
+
|
|
48
|
+
- name: Audit release archive contents
|
|
49
|
+
run: >-
|
|
50
|
+
python scripts/audit_python_distributions.py
|
|
51
|
+
--project .
|
|
52
|
+
--project pandrator_manager
|
|
53
|
+
--project pandrator_mcp
|
|
54
|
+
package-dist/*/*
|
|
55
|
+
|
|
56
|
+
- name: Upload verified distributions
|
|
57
|
+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
|
|
58
|
+
with:
|
|
59
|
+
name: pypi-distributions
|
|
60
|
+
if-no-files-found: error
|
|
61
|
+
path: package-dist/
|
|
62
|
+
retention-days: 7
|
|
63
|
+
|
|
64
|
+
publish-pandrator:
|
|
65
|
+
name: Publish Pandrator to PyPI
|
|
66
|
+
needs: build
|
|
67
|
+
runs-on: ubuntu-22.04
|
|
68
|
+
timeout-minutes: 10
|
|
69
|
+
environment:
|
|
70
|
+
name: pypi
|
|
71
|
+
url: https://pypi.org/project/pandrator/
|
|
72
|
+
permissions:
|
|
73
|
+
contents: read
|
|
74
|
+
id-token: write
|
|
75
|
+
|
|
76
|
+
steps:
|
|
77
|
+
- name: Download verified distributions
|
|
78
|
+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
|
79
|
+
with:
|
|
80
|
+
name: pypi-distributions
|
|
81
|
+
path: dist
|
|
82
|
+
|
|
83
|
+
- name: Publish Pandrator
|
|
84
|
+
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # release/v1
|
|
85
|
+
with:
|
|
86
|
+
packages-dir: dist/pandrator
|
|
87
|
+
|
|
88
|
+
publish-manager:
|
|
89
|
+
name: Publish Pandrator Manager to PyPI
|
|
90
|
+
needs: build
|
|
91
|
+
runs-on: ubuntu-22.04
|
|
92
|
+
timeout-minutes: 10
|
|
93
|
+
environment:
|
|
94
|
+
name: pypi-manager
|
|
95
|
+
url: https://pypi.org/project/pandrator-manager/
|
|
96
|
+
permissions:
|
|
97
|
+
contents: read
|
|
98
|
+
id-token: write
|
|
99
|
+
|
|
100
|
+
steps:
|
|
101
|
+
- name: Download verified distributions
|
|
102
|
+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
|
103
|
+
with:
|
|
104
|
+
name: pypi-distributions
|
|
105
|
+
path: dist
|
|
106
|
+
|
|
107
|
+
- name: Publish Pandrator Manager
|
|
108
|
+
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # release/v1
|
|
109
|
+
with:
|
|
110
|
+
packages-dir: dist/pandrator-manager
|
|
111
|
+
|
|
112
|
+
publish-mcp:
|
|
113
|
+
name: Publish Pandrator MCP to PyPI
|
|
114
|
+
needs: build
|
|
115
|
+
runs-on: ubuntu-22.04
|
|
116
|
+
timeout-minutes: 10
|
|
117
|
+
environment:
|
|
118
|
+
name: pypi-mcp
|
|
119
|
+
url: https://pypi.org/project/pandrator-mcp/
|
|
120
|
+
permissions:
|
|
121
|
+
contents: read
|
|
122
|
+
id-token: write
|
|
123
|
+
|
|
124
|
+
steps:
|
|
125
|
+
- name: Download verified distributions
|
|
126
|
+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
|
127
|
+
with:
|
|
128
|
+
name: pypi-distributions
|
|
129
|
+
path: dist
|
|
130
|
+
|
|
131
|
+
- name: Publish Pandrator MCP
|
|
132
|
+
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # release/v1
|
|
133
|
+
with:
|
|
134
|
+
packages-dir: dist/pandrator-mcp
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Pandrator locked runtime
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
paths:
|
|
6
|
+
- ".github/workflows/runtime-ci.yml"
|
|
7
|
+
- "pandrator/**"
|
|
8
|
+
- "pixi.toml"
|
|
9
|
+
- "pixi.lock"
|
|
10
|
+
- "pyproject.toml"
|
|
11
|
+
- "tests/test_dependency_manifests.py"
|
|
12
|
+
pull_request:
|
|
13
|
+
paths:
|
|
14
|
+
- ".github/workflows/runtime-ci.yml"
|
|
15
|
+
- "pandrator/**"
|
|
16
|
+
- "pixi.toml"
|
|
17
|
+
- "pixi.lock"
|
|
18
|
+
- "pyproject.toml"
|
|
19
|
+
- "tests/test_dependency_manifests.py"
|
|
20
|
+
workflow_dispatch:
|
|
21
|
+
|
|
22
|
+
permissions:
|
|
23
|
+
contents: read
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
locked-runtime:
|
|
27
|
+
name: Locked runtime (${{ matrix.os }})
|
|
28
|
+
runs-on: ${{ matrix.os }}
|
|
29
|
+
timeout-minutes: 30
|
|
30
|
+
strategy:
|
|
31
|
+
fail-fast: false
|
|
32
|
+
matrix:
|
|
33
|
+
os: [windows-latest, ubuntu-22.04]
|
|
34
|
+
|
|
35
|
+
steps:
|
|
36
|
+
- uses: actions/checkout@v4
|
|
37
|
+
|
|
38
|
+
- uses: prefix-dev/setup-pixi@v0.10.0
|
|
39
|
+
with:
|
|
40
|
+
pixi-version: v0.72.0
|
|
41
|
+
locked: true
|
|
42
|
+
cache: true
|
|
43
|
+
|
|
44
|
+
- name: Check the canonical dependency projection
|
|
45
|
+
run: pixi run --locked python -m unittest tests.test_dependency_manifests
|
|
46
|
+
|
|
47
|
+
- name: Import the Manager-launched application runtime
|
|
48
|
+
run: pixi run --locked python -m pandrator --help
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
name: Web migration preview
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [codex/webui-migration, codex/webui-**]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [codex/webui-migration, main]
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
preview:
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
os: [windows-latest, ubuntu-latest]
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
- uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: '3.11'
|
|
24
|
+
cache: pip
|
|
25
|
+
- uses: actions/setup-node@v4
|
|
26
|
+
with:
|
|
27
|
+
node-version: '24'
|
|
28
|
+
cache: npm
|
|
29
|
+
cache-dependency-path: web/package-lock.json
|
|
30
|
+
- name: Install Linux Qt runtime libraries
|
|
31
|
+
if: runner.os == 'Linux'
|
|
32
|
+
run: |
|
|
33
|
+
sudo apt-get update
|
|
34
|
+
sudo apt-get install --yes \
|
|
35
|
+
ffmpeg \
|
|
36
|
+
libdbus-1-3 \
|
|
37
|
+
libegl1 \
|
|
38
|
+
libfontconfig1 \
|
|
39
|
+
libgl1 \
|
|
40
|
+
libx11-xcb1 \
|
|
41
|
+
libxcb-cursor0 \
|
|
42
|
+
libxcb-icccm4 \
|
|
43
|
+
libxcb-keysyms1 \
|
|
44
|
+
libxcb-randr0 \
|
|
45
|
+
libxcb-render-util0 \
|
|
46
|
+
libxcb-shape0 \
|
|
47
|
+
libxcb-xinerama0 \
|
|
48
|
+
libxcb-xkb1 \
|
|
49
|
+
libxkbcommon-x11-0
|
|
50
|
+
- name: Install Windows FFmpeg
|
|
51
|
+
if: runner.os == 'Windows'
|
|
52
|
+
run: choco install ffmpeg --yes --no-progress
|
|
53
|
+
- name: Install Python preview dependencies
|
|
54
|
+
run: python -m pip install -e ".[dev]" -e "./pandrator_installer[gui]" build
|
|
55
|
+
- name: Install frontend dependencies
|
|
56
|
+
run: npm ci --prefix web
|
|
57
|
+
- name: Check generated API contract
|
|
58
|
+
shell: bash
|
|
59
|
+
run: |
|
|
60
|
+
python scripts/generate_web_contract.py
|
|
61
|
+
npm --prefix web run generate-api
|
|
62
|
+
git diff --exit-code -- openapi.json web/src/lib/api.generated.ts
|
|
63
|
+
- name: Check and build frontend
|
|
64
|
+
run: |
|
|
65
|
+
npm --prefix web run check
|
|
66
|
+
npm --prefix web run build
|
|
67
|
+
- name: Run Python tests
|
|
68
|
+
run: python -m pytest -q tests
|
|
69
|
+
- name: Install Playwright browsers
|
|
70
|
+
run: npx --prefix web playwright install chromium firefox
|
|
71
|
+
- name: Run Chromium and Firefox workflows
|
|
72
|
+
run: npm --prefix web run test:e2e
|
|
73
|
+
- name: Build Pandrator and installer wheels
|
|
74
|
+
run: |
|
|
75
|
+
python -m build
|
|
76
|
+
python -m build pandrator_installer
|
|
77
|
+
- uses: actions/upload-artifact@v4
|
|
78
|
+
with:
|
|
79
|
+
name: pandrator-web-preview-${{ matrix.os }}
|
|
80
|
+
path: |
|
|
81
|
+
dist/*.whl
|
|
82
|
+
pandrator_installer/dist/*.whl
|
|
83
|
+
if-no-files-found: error
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Python bytecode and caches
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyd
|
|
5
|
+
|
|
6
|
+
# Virtual environments
|
|
7
|
+
.venv/
|
|
8
|
+
venv/
|
|
9
|
+
env/
|
|
10
|
+
ENV/
|
|
11
|
+
conda/
|
|
12
|
+
|
|
13
|
+
# Build and packaging artifacts
|
|
14
|
+
build/
|
|
15
|
+
dist/
|
|
16
|
+
/manager-dist*/
|
|
17
|
+
/*.whl
|
|
18
|
+
.release_blocks/
|
|
19
|
+
.release_staging/
|
|
20
|
+
.release_sources/
|
|
21
|
+
release_packages/
|
|
22
|
+
package_release/
|
|
23
|
+
.appimage-tools/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.eggs/
|
|
26
|
+
pip-wheel-metadata/
|
|
27
|
+
*.spec
|
|
28
|
+
!pandrator_installer_launcher.spec
|
|
29
|
+
!pandrator_installer_launcher_linux.spec
|
|
30
|
+
!pandrator_manager_bootstrap.spec
|
|
31
|
+
|
|
32
|
+
# Test and tooling caches
|
|
33
|
+
.pytest_cache/
|
|
34
|
+
.mypy_cache/
|
|
35
|
+
.ruff_cache/
|
|
36
|
+
.pyre/
|
|
37
|
+
.hypothesis/
|
|
38
|
+
.tox/
|
|
39
|
+
.nox/
|
|
40
|
+
graphify-out/
|
|
41
|
+
.pixi/
|
|
42
|
+
.pixi-cache/
|
|
43
|
+
.pixi-home/
|
|
44
|
+
.coverage
|
|
45
|
+
.coverage.*
|
|
46
|
+
htmlcov/
|
|
47
|
+
web/node_modules/
|
|
48
|
+
web/.svelte-kit/
|
|
49
|
+
|
|
50
|
+
# Runtime data
|
|
51
|
+
Outputs/
|
|
52
|
+
rvc_models/
|
|
53
|
+
logs/*
|
|
54
|
+
!logs/.gitkeep
|
|
55
|
+
*.log
|
|
56
|
+
*.tmp
|
|
57
|
+
pandrator_settings.json
|
|
58
|
+
pandrator_state.sqlite3
|
|
59
|
+
pandrator_state.sqlite3.*
|
|
60
|
+
pandrator_state.sqlite3-*
|
|
61
|
+
pandrator.sqlite3
|
|
62
|
+
pandrator.sqlite3.*
|
|
63
|
+
pandrator.sqlite3-*
|
|
64
|
+
migration-web-v1.json
|
|
65
|
+
|
|
66
|
+
# User-provided voices (keep repository samples)
|
|
67
|
+
tts_voices/**/*.wav
|
|
68
|
+
tts_voices/voice_library.json
|
|
69
|
+
!tts_voices/sample_male_new.wav
|
|
70
|
+
!tts_voices/VoiceCraft/sample_male_16k.wav
|
|
71
|
+
|
|
72
|
+
# Local environment files
|
|
73
|
+
.env
|
|
74
|
+
.env.*
|
|
75
|
+
!.env.example
|
|
76
|
+
|
|
77
|
+
# Local planning, architecture, and qualification notes
|
|
78
|
+
*[Pp][Ll][Aa][Nn]*.md
|
|
79
|
+
/BACKEND_ARCHITECTURE.md
|
|
80
|
+
/FRONTEND_ARCHITECTURE.md
|
|
81
|
+
/INSTALLER_MANAGER_ARCHITECTURE.md
|
|
82
|
+
/AGENTIC_TEXT_AND_SPEECH.md
|
|
83
|
+
/FUTURE_TTS_OPTIMIZATION_NOTES.md
|
|
84
|
+
|
|
85
|
+
# Local development and research scratch files
|
|
86
|
+
/inspect_db.py
|
|
87
|
+
/test_hash_logic.py
|
|
88
|
+
/test_hashes.py
|
|
89
|
+
/scripts/tts_speech_plan_scratch/
|
|
90
|
+
|
|
91
|
+
# IDE and OS files
|
|
92
|
+
.vscode/
|
|
93
|
+
.idea/
|
|
94
|
+
.antigravity/
|
|
95
|
+
*.code-workspace
|
|
96
|
+
.DS_Store
|
|
97
|
+
Thumbs.db
|
|
98
|
+
desktop.ini
|
|
99
|
+
|
|
100
|
+
# Linux compatibility documentation (untracked locally)
|
|
101
|
+
LINUX_COMPATIBILITY.md
|
|
102
|
+
|
|
103
|
+
# Local documentation and qualification records
|
|
104
|
+
docs/
|
|
105
|
+
web/playwright-report/
|
|
106
|
+
web/test-results/
|
pandrator-0.6.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 Lukasz Liniewicz and contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|