truthound-dashboard 1.4.2__tar.gz → 1.5.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.
Files changed (775) hide show
  1. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/.gitignore +7 -0
  2. truthound_dashboard-1.5.1/PKG-INFO +312 -0
  3. truthound_dashboard-1.5.1/README.md +267 -0
  4. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/pyproject.toml +11 -6
  5. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/alerts.py +75 -86
  6. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/anomaly.py +7 -13
  7. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/cross_alerts.py +38 -52
  8. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/drift.py +49 -59
  9. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/drift_monitor.py +234 -79
  10. truthound_dashboard-1.5.1/src/truthound_dashboard/api/enterprise_sampling.py +498 -0
  11. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/history.py +57 -5
  12. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/lineage.py +3 -48
  13. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/maintenance.py +104 -49
  14. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/mask.py +1 -2
  15. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/middleware.py +2 -1
  16. truthound_dashboard-1.5.1/src/truthound_dashboard/api/model_monitoring.py +929 -0
  17. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/notifications.py +227 -191
  18. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/notifications_advanced.py +21 -20
  19. truthound_dashboard-1.5.1/src/truthound_dashboard/api/observability.py +586 -0
  20. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/plugins.py +2 -433
  21. truthound_dashboard-1.5.1/src/truthound_dashboard/api/profile.py +419 -0
  22. truthound_dashboard-1.5.1/src/truthound_dashboard/api/quality_reporter.py +701 -0
  23. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/reports.py +7 -16
  24. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/router.py +66 -0
  25. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/rule_suggestions.py +5 -5
  26. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/scan.py +17 -19
  27. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/schedules.py +85 -50
  28. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/schema_evolution.py +6 -6
  29. truthound_dashboard-1.5.1/src/truthound_dashboard/api/schema_watcher.py +667 -0
  30. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/sources.py +98 -27
  31. truthound_dashboard-1.5.1/src/truthound_dashboard/api/tiering.py +1323 -0
  32. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/triggers.py +14 -11
  33. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/validations.py +12 -11
  34. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/versioning.py +1 -6
  35. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/__init__.py +129 -3
  36. truthound_dashboard-1.5.1/src/truthound_dashboard/core/actions/__init__.py +62 -0
  37. truthound_dashboard-1.5.1/src/truthound_dashboard/core/actions/custom.py +426 -0
  38. truthound_dashboard-1.5.1/src/truthound_dashboard/core/actions/notifications.py +910 -0
  39. truthound_dashboard-1.5.1/src/truthound_dashboard/core/actions/storage.py +472 -0
  40. truthound_dashboard-1.5.1/src/truthound_dashboard/core/actions/webhook.py +281 -0
  41. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/anomaly.py +262 -67
  42. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/anomaly_explainer.py +4 -3
  43. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/__init__.py +67 -0
  44. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/base.py +299 -0
  45. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/errors.py +191 -0
  46. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/factory.py +423 -0
  47. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/mock_backend.py +451 -0
  48. truthound_dashboard-1.5.1/src/truthound_dashboard/core/backends/truthound_backend.py +718 -0
  49. truthound_dashboard-1.5.1/src/truthound_dashboard/core/checkpoint/__init__.py +87 -0
  50. truthound_dashboard-1.5.1/src/truthound_dashboard/core/checkpoint/adapters.py +814 -0
  51. truthound_dashboard-1.5.1/src/truthound_dashboard/core/checkpoint/checkpoint.py +491 -0
  52. truthound_dashboard-1.5.1/src/truthound_dashboard/core/checkpoint/runner.py +270 -0
  53. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/connections.py +645 -23
  54. truthound_dashboard-1.5.1/src/truthound_dashboard/core/converters/__init__.py +14 -0
  55. truthound_dashboard-1.5.1/src/truthound_dashboard/core/converters/truthound.py +620 -0
  56. truthound_dashboard-1.5.1/src/truthound_dashboard/core/cross_alerts.py +1057 -0
  57. truthound_dashboard-1.5.1/src/truthound_dashboard/core/datasource_factory.py +1672 -0
  58. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/drift_monitor.py +216 -20
  59. truthound_dashboard-1.5.1/src/truthound_dashboard/core/enterprise_sampling.py +1291 -0
  60. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/__init__.py +225 -0
  61. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/actions.py +652 -0
  62. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/base.py +247 -0
  63. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/checkpoint.py +676 -0
  64. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/protocols.py +664 -0
  65. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/reporters.py +650 -0
  66. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/routing.py +646 -0
  67. truthound_dashboard-1.5.1/src/truthound_dashboard/core/interfaces/triggers.py +619 -0
  68. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/lineage.py +407 -71
  69. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/model_monitoring.py +431 -3
  70. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/base.py +4 -0
  71. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/channels.py +874 -0
  72. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/deduplication/__init__.py +109 -0
  73. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/deduplication/service.py +183 -0
  74. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/dispatcher.py +202 -11
  75. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/escalation/__init__.py +162 -0
  76. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/escalation/engine.py +239 -0
  77. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/routing/__init__.py +129 -0
  78. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/routing/engine.py +155 -0
  79. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/stats_aggregator.py +246 -1
  80. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/throttling/__init__.py +100 -0
  81. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/throttling/builder.py +173 -0
  82. truthound_dashboard-1.5.1/src/truthound_dashboard/core/notifications/truthound_adapter.py +842 -0
  83. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/phase5/collaboration.py +1 -1
  84. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/lifecycle/__init__.py +0 -13
  85. truthound_dashboard-1.5.1/src/truthound_dashboard/core/quality_reporter.py +1359 -0
  86. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/report_history.py +0 -6
  87. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/__init__.py +218 -0
  88. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/adapters.py +943 -0
  89. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/base.py +0 -3
  90. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/builtin/__init__.py +18 -0
  91. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/builtin/csv_reporter.py +111 -0
  92. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/builtin/html_reporter.py +270 -0
  93. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/builtin/json_reporter.py +127 -0
  94. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/compat.py +266 -0
  95. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/csv_reporter.py +2 -35
  96. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/factory.py +526 -0
  97. truthound_dashboard-1.5.1/src/truthound_dashboard/core/reporters/interfaces.py +745 -0
  98. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/registry.py +1 -10
  99. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/scheduler.py +165 -0
  100. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/schema_evolution.py +3 -3
  101. truthound_dashboard-1.5.1/src/truthound_dashboard/core/schema_watcher.py +1528 -0
  102. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/services.py +595 -76
  103. truthound_dashboard-1.5.1/src/truthound_dashboard/core/store_manager.py +810 -0
  104. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/streaming_anomaly.py +169 -4
  105. truthound_dashboard-1.5.1/src/truthound_dashboard/core/tiering.py +1309 -0
  106. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/triggers/evaluators.py +178 -8
  107. truthound_dashboard-1.5.1/src/truthound_dashboard/core/truthound_adapter.py +3497 -0
  108. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/unified_alerts.py +23 -20
  109. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/db/__init__.py +8 -0
  110. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/db/database.py +8 -2
  111. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/db/models.py +944 -25
  112. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/db/repository.py +2 -0
  113. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/main.py +15 -0
  114. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/__init__.py +177 -16
  115. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/base.py +44 -23
  116. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/collaboration.py +19 -6
  117. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/cross_alerts.py +19 -3
  118. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/drift.py +61 -55
  119. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/drift_monitor.py +67 -23
  120. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/enterprise_sampling.py +653 -0
  121. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/lineage.py +0 -33
  122. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/mask.py +10 -8
  123. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/model_monitoring.py +89 -10
  124. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/notifications_advanced.py +13 -0
  125. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/observability.py +453 -0
  126. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/plugins.py +0 -280
  127. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/profile.py +427 -0
  128. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/quality_reporter.py +403 -0
  129. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/reports.py +2 -2
  130. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/rule_suggestion.py +8 -1
  131. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/scan.py +4 -24
  132. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/schedule.py +11 -3
  133. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/schema_watcher.py +727 -0
  134. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/source.py +17 -2
  135. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/tiering.py +822 -0
  136. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/triggers.py +16 -0
  137. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/unified_alerts.py +7 -0
  138. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validation.py +0 -13
  139. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/base.py +41 -21
  140. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/business_rule_validators.py +244 -0
  141. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/localization_validators.py +273 -0
  142. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/ml_feature_validators.py +308 -0
  143. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/profiling_validators.py +275 -0
  144. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/referential_validators.py +312 -0
  145. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/registry.py +93 -8
  146. truthound_dashboard-1.5.1/src/truthound_dashboard/schemas/validators/timeseries_validators.py +389 -0
  147. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/versioning.py +1 -6
  148. {truthound_dashboard-1.4.2/frontend → truthound_dashboard-1.5.1/src/truthound_dashboard/static}/index.html +2 -1
  149. truthound_dashboard-1.4.2/.github/workflows/release.yml +0 -57
  150. truthound_dashboard-1.4.2/.github/workflows/trigger-docs.yml +0 -16
  151. truthound_dashboard-1.4.2/PKG-INFO +0 -505
  152. truthound_dashboard-1.4.2/README.md +0 -456
  153. truthound_dashboard-1.4.2/docs/advanced-features.md +0 -578
  154. truthound_dashboard-1.4.2/docs/api.md +0 -1572
  155. truthound_dashboard-1.4.2/docs/configuration.md +0 -388
  156. truthound_dashboard-1.4.2/docs/features.md +0 -860
  157. truthound_dashboard-1.4.2/docs/getting-started.md +0 -170
  158. truthound_dashboard-1.4.2/docs/index.md +0 -86
  159. truthound_dashboard-1.4.2/docs/internationalization.md +0 -624
  160. truthound_dashboard-1.4.2/e2e/package-lock.json +0 -78
  161. truthound_dashboard-1.4.2/e2e/package.json +0 -18
  162. truthound_dashboard-1.4.2/e2e/playwright.config.ts +0 -83
  163. truthound_dashboard-1.4.2/e2e/tests/activity.spec.ts +0 -815
  164. truthound_dashboard-1.4.2/e2e/tests/anomaly.spec.ts +0 -517
  165. truthound_dashboard-1.4.2/e2e/tests/dashboard.spec.ts +0 -36
  166. truthound_dashboard-1.4.2/e2e/tests/drift-monitoring.spec.ts +0 -747
  167. truthound_dashboard-1.4.2/e2e/tests/drift.spec.ts +0 -637
  168. truthound_dashboard-1.4.2/e2e/tests/language.spec.ts +0 -48
  169. truthound_dashboard-1.4.2/e2e/tests/lineage.spec.ts +0 -272
  170. truthound_dashboard-1.4.2/e2e/tests/maintenance.spec.ts +0 -971
  171. truthound_dashboard-1.4.2/e2e/tests/model-monitoring.spec.ts +0 -513
  172. truthound_dashboard-1.4.2/e2e/tests/notifications-advanced-deep.spec.ts +0 -478
  173. truthound_dashboard-1.4.2/e2e/tests/notifications-advanced.spec.ts +0 -638
  174. truthound_dashboard-1.4.2/e2e/tests/notifications.spec.ts +0 -528
  175. truthound_dashboard-1.4.2/e2e/tests/plugins.spec.ts +0 -1235
  176. truthound_dashboard-1.4.2/e2e/tests/privacy-new.spec.ts +0 -20
  177. truthound_dashboard-1.4.2/e2e/tests/privacy.spec.ts +0 -255
  178. truthound_dashboard-1.4.2/e2e/tests/reports.spec.ts +0 -785
  179. truthound_dashboard-1.4.2/e2e/tests/schedules.spec.ts +0 -985
  180. truthound_dashboard-1.4.2/e2e/tests/theme.spec.ts +0 -50
  181. truthound_dashboard-1.4.2/frontend/.env.development +0 -3
  182. truthound_dashboard-1.4.2/frontend/.env.mock +0 -3
  183. truthound_dashboard-1.4.2/frontend/.env.pip +0 -3
  184. truthound_dashboard-1.4.2/frontend/.eslintrc.cjs +0 -20
  185. truthound_dashboard-1.4.2/frontend/.gitignore +0 -1
  186. truthound_dashboard-1.4.2/frontend/intlayer.config.mjs +0 -23
  187. truthound_dashboard-1.4.2/frontend/package-lock.json +0 -11803
  188. truthound_dashboard-1.4.2/frontend/package.json +0 -91
  189. truthound_dashboard-1.4.2/frontend/postcss.config.js +0 -6
  190. truthound_dashboard-1.4.2/frontend/public/favicon.ico +0 -0
  191. truthound_dashboard-1.4.2/frontend/public/mockServiceWorker.js +0 -349
  192. truthound_dashboard-1.4.2/frontend/scripts/generate-fallbacks.mjs +0 -111
  193. truthound_dashboard-1.4.2/frontend/src/App.tsx +0 -87
  194. truthound_dashboard-1.4.2/frontend/src/api/client.ts +0 -6116
  195. truthound_dashboard-1.4.2/frontend/src/assets/logo.png +0 -0
  196. truthound_dashboard-1.4.2/frontend/src/components/AnimatedNumber.test.tsx +0 -144
  197. truthound_dashboard-1.4.2/frontend/src/components/AnimatedNumber.tsx +0 -86
  198. truthound_dashboard-1.4.2/frontend/src/components/ConfirmDialog.tsx +0 -131
  199. truthound_dashboard-1.4.2/frontend/src/components/GlassCard.test.tsx +0 -216
  200. truthound_dashboard-1.4.2/frontend/src/components/GlassCard.tsx +0 -93
  201. truthound_dashboard-1.4.2/frontend/src/components/Layout.tsx +0 -322
  202. truthound_dashboard-1.4.2/frontend/src/components/LoadingFallback.tsx +0 -39
  203. truthound_dashboard-1.4.2/frontend/src/components/ThemeToggle.tsx +0 -132
  204. truthound_dashboard-1.4.2/frontend/src/components/alerts/AlertCorrelation.tsx +0 -220
  205. truthound_dashboard-1.4.2/frontend/src/components/alerts/AlertSummaryCards.tsx +0 -305
  206. truthound_dashboard-1.4.2/frontend/src/components/alerts/UnifiedAlertList.tsx +0 -391
  207. truthound_dashboard-1.4.2/frontend/src/components/alerts/index.ts +0 -7
  208. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AlgorithmAgreement.tsx +0 -334
  209. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AlgorithmComparison.tsx +0 -263
  210. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AlgorithmConfigForm.tsx +0 -219
  211. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AlgorithmSelector.tsx +0 -95
  212. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AnomalyDetectionPanel.tsx +0 -344
  213. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AnomalyExplanation.tsx +0 -322
  214. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AnomalyHistoryList.tsx +0 -123
  215. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AnomalyResultsTable.tsx +0 -137
  216. truthound_dashboard-1.4.2/frontend/src/components/anomaly/AnomalyScoreChart.tsx +0 -85
  217. truthound_dashboard-1.4.2/frontend/src/components/anomaly/BatchDetectionDialog.tsx +0 -374
  218. truthound_dashboard-1.4.2/frontend/src/components/anomaly/BatchProgress.tsx +0 -273
  219. truthound_dashboard-1.4.2/frontend/src/components/anomaly/BatchResults.tsx +0 -341
  220. truthound_dashboard-1.4.2/frontend/src/components/anomaly/ColumnAnomalySummary.tsx +0 -78
  221. truthound_dashboard-1.4.2/frontend/src/components/anomaly/ComparisonChart.tsx +0 -252
  222. truthound_dashboard-1.4.2/frontend/src/components/anomaly/ComparisonResultsTable.tsx +0 -277
  223. truthound_dashboard-1.4.2/frontend/src/components/anomaly/ExplanationSummary.tsx +0 -134
  224. truthound_dashboard-1.4.2/frontend/src/components/anomaly/FeatureContributionChart.tsx +0 -154
  225. truthound_dashboard-1.4.2/frontend/src/components/anomaly/StreamingChart.tsx +0 -308
  226. truthound_dashboard-1.4.2/frontend/src/components/anomaly/StreamingControls.tsx +0 -268
  227. truthound_dashboard-1.4.2/frontend/src/components/anomaly/StreamingDashboard.tsx +0 -337
  228. truthound_dashboard-1.4.2/frontend/src/components/anomaly/index.ts +0 -16
  229. truthound_dashboard-1.4.2/frontend/src/components/catalog/AssetFormDialog.tsx +0 -207
  230. truthound_dashboard-1.4.2/frontend/src/components/catalog/ColumnMappingDialog.tsx +0 -105
  231. truthound_dashboard-1.4.2/frontend/src/components/collaboration/ActivityFeed.tsx +0 -170
  232. truthound_dashboard-1.4.2/frontend/src/components/collaboration/Comments.tsx +0 -355
  233. truthound_dashboard-1.4.2/frontend/src/components/common/CodeEditor.tsx +0 -355
  234. truthound_dashboard-1.4.2/frontend/src/components/common/LanguageSelector.tsx +0 -153
  235. truthound_dashboard-1.4.2/frontend/src/components/common/index.ts +0 -6
  236. truthound_dashboard-1.4.2/frontend/src/components/cross-alerts/AutoTriggerConfig.tsx +0 -389
  237. truthound_dashboard-1.4.2/frontend/src/components/cross-alerts/CorrelatedAlerts.tsx +0 -347
  238. truthound_dashboard-1.4.2/frontend/src/components/cross-alerts/CrossAlertCard.tsx +0 -299
  239. truthound_dashboard-1.4.2/frontend/src/components/cross-alerts/index.ts +0 -7
  240. truthound_dashboard-1.4.2/frontend/src/components/drift/ChunkedProgress.tsx +0 -313
  241. truthound_dashboard-1.4.2/frontend/src/components/drift/ColumnDistributionChart.tsx +0 -218
  242. truthound_dashboard-1.4.2/frontend/src/components/drift/ColumnDistributionComparison.tsx +0 -249
  243. truthound_dashboard-1.4.2/frontend/src/components/drift/ColumnDriftCard.tsx +0 -176
  244. truthound_dashboard-1.4.2/frontend/src/components/drift/ColumnDrilldown.tsx +0 -384
  245. truthound_dashboard-1.4.2/frontend/src/components/drift/ColumnStatistics.tsx +0 -146
  246. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftAlertList.tsx +0 -213
  247. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftConfigPanel.tsx +0 -515
  248. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftMethodSelector.tsx +0 -416
  249. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftMonitorForm.tsx +0 -502
  250. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftMonitorList.tsx +0 -233
  251. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftMonitorStats.tsx +0 -115
  252. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftPreview.tsx +0 -323
  253. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftPreviewResults.tsx +0 -298
  254. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftScoreGauge.tsx +0 -129
  255. truthound_dashboard-1.4.2/frontend/src/components/drift/DriftTrendChart.tsx +0 -176
  256. truthound_dashboard-1.4.2/frontend/src/components/drift/LargeDatasetWarning.tsx +0 -204
  257. truthound_dashboard-1.4.2/frontend/src/components/drift/RemediationPanel.tsx +0 -303
  258. truthound_dashboard-1.4.2/frontend/src/components/drift/RootCauseAnalysis.tsx +0 -521
  259. truthound_dashboard-1.4.2/frontend/src/components/drift/SamplingConfig.tsx +0 -360
  260. truthound_dashboard-1.4.2/frontend/src/components/drift/index.ts +0 -47
  261. truthound_dashboard-1.4.2/frontend/src/components/glossary/TermFormDialog.tsx +0 -208
  262. truthound_dashboard-1.4.2/frontend/src/components/lineage/AnomalyImpactPath.tsx +0 -257
  263. truthound_dashboard-1.4.2/frontend/src/components/lineage/AnomalyLegend.tsx +0 -301
  264. truthound_dashboard-1.4.2/frontend/src/components/lineage/AnomalyOverlayNode.tsx +0 -257
  265. truthound_dashboard-1.4.2/frontend/src/components/lineage/ColumnImpactAnalysis.tsx +0 -336
  266. truthound_dashboard-1.4.2/frontend/src/components/lineage/ColumnLineageEdge.tsx +0 -215
  267. truthound_dashboard-1.4.2/frontend/src/components/lineage/ColumnLineagePanel.tsx +0 -254
  268. truthound_dashboard-1.4.2/frontend/src/components/lineage/ColumnMappingTable.tsx +0 -321
  269. truthound_dashboard-1.4.2/frontend/src/components/lineage/CytoscapeLineageGraph.tsx +0 -323
  270. truthound_dashboard-1.4.2/frontend/src/components/lineage/ImpactAnalysisPanel.tsx +0 -144
  271. truthound_dashboard-1.4.2/frontend/src/components/lineage/LazyLineageNode.tsx +0 -215
  272. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageCluster.tsx +0 -165
  273. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageControls.tsx +0 -84
  274. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageEdge.tsx +0 -88
  275. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageExportPanel.tsx +0 -279
  276. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageGraph.tsx +0 -479
  277. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageMinimap.tsx +0 -265
  278. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageNode.tsx +0 -342
  279. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageNodeDetails.tsx +0 -417
  280. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageRendererSelector.tsx +0 -105
  281. truthound_dashboard-1.4.2/frontend/src/components/lineage/LineageToolbar.tsx +0 -160
  282. truthound_dashboard-1.4.2/frontend/src/components/lineage/MermaidLineageGraph.tsx +0 -331
  283. truthound_dashboard-1.4.2/frontend/src/components/lineage/OpenLineageConfig.tsx +0 -396
  284. truthound_dashboard-1.4.2/frontend/src/components/lineage/OpenLineageExport.tsx +0 -441
  285. truthound_dashboard-1.4.2/frontend/src/components/lineage/VirtualizedLineageGraph.tsx +0 -353
  286. truthound_dashboard-1.4.2/frontend/src/components/lineage/WebhookForm.tsx +0 -283
  287. truthound_dashboard-1.4.2/frontend/src/components/lineage/WebhookStatus.tsx +0 -134
  288. truthound_dashboard-1.4.2/frontend/src/components/lineage/column-lineage-types.ts +0 -102
  289. truthound_dashboard-1.4.2/frontend/src/components/lineage/index.ts +0 -58
  290. truthound_dashboard-1.4.2/frontend/src/components/maintenance/MaintenanceSettings.tsx +0 -452
  291. truthound_dashboard-1.4.2/frontend/src/components/maintenance/index.ts +0 -5
  292. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/AlertHandlerList.tsx +0 -238
  293. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/AlertList.tsx +0 -162
  294. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/AlertRuleList.tsx +0 -169
  295. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/MetricsChart.tsx +0 -187
  296. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/ModelDashboard.tsx +0 -399
  297. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/ModelHealthIndicator.tsx +0 -178
  298. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/ModelList.tsx +0 -195
  299. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/ModelMetricsChart.tsx +0 -283
  300. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/MonitoringOverviewStats.tsx +0 -132
  301. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/RegisterModelDialog.tsx +0 -397
  302. truthound_dashboard-1.4.2/frontend/src/components/model-monitoring/index.ts +0 -20
  303. truthound_dashboard-1.4.2/frontend/src/components/notifications/BulkActionBar.tsx +0 -587
  304. truthound_dashboard-1.4.2/frontend/src/components/notifications/ChannelConfigForm.tsx +0 -881
  305. truthound_dashboard-1.4.2/frontend/src/components/notifications/ConfigImportExport.tsx +0 -716
  306. truthound_dashboard-1.4.2/frontend/src/components/notifications/DeduplicationTab.tsx +0 -575
  307. truthound_dashboard-1.4.2/frontend/src/components/notifications/EscalationLevelBuilder.tsx +0 -777
  308. truthound_dashboard-1.4.2/frontend/src/components/notifications/EscalationTab.tsx +0 -824
  309. truthound_dashboard-1.4.2/frontend/src/components/notifications/EscalationTimeline.tsx +0 -600
  310. truthound_dashboard-1.4.2/frontend/src/components/notifications/ExpressionRuleEditor.tsx +0 -900
  311. truthound_dashboard-1.4.2/frontend/src/components/notifications/IncidentDetailDialog.tsx +0 -818
  312. truthound_dashboard-1.4.2/frontend/src/components/notifications/Jinja2RuleEditor.tsx +0 -975
  313. truthound_dashboard-1.4.2/frontend/src/components/notifications/RoutingRulesTab.tsx +0 -722
  314. truthound_dashboard-1.4.2/frontend/src/components/notifications/RuleBuilder.tsx +0 -1647
  315. truthound_dashboard-1.4.2/frontend/src/components/notifications/RuleTestPanel.tsx +0 -455
  316. truthound_dashboard-1.4.2/frontend/src/components/notifications/SchedulerControlPanel.tsx +0 -446
  317. truthound_dashboard-1.4.2/frontend/src/components/notifications/StrategyGuide.tsx +0 -490
  318. truthound_dashboard-1.4.2/frontend/src/components/notifications/TemplateLibrary.tsx +0 -671
  319. truthound_dashboard-1.4.2/frontend/src/components/notifications/ThrottlingTab.tsx +0 -584
  320. truthound_dashboard-1.4.2/frontend/src/components/notifications/TimeWindowPicker.tsx +0 -647
  321. truthound_dashboard-1.4.2/frontend/src/components/notifications/WebSocketStatus.tsx +0 -222
  322. truthound_dashboard-1.4.2/frontend/src/components/notifications/__tests__/ChannelConfigForm.test.tsx +0 -478
  323. truthound_dashboard-1.4.2/frontend/src/components/notifications/__tests__/DeduplicationTab.test.tsx +0 -310
  324. truthound_dashboard-1.4.2/frontend/src/components/notifications/__tests__/EscalationTab.test.tsx +0 -315
  325. truthound_dashboard-1.4.2/frontend/src/components/notifications/__tests__/RuleBuilder.test.tsx +0 -320
  326. truthound_dashboard-1.4.2/frontend/src/components/notifications/index.ts +0 -92
  327. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginDependencyGraph.tsx +0 -401
  328. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginDetailDialog.tsx +0 -471
  329. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginHooksPanel.tsx +0 -697
  330. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginInstallProgress.tsx +0 -377
  331. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginLifecyclePanel.tsx +0 -641
  332. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginSecurityPanel.tsx +0 -734
  333. truthound_dashboard-1.4.2/frontend/src/components/plugins/PluginSettingsTab.tsx +0 -965
  334. truthound_dashboard-1.4.2/frontend/src/components/plugins/ReporterConfigForm.tsx +0 -340
  335. truthound_dashboard-1.4.2/frontend/src/components/plugins/ReporterEditorDialog.tsx +0 -496
  336. truthound_dashboard-1.4.2/frontend/src/components/plugins/ReporterPreviewPanel.tsx +0 -331
  337. truthound_dashboard-1.4.2/frontend/src/components/plugins/ValidatorEditorDialog.tsx +0 -515
  338. truthound_dashboard-1.4.2/frontend/src/components/plugins/ValidatorParamForm.tsx +0 -373
  339. truthound_dashboard-1.4.2/frontend/src/components/plugins/ValidatorTestPanel.tsx +0 -359
  340. truthound_dashboard-1.4.2/frontend/src/components/plugins/index.ts +0 -29
  341. truthound_dashboard-1.4.2/frontend/src/components/plugins/types.ts +0 -171
  342. truthound_dashboard-1.4.2/frontend/src/components/privacy/MaskingPanel.tsx +0 -234
  343. truthound_dashboard-1.4.2/frontend/src/components/privacy/MaskingStrategySelector.tsx +0 -115
  344. truthound_dashboard-1.4.2/frontend/src/components/privacy/PIIFindingsTable.tsx +0 -144
  345. truthound_dashboard-1.4.2/frontend/src/components/privacy/PIIScanPanel.tsx +0 -284
  346. truthound_dashboard-1.4.2/frontend/src/components/privacy/PrivacyStats.tsx +0 -82
  347. truthound_dashboard-1.4.2/frontend/src/components/privacy/ScanHistoryList.tsx +0 -138
  348. truthound_dashboard-1.4.2/frontend/src/components/privacy/index.ts +0 -12
  349. truthound_dashboard-1.4.2/frontend/src/components/profile/PatternDetectionPanel.tsx +0 -299
  350. truthound_dashboard-1.4.2/frontend/src/components/profile/PatternResultsDisplay.tsx +0 -419
  351. truthound_dashboard-1.4.2/frontend/src/components/profile/ProfileComparisonTable.tsx +0 -225
  352. truthound_dashboard-1.4.2/frontend/src/components/profile/ProfileTrendChart.tsx +0 -229
  353. truthound_dashboard-1.4.2/frontend/src/components/profile/ProfileVersionSelector.tsx +0 -251
  354. truthound_dashboard-1.4.2/frontend/src/components/profile/SamplingConfigPanel.tsx +0 -395
  355. truthound_dashboard-1.4.2/frontend/src/components/profile/index.ts +0 -34
  356. truthound_dashboard-1.4.2/frontend/src/components/reports/CustomReporterManagement.tsx +0 -381
  357. truthound_dashboard-1.4.2/frontend/src/components/reports/CustomReporterSection.tsx +0 -381
  358. truthound_dashboard-1.4.2/frontend/src/components/reports/ReportDownloadButton.tsx +0 -248
  359. truthound_dashboard-1.4.2/frontend/src/components/reports/index.ts +0 -7
  360. truthound_dashboard-1.4.2/frontend/src/components/rules/CrossColumnRuleCard.tsx +0 -350
  361. truthound_dashboard-1.4.2/frontend/src/components/rules/RuleSuggestionCard.tsx +0 -122
  362. truthound_dashboard-1.4.2/frontend/src/components/rules/RuleSuggestionDialog.tsx +0 -615
  363. truthound_dashboard-1.4.2/frontend/src/components/rules/index.ts +0 -2
  364. truthound_dashboard-1.4.2/frontend/src/components/schema/SchemaChangeCard.tsx +0 -107
  365. truthound_dashboard-1.4.2/frontend/src/components/schema/SchemaDiffViewer.tsx +0 -406
  366. truthound_dashboard-1.4.2/frontend/src/components/schema/SchemaEvolutionTimeline.tsx +0 -250
  367. truthound_dashboard-1.4.2/frontend/src/components/schema/SchemaVersionCompare.tsx +0 -264
  368. truthound_dashboard-1.4.2/frontend/src/components/schema/index.ts +0 -13
  369. truthound_dashboard-1.4.2/frontend/src/components/sources/AddSourceDialog.tsx +0 -533
  370. truthound_dashboard-1.4.2/frontend/src/components/sources/DynamicSourceForm.tsx +0 -255
  371. truthound_dashboard-1.4.2/frontend/src/components/sources/EditSourceDialog.tsx +0 -486
  372. truthound_dashboard-1.4.2/frontend/src/components/sources/SourceTypeSelector.tsx +0 -141
  373. truthound_dashboard-1.4.2/frontend/src/components/sources/index.ts +0 -8
  374. truthound_dashboard-1.4.2/frontend/src/components/theme-provider.tsx +0 -74
  375. truthound_dashboard-1.4.2/frontend/src/components/triggers/CompositeTriggerForm.tsx +0 -350
  376. truthound_dashboard-1.4.2/frontend/src/components/triggers/CronTriggerForm.tsx +0 -237
  377. truthound_dashboard-1.4.2/frontend/src/components/triggers/DataChangeTriggerForm.tsx +0 -244
  378. truthound_dashboard-1.4.2/frontend/src/components/triggers/IntervalTriggerForm.tsx +0 -176
  379. truthound_dashboard-1.4.2/frontend/src/components/triggers/TriggerBuilder.tsx +0 -483
  380. truthound_dashboard-1.4.2/frontend/src/components/triggers/TriggerPreview.tsx +0 -297
  381. truthound_dashboard-1.4.2/frontend/src/components/triggers/TriggerTypeSelector.tsx +0 -106
  382. truthound_dashboard-1.4.2/frontend/src/components/triggers/index.ts +0 -19
  383. truthound_dashboard-1.4.2/frontend/src/components/ui/accordion.tsx +0 -58
  384. truthound_dashboard-1.4.2/frontend/src/components/ui/alert-dialog.tsx +0 -139
  385. truthound_dashboard-1.4.2/frontend/src/components/ui/alert.tsx +0 -59
  386. truthound_dashboard-1.4.2/frontend/src/components/ui/badge.tsx +0 -49
  387. truthound_dashboard-1.4.2/frontend/src/components/ui/button.tsx +0 -57
  388. truthound_dashboard-1.4.2/frontend/src/components/ui/card.tsx +0 -79
  389. truthound_dashboard-1.4.2/frontend/src/components/ui/checkbox.tsx +0 -30
  390. truthound_dashboard-1.4.2/frontend/src/components/ui/collapsible.tsx +0 -15
  391. truthound_dashboard-1.4.2/frontend/src/components/ui/dialog.tsx +0 -120
  392. truthound_dashboard-1.4.2/frontend/src/components/ui/dropdown-menu.tsx +0 -198
  393. truthound_dashboard-1.4.2/frontend/src/components/ui/input.tsx +0 -25
  394. truthound_dashboard-1.4.2/frontend/src/components/ui/label.tsx +0 -24
  395. truthound_dashboard-1.4.2/frontend/src/components/ui/popover.tsx +0 -31
  396. truthound_dashboard-1.4.2/frontend/src/components/ui/progress.tsx +0 -25
  397. truthound_dashboard-1.4.2/frontend/src/components/ui/radio-group.tsx +0 -48
  398. truthound_dashboard-1.4.2/frontend/src/components/ui/scroll-area.tsx +0 -46
  399. truthound_dashboard-1.4.2/frontend/src/components/ui/select.tsx +0 -158
  400. truthound_dashboard-1.4.2/frontend/src/components/ui/separator.tsx +0 -29
  401. truthound_dashboard-1.4.2/frontend/src/components/ui/sheet.tsx +0 -138
  402. truthound_dashboard-1.4.2/frontend/src/components/ui/slider.tsx +0 -25
  403. truthound_dashboard-1.4.2/frontend/src/components/ui/switch.tsx +0 -27
  404. truthound_dashboard-1.4.2/frontend/src/components/ui/table.tsx +0 -117
  405. truthound_dashboard-1.4.2/frontend/src/components/ui/tabs.tsx +0 -52
  406. truthound_dashboard-1.4.2/frontend/src/components/ui/textarea.tsx +0 -24
  407. truthound_dashboard-1.4.2/frontend/src/components/ui/toast.tsx +0 -127
  408. truthound_dashboard-1.4.2/frontend/src/components/ui/toaster.tsx +0 -33
  409. truthound_dashboard-1.4.2/frontend/src/components/ui/tooltip.tsx +0 -30
  410. truthound_dashboard-1.4.2/frontend/src/components/validators/CustomValidatorCard.tsx +0 -303
  411. truthound_dashboard-1.4.2/frontend/src/components/validators/ValidatorConfigCard.tsx +0 -138
  412. truthound_dashboard-1.4.2/frontend/src/components/validators/ValidatorParamInput.tsx +0 -329
  413. truthound_dashboard-1.4.2/frontend/src/components/validators/ValidatorSelector.tsx +0 -652
  414. truthound_dashboard-1.4.2/frontend/src/components/validators/index.ts +0 -13
  415. truthound_dashboard-1.4.2/frontend/src/components/versioning/VersionCompare.tsx +0 -375
  416. truthound_dashboard-1.4.2/frontend/src/components/versioning/VersionTimeline.tsx +0 -148
  417. truthound_dashboard-1.4.2/frontend/src/components/versioning/index.ts +0 -6
  418. truthound_dashboard-1.4.2/frontend/src/content/alerts.content.ts +0 -191
  419. truthound_dashboard-1.4.2/frontend/src/content/anomaly.content.ts +0 -462
  420. truthound_dashboard-1.4.2/frontend/src/content/catalog.content.ts +0 -118
  421. truthound_dashboard-1.4.2/frontend/src/content/collaboration.content.ts +0 -69
  422. truthound_dashboard-1.4.2/frontend/src/content/common.content.ts +0 -780
  423. truthound_dashboard-1.4.2/frontend/src/content/cross-alerts.content.ts +0 -170
  424. truthound_dashboard-1.4.2/frontend/src/content/dashboard.content.ts +0 -84
  425. truthound_dashboard-1.4.2/frontend/src/content/drift-monitor.content.ts +0 -469
  426. truthound_dashboard-1.4.2/frontend/src/content/drift.content.ts +0 -235
  427. truthound_dashboard-1.4.2/frontend/src/content/errors.content.ts +0 -135
  428. truthound_dashboard-1.4.2/frontend/src/content/glossary.content.ts +0 -105
  429. truthound_dashboard-1.4.2/frontend/src/content/index.ts +0 -21
  430. truthound_dashboard-1.4.2/frontend/src/content/lineage.content.ts +0 -488
  431. truthound_dashboard-1.4.2/frontend/src/content/maintenance.content.ts +0 -99
  432. truthound_dashboard-1.4.2/frontend/src/content/model-monitoring.content.ts +0 -245
  433. truthound_dashboard-1.4.2/frontend/src/content/nav.content.ts +0 -478
  434. truthound_dashboard-1.4.2/frontend/src/content/notifications-advanced.content.ts +0 -866
  435. truthound_dashboard-1.4.2/frontend/src/content/notifications.content.ts +0 -360
  436. truthound_dashboard-1.4.2/frontend/src/content/plugins.content.ts +0 -486
  437. truthound_dashboard-1.4.2/frontend/src/content/privacy.content.ts +0 -181
  438. truthound_dashboard-1.4.2/frontend/src/content/profile-comparison.content.ts +0 -124
  439. truthound_dashboard-1.4.2/frontend/src/content/profiler.content.ts +0 -265
  440. truthound_dashboard-1.4.2/frontend/src/content/reports.content.ts +0 -185
  441. truthound_dashboard-1.4.2/frontend/src/content/rule-suggestions.content.ts +0 -364
  442. truthound_dashboard-1.4.2/frontend/src/content/schedules.content.ts +0 -124
  443. truthound_dashboard-1.4.2/frontend/src/content/schema-evolution.content.ts +0 -99
  444. truthound_dashboard-1.4.2/frontend/src/content/settings.content.ts +0 -30
  445. truthound_dashboard-1.4.2/frontend/src/content/sources.content.ts +0 -239
  446. truthound_dashboard-1.4.2/frontend/src/content/triggers.content.ts +0 -134
  447. truthound_dashboard-1.4.2/frontend/src/content/validation.content.ts +0 -70
  448. truthound_dashboard-1.4.2/frontend/src/content/validators.content.ts +0 -230
  449. truthound_dashboard-1.4.2/frontend/src/content/versioning.content.ts +0 -206
  450. truthound_dashboard-1.4.2/frontend/src/hooks/use-api.ts +0 -104
  451. truthound_dashboard-1.4.2/frontend/src/hooks/use-toast.ts +0 -186
  452. truthound_dashboard-1.4.2/frontend/src/hooks/useLineagePerformance.ts +0 -232
  453. truthound_dashboard-1.4.2/frontend/src/hooks/useSafeIntlayer.ts +0 -90
  454. truthound_dashboard-1.4.2/frontend/src/hooks/useStreamingAnomaly.ts +0 -293
  455. truthound_dashboard-1.4.2/frontend/src/hooks/useWebSocket.ts +0 -389
  456. truthound_dashboard-1.4.2/frontend/src/index.css +0 -106
  457. truthound_dashboard-1.4.2/frontend/src/lib/__tests__/lineage-performance.test.ts +0 -643
  458. truthound_dashboard-1.4.2/frontend/src/lib/intlayer-fallbacks.ts +0 -2908
  459. truthound_dashboard-1.4.2/frontend/src/lib/intlayer-utils.ts +0 -81
  460. truthound_dashboard-1.4.2/frontend/src/lib/lineage-performance.ts +0 -630
  461. truthound_dashboard-1.4.2/frontend/src/lib/lineage-utils.ts +0 -457
  462. truthound_dashboard-1.4.2/frontend/src/lib/utils.ts +0 -131
  463. truthound_dashboard-1.4.2/frontend/src/main.tsx +0 -33
  464. truthound_dashboard-1.4.2/frontend/src/mocks/__tests__/phase5-e2e.test.ts +0 -1197
  465. truthound_dashboard-1.4.2/frontend/src/mocks/browser.ts +0 -29
  466. truthound_dashboard-1.4.2/frontend/src/mocks/data/store.ts +0 -435
  467. truthound_dashboard-1.4.2/frontend/src/mocks/factories/anomaly.ts +0 -438
  468. truthound_dashboard-1.4.2/frontend/src/mocks/factories/base.ts +0 -61
  469. truthound_dashboard-1.4.2/frontend/src/mocks/factories/catalog.test.ts +0 -193
  470. truthound_dashboard-1.4.2/frontend/src/mocks/factories/catalog.ts +0 -293
  471. truthound_dashboard-1.4.2/frontend/src/mocks/factories/collaboration.test.ts +0 -176
  472. truthound_dashboard-1.4.2/frontend/src/mocks/factories/collaboration.ts +0 -237
  473. truthound_dashboard-1.4.2/frontend/src/mocks/factories/drift.ts +0 -433
  474. truthound_dashboard-1.4.2/frontend/src/mocks/factories/glossary.test.ts +0 -143
  475. truthound_dashboard-1.4.2/frontend/src/mocks/factories/glossary.ts +0 -318
  476. truthound_dashboard-1.4.2/frontend/src/mocks/factories/history.ts +0 -156
  477. truthound_dashboard-1.4.2/frontend/src/mocks/factories/index.ts +0 -27
  478. truthound_dashboard-1.4.2/frontend/src/mocks/factories/lineage.ts +0 -363
  479. truthound_dashboard-1.4.2/frontend/src/mocks/factories/mask.ts +0 -198
  480. truthound_dashboard-1.4.2/frontend/src/mocks/factories/model-monitoring.ts +0 -479
  481. truthound_dashboard-1.4.2/frontend/src/mocks/factories/notifications-advanced.ts +0 -691
  482. truthound_dashboard-1.4.2/frontend/src/mocks/factories/notifications.ts +0 -927
  483. truthound_dashboard-1.4.2/frontend/src/mocks/factories/plugins.ts +0 -693
  484. truthound_dashboard-1.4.2/frontend/src/mocks/factories/profile-comparison.ts +0 -328
  485. truthound_dashboard-1.4.2/frontend/src/mocks/factories/profile.ts +0 -474
  486. truthound_dashboard-1.4.2/frontend/src/mocks/factories/reports.ts +0 -216
  487. truthound_dashboard-1.4.2/frontend/src/mocks/factories/rule-suggestions.ts +0 -1113
  488. truthound_dashboard-1.4.2/frontend/src/mocks/factories/scan.ts +0 -420
  489. truthound_dashboard-1.4.2/frontend/src/mocks/factories/schedules.ts +0 -501
  490. truthound_dashboard-1.4.2/frontend/src/mocks/factories/schema-evolution.ts +0 -186
  491. truthound_dashboard-1.4.2/frontend/src/mocks/factories/schemas.ts +0 -247
  492. truthound_dashboard-1.4.2/frontend/src/mocks/factories/sources.ts +0 -262
  493. truthound_dashboard-1.4.2/frontend/src/mocks/factories/validations.ts +0 -464
  494. truthound_dashboard-1.4.2/frontend/src/mocks/factories/validators.ts +0 -917
  495. truthound_dashboard-1.4.2/frontend/src/mocks/factories/versioning.ts +0 -124
  496. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/alerts.ts +0 -505
  497. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/anomaly.ts +0 -1314
  498. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/catalog.ts +0 -433
  499. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/collaboration.ts +0 -180
  500. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/cross-alerts.ts +0 -384
  501. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/drift.ts +0 -1391
  502. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/glossary.ts +0 -384
  503. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/health.ts +0 -20
  504. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/history.ts +0 -37
  505. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/index.ts +0 -67
  506. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/lineage.ts +0 -1304
  507. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/maintenance.ts +0 -150
  508. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/mask.ts +0 -149
  509. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/model-monitoring.ts +0 -721
  510. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/notifications-advanced.ts +0 -1521
  511. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/notifications.ts +0 -552
  512. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/plugins.ts +0 -1301
  513. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/profile.ts +0 -256
  514. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/report-history.ts +0 -304
  515. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/reports.ts +0 -419
  516. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/rule-suggestions.ts +0 -611
  517. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/rules.ts +0 -266
  518. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/scan.ts +0 -140
  519. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/schedules.ts +0 -287
  520. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/schema-evolution.ts +0 -177
  521. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/schemas.ts +0 -176
  522. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/sources.ts +0 -456
  523. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/triggers.ts +0 -310
  524. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/validations.ts +0 -166
  525. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/validators.ts +0 -2508
  526. truthound_dashboard-1.4.2/frontend/src/mocks/handlers/versioning.ts +0 -279
  527. truthound_dashboard-1.4.2/frontend/src/mocks/index.ts +0 -8
  528. truthound_dashboard-1.4.2/frontend/src/pages/Activity.tsx +0 -131
  529. truthound_dashboard-1.4.2/frontend/src/pages/Alerts.tsx +0 -555
  530. truthound_dashboard-1.4.2/frontend/src/pages/Anomaly.tsx +0 -596
  531. truthound_dashboard-1.4.2/frontend/src/pages/Catalog.tsx +0 -277
  532. truthound_dashboard-1.4.2/frontend/src/pages/CatalogDetail.tsx +0 -399
  533. truthound_dashboard-1.4.2/frontend/src/pages/Dashboard.test.tsx +0 -570
  534. truthound_dashboard-1.4.2/frontend/src/pages/Dashboard.tsx +0 -269
  535. truthound_dashboard-1.4.2/frontend/src/pages/Drift.tsx +0 -452
  536. truthound_dashboard-1.4.2/frontend/src/pages/DriftMonitoring.tsx +0 -712
  537. truthound_dashboard-1.4.2/frontend/src/pages/Glossary.tsx +0 -266
  538. truthound_dashboard-1.4.2/frontend/src/pages/GlossaryDetail.tsx +0 -352
  539. truthound_dashboard-1.4.2/frontend/src/pages/History.tsx +0 -301
  540. truthound_dashboard-1.4.2/frontend/src/pages/Lineage.tsx +0 -618
  541. truthound_dashboard-1.4.2/frontend/src/pages/Maintenance.tsx +0 -23
  542. truthound_dashboard-1.4.2/frontend/src/pages/ModelMonitoring.tsx +0 -677
  543. truthound_dashboard-1.4.2/frontend/src/pages/Notifications.tsx +0 -1069
  544. truthound_dashboard-1.4.2/frontend/src/pages/NotificationsAdvanced.tsx +0 -269
  545. truthound_dashboard-1.4.2/frontend/src/pages/Plugins.tsx +0 -809
  546. truthound_dashboard-1.4.2/frontend/src/pages/Privacy.tsx +0 -344
  547. truthound_dashboard-1.4.2/frontend/src/pages/Profile.tsx +0 -1096
  548. truthound_dashboard-1.4.2/frontend/src/pages/ProfileComparison.tsx +0 -593
  549. truthound_dashboard-1.4.2/frontend/src/pages/Reports.tsx +0 -579
  550. truthound_dashboard-1.4.2/frontend/src/pages/RuleSuggestions.tsx +0 -989
  551. truthound_dashboard-1.4.2/frontend/src/pages/Rules.tsx +0 -481
  552. truthound_dashboard-1.4.2/frontend/src/pages/Schedules.tsx +0 -693
  553. truthound_dashboard-1.4.2/frontend/src/pages/SchemaEvolution.tsx +0 -476
  554. truthound_dashboard-1.4.2/frontend/src/pages/SourceDetail.tsx +0 -820
  555. truthound_dashboard-1.4.2/frontend/src/pages/Sources.tsx +0 -252
  556. truthound_dashboard-1.4.2/frontend/src/pages/TriggerMonitoring.tsx +0 -622
  557. truthound_dashboard-1.4.2/frontend/src/pages/Validations.tsx +0 -352
  558. truthound_dashboard-1.4.2/frontend/src/pages/VersionHistory.tsx +0 -328
  559. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Catalog.e2e.test.tsx +0 -615
  560. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/CatalogDetail.e2e.test.tsx +0 -497
  561. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Dashboard.e2e.test.tsx +0 -266
  562. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Glossary.e2e.test.tsx +0 -948
  563. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/GlossaryDetail.e2e.test.tsx +0 -944
  564. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/History.e2e.test.tsx +0 -457
  565. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Profile.e2e.test.tsx +0 -475
  566. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Rules.e2e.test.tsx +0 -476
  567. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/SourceDetail.e2e.test.tsx +0 -465
  568. truthound_dashboard-1.4.2/frontend/src/pages/__tests__/Sources.e2e.test.tsx +0 -426
  569. truthound_dashboard-1.4.2/frontend/src/providers/index.ts +0 -9
  570. truthound_dashboard-1.4.2/frontend/src/providers/intlayer/IntlayerProvider.tsx +0 -125
  571. truthound_dashboard-1.4.2/frontend/src/providers/intlayer/config.ts +0 -121
  572. truthound_dashboard-1.4.2/frontend/src/providers/intlayer/index.ts +0 -27
  573. truthound_dashboard-1.4.2/frontend/src/stores/catalogStore.test.ts +0 -276
  574. truthound_dashboard-1.4.2/frontend/src/stores/catalogStore.ts +0 -180
  575. truthound_dashboard-1.4.2/frontend/src/stores/glossaryStore.test.ts +0 -279
  576. truthound_dashboard-1.4.2/frontend/src/stores/glossaryStore.ts +0 -187
  577. truthound_dashboard-1.4.2/frontend/src/stores/theme.ts +0 -144
  578. truthound_dashboard-1.4.2/frontend/src/test/mocks/intlayer-config.ts +0 -19
  579. truthound_dashboard-1.4.2/frontend/src/test/mocks/intlayer.ts +0 -31
  580. truthound_dashboard-1.4.2/frontend/src/test/mocks/react-intlayer.ts +0 -979
  581. truthound_dashboard-1.4.2/frontend/src/test/msw-server.ts +0 -61
  582. truthound_dashboard-1.4.2/frontend/src/test/setup.ts +0 -145
  583. truthound_dashboard-1.4.2/frontend/src/test/test-utils.tsx +0 -448
  584. truthound_dashboard-1.4.2/frontend/src/types/validators.ts +0 -521
  585. truthound_dashboard-1.4.2/frontend/src/vite-env.d.ts +0 -10
  586. truthound_dashboard-1.4.2/frontend/tailwind.config.js +0 -103
  587. truthound_dashboard-1.4.2/frontend/tsconfig.json +0 -36
  588. truthound_dashboard-1.4.2/frontend/tsconfig.node.json +0 -10
  589. truthound_dashboard-1.4.2/frontend/vercel.json +0 -8
  590. truthound_dashboard-1.4.2/frontend/vite.config.ts +0 -29
  591. truthound_dashboard-1.4.2/frontend/vitest.config.ts +0 -97
  592. truthound_dashboard-1.4.2/package-lock.json +0 -6
  593. truthound_dashboard-1.4.2/scripts/load_test.py +0 -389
  594. truthound_dashboard-1.4.2/src/truthound_dashboard/api/model_monitoring.py +0 -805
  595. truthound_dashboard-1.4.2/src/truthound_dashboard/api/profile.py +0 -257
  596. truthound_dashboard-1.4.2/src/truthound_dashboard/core/cross_alerts.py +0 -837
  597. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/channels.py +0 -1576
  598. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/deduplication/__init__.py +0 -143
  599. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/deduplication/service.py +0 -400
  600. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/escalation/__init__.py +0 -149
  601. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/escalation/engine.py +0 -429
  602. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/routing/__init__.py +0 -169
  603. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/routing/engine.py +0 -382
  604. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/throttling/__init__.py +0 -83
  605. truthound_dashboard-1.4.2/src/truthound_dashboard/core/notifications/throttling/builder.py +0 -311
  606. truthound_dashboard-1.4.2/src/truthound_dashboard/core/plugins/hooks/__init__.py +0 -63
  607. truthound_dashboard-1.4.2/src/truthound_dashboard/core/plugins/hooks/decorators.py +0 -367
  608. truthound_dashboard-1.4.2/src/truthound_dashboard/core/plugins/hooks/manager.py +0 -403
  609. truthound_dashboard-1.4.2/src/truthound_dashboard/core/plugins/hooks/protocols.py +0 -265
  610. truthound_dashboard-1.4.2/src/truthound_dashboard/core/plugins/lifecycle/hot_reload.py +0 -584
  611. truthound_dashboard-1.4.2/src/truthound_dashboard/core/reporters/__init__.py +0 -57
  612. truthound_dashboard-1.4.2/src/truthound_dashboard/core/reporters/junit_reporter.py +0 -233
  613. truthound_dashboard-1.4.2/src/truthound_dashboard/core/reporters/markdown_reporter.py +0 -207
  614. truthound_dashboard-1.4.2/src/truthound_dashboard/core/reporters/pdf_reporter.py +0 -209
  615. truthound_dashboard-1.4.2/src/truthound_dashboard/core/truthound_adapter.py +0 -1074
  616. truthound_dashboard-1.4.2/src/truthound_dashboard/schemas/profile.py +0 -520
  617. truthound_dashboard-1.4.2/src/truthound_dashboard/static/favicon.ico +0 -0
  618. truthound_dashboard-1.4.2/src/truthound_dashboard/static/index.html +0 -15
  619. truthound_dashboard-1.4.2/tests/__init__.py +0 -1
  620. truthound_dashboard-1.4.2/tests/conftest.py +0 -125
  621. truthound_dashboard-1.4.2/tests/test_api/__init__.py +0 -1
  622. truthound_dashboard-1.4.2/tests/test_api/test_catalog.py +0 -459
  623. truthound_dashboard-1.4.2/tests/test_api/test_collaboration.py +0 -307
  624. truthound_dashboard-1.4.2/tests/test_api/test_glossary.py +0 -365
  625. truthound_dashboard-1.4.2/tests/test_api/test_health.py +0 -27
  626. truthound_dashboard-1.4.2/tests/test_api/test_rules.py +0 -351
  627. truthound_dashboard-1.4.2/tests/test_api/test_sources.py +0 -164
  628. truthound_dashboard-1.4.2/tests/test_core/__init__.py +0 -1
  629. truthound_dashboard-1.4.2/tests/test_core/test_performance.py +0 -1284
  630. truthound_dashboard-1.4.2/tests/test_core/test_plugins.py +0 -832
  631. truthound_dashboard-1.4.2/tests/test_core/test_rule_validator.py +0 -517
  632. truthound_dashboard-1.4.2/tests/test_core/test_services.py +0 -219
  633. truthound_dashboard-1.4.2/tests/test_db/__init__.py +0 -1
  634. truthound_dashboard-1.4.2/tests/test_db/test_models.py +0 -128
  635. truthound_dashboard-1.4.2/tests/test_phase4.py +0 -727
  636. truthound_dashboard-1.4.2/uv.lock +0 -1579
  637. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/LICENSE +0 -0
  638. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/__init__.py +0 -0
  639. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/__main__.py +0 -0
  640. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/__init__.py +0 -0
  641. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/catalog.py +0 -0
  642. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/collaboration.py +0 -0
  643. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/deps.py +0 -0
  644. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/error_handlers.py +0 -0
  645. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/glossary.py +0 -0
  646. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/health.py +0 -0
  647. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/rules.py +0 -0
  648. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/schemas.py +0 -0
  649. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/validators.py +0 -0
  650. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/api/websocket.py +0 -0
  651. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/cli.py +0 -0
  652. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/config.py +0 -0
  653. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/base.py +0 -0
  654. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/cache.py +0 -0
  655. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/cached_services.py +0 -0
  656. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/charts.py +0 -0
  657. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/drift_sampling.py +0 -0
  658. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/encryption.py +0 -0
  659. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/exceptions.py +0 -0
  660. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/i18n/__init__.py +0 -0
  661. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/i18n/detector.py +0 -0
  662. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/i18n/messages.py +0 -0
  663. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/logging.py +0 -0
  664. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/maintenance.py +0 -0
  665. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/__init__.py +0 -0
  666. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/deduplication/policies.py +0 -0
  667. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/deduplication/stores.py +0 -0
  668. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/deduplication/strategies.py +0 -0
  669. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/escalation/backends.py +0 -0
  670. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/escalation/models.py +0 -0
  671. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/escalation/scheduler.py +0 -0
  672. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/escalation/state_machine.py +0 -0
  673. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/escalation/stores.py +0 -0
  674. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/events.py +0 -0
  675. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/metrics/__init__.py +0 -0
  676. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/metrics/base.py +0 -0
  677. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/metrics/collectors.py +0 -0
  678. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/combinators.py +0 -0
  679. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/config.py +0 -0
  680. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/config_parser.py +0 -0
  681. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/expression_engine.py +0 -0
  682. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/jinja2_engine.py +0 -0
  683. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/rules.py +0 -0
  684. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/routing/validator.py +0 -0
  685. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/service.py +0 -0
  686. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/throttling/stores.py +0 -0
  687. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/notifications/throttling/throttlers.py +0 -0
  688. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/openlineage.py +0 -0
  689. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/phase5/__init__.py +0 -0
  690. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/phase5/activity.py +0 -0
  691. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/phase5/catalog.py +0 -0
  692. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/phase5/glossary.py +0 -0
  693. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/__init__.py +0 -0
  694. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/docs/__init__.py +0 -0
  695. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/docs/extractor.py +0 -0
  696. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/docs/renderers.py +0 -0
  697. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/lifecycle/machine.py +0 -0
  698. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/lifecycle/states.py +0 -0
  699. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/loader.py +0 -0
  700. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/registry.py +0 -0
  701. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/reporter_executor.py +0 -0
  702. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/sandbox/__init__.py +0 -0
  703. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/sandbox/code_validator.py +0 -0
  704. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/sandbox/engines.py +0 -0
  705. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/sandbox/protocols.py +0 -0
  706. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/sandbox.py +0 -0
  707. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security/__init__.py +0 -0
  708. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security/analyzer.py +0 -0
  709. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security/policies.py +0 -0
  710. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security/protocols.py +0 -0
  711. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security/signing.py +0 -0
  712. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/security.py +0 -0
  713. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/validator_executor.py +0 -0
  714. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/versioning/__init__.py +0 -0
  715. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/versioning/constraints.py +0 -0
  716. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/versioning/dependencies.py +0 -0
  717. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/plugins/versioning/semver.py +0 -0
  718. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/profile_comparison.py +0 -0
  719. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/html_reporter.py +0 -0
  720. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/i18n/__init__.py +0 -0
  721. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/i18n/base.py +0 -0
  722. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/i18n/catalogs.py +0 -0
  723. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/reporters/json_reporter.py +0 -0
  724. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/rule_generator.py +0 -0
  725. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/sampling.py +0 -0
  726. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/statistics.py +0 -0
  727. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/triggers/__init__.py +0 -0
  728. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/triggers/base.py +0 -0
  729. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/triggers/factory.py +0 -0
  730. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/validation_limits.py +0 -0
  731. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/versioning.py +0 -0
  732. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/websocket/__init__.py +0 -0
  733. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/websocket/manager.py +0 -0
  734. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/core/websocket/messages.py +0 -0
  735. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/db/base.py +0 -0
  736. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/anomaly.py +0 -0
  737. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/catalog.py +0 -0
  738. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/glossary.py +0 -0
  739. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/history.py +0 -0
  740. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/maintenance.py +0 -0
  741. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/openlineage.py +0 -0
  742. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/profile_comparison.py +0 -0
  743. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/rule.py +0 -0
  744. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/schema.py +0 -0
  745. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/schema_evolution.py +0 -0
  746. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/__init__.py +0 -0
  747. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/aggregate_validators.py +0 -0
  748. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/anomaly_validators.py +0 -0
  749. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/completeness_validators.py +0 -0
  750. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/cross_table_validators.py +0 -0
  751. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/datetime_validators.py +0 -0
  752. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/distribution_validators.py +0 -0
  753. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/drift_validators.py +0 -0
  754. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/geospatial_validators.py +0 -0
  755. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/multi_column_validators.py +0 -0
  756. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/privacy_validators.py +0 -0
  757. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/query_validators.py +0 -0
  758. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/schema_validators.py +0 -0
  759. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/string_validators.py +0 -0
  760. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/table_validators.py +0 -0
  761. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators/uniqueness_validators.py +0 -0
  762. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/schemas/validators.py +0 -0
  763. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/static/assets/logo--IpBiMPK.png +0 -0
  764. {truthound_dashboard-1.4.2/frontend/public-pip → truthound_dashboard-1.5.1/src/truthound_dashboard/static}/favicon.ico +0 -0
  765. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/__init__.py +0 -0
  766. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/config_updater.py +0 -0
  767. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/exceptions.py +0 -0
  768. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/__init__.py +0 -0
  769. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/anthropic.py +0 -0
  770. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/base.py +0 -0
  771. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/mistral.py +0 -0
  772. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/ollama.py +0 -0
  773. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/openai.py +0 -0
  774. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/providers/registry.py +0 -0
  775. {truthound_dashboard-1.4.2 → truthound_dashboard-1.5.1}/src/truthound_dashboard/translate/translator.py +0 -0
@@ -172,3 +172,10 @@ src/truthound_dashboard/static/assets/*.css
172
172
 
173
173
  .github/copilot-instructions.md
174
174
  .vercel
175
+
176
+ # Test data and results
177
+ test-data/
178
+ test_*.py
179
+ *_test_results.json
180
+ test_results.json
181
+
@@ -0,0 +1,312 @@
1
+ Metadata-Version: 2.4
2
+ Name: truthound-dashboard
3
+ Version: 1.5.1
4
+ Summary: Open-source data quality dashboard - GX Cloud alternative
5
+ Author-email: Truthound Team <team@truthound.dev>
6
+ License-Expression: Apache-2.0
7
+ License-File: LICENSE
8
+ Keywords: dashboard,data-quality,monitoring,truthound,validation
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Framework :: FastAPI
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Database
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Requires-Python: >=3.11
20
+ Requires-Dist: aiosmtplib>=3.0.0
21
+ Requires-Dist: aiosqlite>=0.19.0
22
+ Requires-Dist: apscheduler>=3.10.0
23
+ Requires-Dist: cryptography>=41.0.0
24
+ Requires-Dist: fastapi>=0.110.0
25
+ Requires-Dist: httpx>=0.26.0
26
+ Requires-Dist: jinja2>=3.1.0
27
+ Requires-Dist: numpy>=1.24.0
28
+ Requires-Dist: pydantic-settings>=2.1.0
29
+ Requires-Dist: pydantic>=2.5.0
30
+ Requires-Dist: sqlalchemy[asyncio]>=2.0.0
31
+ Requires-Dist: truthound>=1.2.10
32
+ Requires-Dist: uvicorn[standard]>=0.27.0
33
+ Provides-Extra: dev
34
+ Requires-Dist: black>=23.0.0; extra == 'dev'
35
+ Requires-Dist: httpx>=0.26.0; extra == 'dev'
36
+ Requires-Dist: mypy>=1.8.0; extra == 'dev'
37
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
38
+ Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
39
+ Requires-Dist: pytest>=7.4.0; extra == 'dev'
40
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
41
+ Provides-Extra: redis
42
+ Requires-Dist: redis>=5.0.0; extra == 'redis'
43
+ Provides-Extra: translate
44
+ Description-Content-Type: text/markdown
45
+
46
+ # truthound-dashboard
47
+ <img width="1697" height="847" alt="truthound-dashboard" src="https://github.com/user-attachments/assets/2239ebff-470b-49fe-ab09-81bc3117880d" />
48
+
49
+ > **Alpha Version**: APIs and features may change without notice.
50
+
51
+ ## Overview
52
+ <img width="300" height="300" alt="Truthound_icon" src="https://github.com/user-attachments/assets/90d9e806-8895-45ec-97dc-f8300da4d997" />
53
+
54
+ [![PyPI version](https://img.shields.io/pypi/v/truthound-dashboard.svg)](https://pypi.org/project/truthound-dashboard/)
55
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
56
+ [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-orange.svg)](https://opensource.org/licenses/Apache-2.0)
57
+ [![Powered by Intlayer](https://img.shields.io/badge/Powered%20by-Intlayer-yellow.svg)](https://intlayer.org)
58
+ [![Downloads](https://img.shields.io/pepy/dt/truthound-dashboard?color=brightgreen)](https://pepy.tech/project/truthound-dashboard)
59
+
60
+ A web-based data quality monitoring dashboard for [truthound](https://github.com/seadonggyun4/truthound).
61
+
62
+ truthound-dashboard provides a graphical interface for managing data sources, executing validations, tracking historical results, scheduling automated checks, and configuring notifications. It serves as an alternative to commercial data quality platforms.
63
+
64
+ [Documentation](https://truthound.netlify.app) | [PyPI](https://pypi.org/project/truthound-dashboard/) | [Live Demo](https://truthound-dashboard.vercel.app)
65
+
66
+ > **Demo Note**: The live demo uses a free-tier backend ([Render](https://render.com)), which enters sleep mode after 15 minutes of inactivity. The first request may take 30–60 seconds to wake up the server.
67
+
68
+ ## Design Principles
69
+
70
+ - **Zero-Config**: Works out of the box with sensible defaults
71
+ - **Single Process**: No Redis, Celery, or PostgreSQL required
72
+ - **Local First**: Full functionality without cloud dependencies
73
+ - **GX Cloud Parity**: Match paid features for free
74
+
75
+ ## Feature Comparison with GX Cloud
76
+
77
+ | Feature | GX Cloud (Paid) | truthound-dashboard |
78
+ |---------|-----------------|---------------------|
79
+ | Data Source Management | Available | Available |
80
+ | Schema Learning | Available | Available |
81
+ | Validation Execution | Available | Available (289+ validators) |
82
+ | Validation History | Available | Available |
83
+ | Scheduled Validations | Available | Available (6 trigger types) |
84
+ | Notifications | Available | Available (9 channels) |
85
+ | Drift Detection | Available | Available (14 methods) |
86
+ | Data Profiling | Available | Available |
87
+ | PII Scan & Masking | Available | Available (GDPR/CCPA/LGPD) |
88
+ | Anomaly Detection | Limited | Available (6 ML algorithms) |
89
+ | Data Lineage | Available | Available (4 renderers) |
90
+ | Model Monitoring | Available | Available |
91
+ | Reports & Export | Available | Available (6 formats) |
92
+ | Plugin Marketplace | Not Available | Available |
93
+ | Storage Tiering | Not Available | Available |
94
+ | Dark Mode & i18n | Limited | Available (2 languages + AI translation) |
95
+ | License | Commercial | Apache 2.0 |
96
+
97
+ ## Requirements
98
+
99
+ - Python 3.11 or higher
100
+ - truthound >= 1.2.10
101
+
102
+ ## Installation
103
+
104
+ ```bash
105
+ pip install truthound-dashboard
106
+ ```
107
+
108
+ This command automatically installs [truthound](https://github.com/seadonggyun4/truthound) as a dependency.
109
+
110
+ ## Usage
111
+
112
+ ```bash
113
+ # Start the dashboard server (default port: 8765)
114
+ truthound serve
115
+
116
+ # Specify a custom port
117
+ truthound serve --port 9000
118
+
119
+ # Enable development mode with hot reload
120
+ truthound serve --reload
121
+
122
+ # Disable automatic browser opening
123
+ truthound serve --no-browser
124
+ ```
125
+
126
+ The dashboard interface is accessible at `http://localhost:8765`.
127
+
128
+ ## Features
129
+
130
+ ### Data Management
131
+
132
+ | Feature | Description | Documentation |
133
+ |---------|-------------|---------------|
134
+ | **Dashboard** | Overview statistics and quick navigation | [docs/data-management/dashboard.md](./docs/data-management/dashboard.md) |
135
+ | **Data Sources** | CSV, Parquet, JSON, 13 database connectors (PostgreSQL, MySQL, SQLite, BigQuery, Snowflake, etc.) | [docs/data-management/sources.md](./docs/data-management/sources.md) |
136
+ | **Data Catalog** | Asset metadata, column-level management, quality scores, sensitivity classification | [docs/data-management/catalog.md](./docs/data-management/catalog.md) |
137
+ | **Business Glossary** | Term definitions, categories, relationships, lifecycle management | [docs/data-management/glossary.md](./docs/data-management/glossary.md) |
138
+
139
+ ### Data Quality
140
+
141
+ | Feature | Description | Documentation |
142
+ |---------|-------------|---------------|
143
+ | **Validations** | 289+ validators across 15 categories, per-validator configuration, severity override, parallel execution | [docs/data-quality/validations.md](./docs/data-quality/validations.md) |
144
+ | **Drift Detection** | 14 statistical methods (KS, PSI, Chi2, JS, Wasserstein, etc.), column-level comparison | [docs/data-quality/drift.md](./docs/data-quality/drift.md) |
145
+ | **Drift Monitoring** | Continuous monitoring with alerts, root cause analysis, remediation suggestions | [docs/data-quality/drift-monitoring.md](./docs/data-quality/drift-monitoring.md) |
146
+ | **Schema Evolution** | Change tracking, breaking/warning/safe classification, version timeline | [docs/data-quality/schema-evolution.md](./docs/data-quality/schema-evolution.md) |
147
+ | **Schema Watcher** | Real-time schema change detection, rename detection, alert thresholds | [docs/data-quality/schema-watcher.md](./docs/data-quality/schema-watcher.md) |
148
+ | **Profile Comparison** | Longitudinal profile analysis, delta computation, trend charts | [docs/data-quality/profile-comparison.md](./docs/data-quality/profile-comparison.md) |
149
+ | **Privacy & PII** | PII detection (`th.scan`), data masking (`th.mask`), GDPR/CCPA/LGPD compliance | [docs/data-quality/privacy.md](./docs/data-quality/privacy.md) |
150
+ | **Data Lineage** | Interactive graph visualization (D3/Mermaid/Cytoscape), impact analysis, OpenLineage integration | [docs/data-quality/lineage.md](./docs/data-quality/lineage.md) |
151
+ | **Quality Reporter** | Quality scoring with F1/Precision/Recall metrics, multi-format export | [docs/data-quality/quality-reporter.md](./docs/data-quality/quality-reporter.md) |
152
+ | **Enterprise Sampling** | Block, multi-stage, column-aware, progressive strategies for 100M+ rows | [docs/data-quality/enterprise-sampling.md](./docs/data-quality/enterprise-sampling.md) |
153
+ | **Rule Suggestions** | AI-powered rule generation from data profiles, confidence scoring | [docs/data-quality/rule-suggestions.md](./docs/data-quality/rule-suggestions.md) |
154
+
155
+ ### ML & Monitoring
156
+
157
+ | Feature | Description | Documentation |
158
+ |---------|-------------|---------------|
159
+ | **Anomaly Detection** | 6 ML algorithms (IsolationForest, Z-Score, IQR, MAD, Ensemble, DistributionDrift), streaming support | [docs/ml-monitoring/anomaly.md](./docs/ml-monitoring/anomaly.md) |
160
+ | **Model Monitoring** | ML model performance tracking, metric monitoring, alert rules, model versioning | [docs/ml-monitoring/model-monitoring.md](./docs/ml-monitoring/model-monitoring.md) |
161
+
162
+ ### System
163
+
164
+ | Feature | Description | Documentation |
165
+ |---------|-------------|---------------|
166
+ | **Unified Alerts** | Cross-feature alert aggregation, severity filtering, correlation and grouping | [docs/system/alerts.md](./docs/system/alerts.md) |
167
+ | **Schedules** | 6 trigger types (cron, interval, data change, composite, event, manual), validator configuration | [docs/system/schedules.md](./docs/system/schedules.md) |
168
+ | **Trigger Monitoring** | Real-time trigger health, cooldown tracking, webhook management, execution history | [docs/system/trigger-monitoring.md](./docs/system/trigger-monitoring.md) |
169
+ | **Activity Feed** | System event timeline, collaboration comments, change tracking | [docs/system/activity.md](./docs/system/activity.md) |
170
+ | **Notifications** | 9 channels (Slack, Email, Webhook, Discord, Telegram, PagerDuty, OpsGenie, Teams, GitHub) | [docs/system/notifications.md](./docs/system/notifications.md) |
171
+ | **Advanced Notifications** | Rule-based routing, deduplication (4 strategies), throttling (5 methods), multi-level escalation | [docs/system/notifications-advanced.md](./docs/system/notifications-advanced.md) |
172
+ | **Reports** | 6 formats (HTML, PDF, CSV, JSON, Excel, Markdown), statistics dashboard, lifecycle management | [docs/system/reports.md](./docs/system/reports.md) |
173
+ | **Plugins** | Marketplace, 4 plugin types, custom validator/reporter creation, security levels | [docs/system/plugins.md](./docs/system/plugins.md) |
174
+ | **Storage Tiering** | Hot/Warm/Cold/Archive tiers, 6 policy types, composite AND/OR logic, migration history | [docs/system/storage-tiering.md](./docs/system/storage-tiering.md) |
175
+ | **Observability** | Audit logging, metrics collection, distributed tracing | [docs/system/observability.md](./docs/system/observability.md) |
176
+ | **Maintenance** | Retention policies, auto-cleanup, database optimization (VACUUM), cache management | [docs/system/maintenance.md](./docs/system/maintenance.md) |
177
+
178
+ ## Internationalization
179
+
180
+ truthound-dashboard implements internationalization using [Intlayer](https://intlayer.org), a modern i18n framework that provides type-safe translations with component-level content declaration.
181
+
182
+ ### Built-in Languages
183
+
184
+ The dashboard ships with **2 fully translated languages**:
185
+ - **English (en)** - Complete UI translation
186
+ - **Korean (ko)** - Complete UI translation
187
+
188
+ These languages are immediately available without additional configuration or setup.
189
+
190
+ ### Extending Language Support
191
+
192
+ The dashboard can be extended to support 15+ additional languages using the AI-powered `translate` command. This CLI tool translates all UI content files from the built-in English and Korean to your target language.
193
+
194
+ **Note:** Additional languages are not included in the default installation and must be generated using the translation CLI before deployment.
195
+
196
+ #### Supported AI Providers
197
+
198
+ | Provider | Environment Variable | Models |
199
+ |----------|---------------------|--------|
200
+ | OpenAI | `OPENAI_API_KEY` | GPT-4o, GPT-4o-mini, GPT-4, GPT-3.5 |
201
+ | Anthropic | `ANTHROPIC_API_KEY` | Claude Sonnet 4, Claude Opus 4 |
202
+ | Mistral | `MISTRAL_API_KEY` | Mistral Large, Mistral Small |
203
+ | Ollama | Not required | Llama 3.2, Mistral, Qwen (local execution) |
204
+
205
+ #### Configuration
206
+
207
+ API credentials are configured through environment variables. This approach ensures that sensitive credentials are not exposed in command history or application logs.
208
+
209
+ **Temporary Session Configuration**
210
+
211
+ ```bash
212
+ # OpenAI
213
+ export OPENAI_API_KEY=sk-xxxxxxxxxxxx
214
+ truthound translate -l fr -p openai
215
+
216
+ # Anthropic
217
+ export ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxx
218
+ truthound translate -l fr -p anthropic
219
+
220
+ # Mistral
221
+ export MISTRAL_API_KEY=xxxxxxxxxxxx
222
+ truthound translate -l fr -p mistral
223
+ ```
224
+
225
+ **Persistent Configuration**
226
+
227
+ ```bash
228
+ # Add to shell configuration file (~/.bashrc or ~/.zshrc)
229
+ echo 'export OPENAI_API_KEY=sk-xxxxxxxxxxxx' >> ~/.zshrc
230
+ source ~/.zshrc
231
+ ```
232
+
233
+ **Inline Configuration**
234
+
235
+ ```bash
236
+ OPENAI_API_KEY=sk-xxx truthound translate -l fr -p openai
237
+ ```
238
+
239
+ #### Usage Examples
240
+
241
+ ```bash
242
+ # Translate to French using OpenAI
243
+ truthound translate -l fr -p openai
244
+
245
+ # Translate to multiple languages
246
+ truthound translate -l ja,zh,de,fr -p anthropic
247
+
248
+ # Use local Ollama (no API key required)
249
+ truthound translate -l fr -p ollama
250
+
251
+ # Auto-detect available provider
252
+ truthound translate -l fr
253
+
254
+ # Preview files without making changes
255
+ truthound translate -l fr --dry-run
256
+
257
+ # List available providers and their status
258
+ truthound translate --list-providers
259
+
260
+ # List supported language codes
261
+ truthound translate --list-languages
262
+ ```
263
+
264
+ #### Security Considerations
265
+
266
+ | Aspect | Risk Level | Description |
267
+ |--------|------------|-------------|
268
+ | Network transmission | None | API keys are used locally and transmitted only to the selected provider |
269
+ | Source code exposure | None | Credentials are injected via environment variables |
270
+ | Build artifact inclusion | None | Only translated content is persisted; credentials are not stored |
271
+ | API communication | Standard | Requests are made directly to provider endpoints using user credentials |
272
+
273
+ #### Supported Languages
274
+
275
+ The translation system supports 36 languages including: Arabic, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hebrew, Hindi, Hungarian, Indonesian, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, and Vietnamese.
276
+
277
+ Execute `truthound translate --list-languages` to view the complete list with language codes.
278
+
279
+ ## Technology Stack
280
+
281
+ **Backend**
282
+ - FastAPI
283
+ - SQLAlchemy 2.0 (async)
284
+ - SQLite with aiosqlite
285
+ - APScheduler
286
+ - Pydantic 2.x
287
+
288
+ **Frontend**
289
+ - React 18
290
+ - TypeScript
291
+ - Vite
292
+ - TailwindCSS
293
+ - shadcn/ui
294
+ - Zustand
295
+ - [Intlayer](https://intlayer.org) (internationalization)
296
+
297
+ ## Documentation
298
+
299
+ Full documentation is available at [https://truthound.netlify.app](https://truthound.netlify.app).
300
+
301
+ - [Getting Started](./docs/getting-started.md)
302
+ - [Architecture](./docs/architecture.md)
303
+ - [All Documentation](./docs/index.md)
304
+
305
+ ## Related Projects
306
+
307
+ - [truthound](https://github.com/seadonggyun4/truthound) - Core data validation library
308
+ - [truthound-orchestration](https://github.com/seadonggyun4/truthound-orchestration) - Pipeline orchestration integration
309
+
310
+ ## License
311
+
312
+ This project is licensed under the Apache License 2.0.
@@ -0,0 +1,267 @@
1
+ # truthound-dashboard
2
+ <img width="1697" height="847" alt="truthound-dashboard" src="https://github.com/user-attachments/assets/2239ebff-470b-49fe-ab09-81bc3117880d" />
3
+
4
+ > **Alpha Version**: APIs and features may change without notice.
5
+
6
+ ## Overview
7
+ <img width="300" height="300" alt="Truthound_icon" src="https://github.com/user-attachments/assets/90d9e806-8895-45ec-97dc-f8300da4d997" />
8
+
9
+ [![PyPI version](https://img.shields.io/pypi/v/truthound-dashboard.svg)](https://pypi.org/project/truthound-dashboard/)
10
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
11
+ [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-orange.svg)](https://opensource.org/licenses/Apache-2.0)
12
+ [![Powered by Intlayer](https://img.shields.io/badge/Powered%20by-Intlayer-yellow.svg)](https://intlayer.org)
13
+ [![Downloads](https://img.shields.io/pepy/dt/truthound-dashboard?color=brightgreen)](https://pepy.tech/project/truthound-dashboard)
14
+
15
+ A web-based data quality monitoring dashboard for [truthound](https://github.com/seadonggyun4/truthound).
16
+
17
+ truthound-dashboard provides a graphical interface for managing data sources, executing validations, tracking historical results, scheduling automated checks, and configuring notifications. It serves as an alternative to commercial data quality platforms.
18
+
19
+ [Documentation](https://truthound.netlify.app) | [PyPI](https://pypi.org/project/truthound-dashboard/) | [Live Demo](https://truthound-dashboard.vercel.app)
20
+
21
+ > **Demo Note**: The live demo uses a free-tier backend ([Render](https://render.com)), which enters sleep mode after 15 minutes of inactivity. The first request may take 30–60 seconds to wake up the server.
22
+
23
+ ## Design Principles
24
+
25
+ - **Zero-Config**: Works out of the box with sensible defaults
26
+ - **Single Process**: No Redis, Celery, or PostgreSQL required
27
+ - **Local First**: Full functionality without cloud dependencies
28
+ - **GX Cloud Parity**: Match paid features for free
29
+
30
+ ## Feature Comparison with GX Cloud
31
+
32
+ | Feature | GX Cloud (Paid) | truthound-dashboard |
33
+ |---------|-----------------|---------------------|
34
+ | Data Source Management | Available | Available |
35
+ | Schema Learning | Available | Available |
36
+ | Validation Execution | Available | Available (289+ validators) |
37
+ | Validation History | Available | Available |
38
+ | Scheduled Validations | Available | Available (6 trigger types) |
39
+ | Notifications | Available | Available (9 channels) |
40
+ | Drift Detection | Available | Available (14 methods) |
41
+ | Data Profiling | Available | Available |
42
+ | PII Scan & Masking | Available | Available (GDPR/CCPA/LGPD) |
43
+ | Anomaly Detection | Limited | Available (6 ML algorithms) |
44
+ | Data Lineage | Available | Available (4 renderers) |
45
+ | Model Monitoring | Available | Available |
46
+ | Reports & Export | Available | Available (6 formats) |
47
+ | Plugin Marketplace | Not Available | Available |
48
+ | Storage Tiering | Not Available | Available |
49
+ | Dark Mode & i18n | Limited | Available (2 languages + AI translation) |
50
+ | License | Commercial | Apache 2.0 |
51
+
52
+ ## Requirements
53
+
54
+ - Python 3.11 or higher
55
+ - truthound >= 1.2.10
56
+
57
+ ## Installation
58
+
59
+ ```bash
60
+ pip install truthound-dashboard
61
+ ```
62
+
63
+ This command automatically installs [truthound](https://github.com/seadonggyun4/truthound) as a dependency.
64
+
65
+ ## Usage
66
+
67
+ ```bash
68
+ # Start the dashboard server (default port: 8765)
69
+ truthound serve
70
+
71
+ # Specify a custom port
72
+ truthound serve --port 9000
73
+
74
+ # Enable development mode with hot reload
75
+ truthound serve --reload
76
+
77
+ # Disable automatic browser opening
78
+ truthound serve --no-browser
79
+ ```
80
+
81
+ The dashboard interface is accessible at `http://localhost:8765`.
82
+
83
+ ## Features
84
+
85
+ ### Data Management
86
+
87
+ | Feature | Description | Documentation |
88
+ |---------|-------------|---------------|
89
+ | **Dashboard** | Overview statistics and quick navigation | [docs/data-management/dashboard.md](./docs/data-management/dashboard.md) |
90
+ | **Data Sources** | CSV, Parquet, JSON, 13 database connectors (PostgreSQL, MySQL, SQLite, BigQuery, Snowflake, etc.) | [docs/data-management/sources.md](./docs/data-management/sources.md) |
91
+ | **Data Catalog** | Asset metadata, column-level management, quality scores, sensitivity classification | [docs/data-management/catalog.md](./docs/data-management/catalog.md) |
92
+ | **Business Glossary** | Term definitions, categories, relationships, lifecycle management | [docs/data-management/glossary.md](./docs/data-management/glossary.md) |
93
+
94
+ ### Data Quality
95
+
96
+ | Feature | Description | Documentation |
97
+ |---------|-------------|---------------|
98
+ | **Validations** | 289+ validators across 15 categories, per-validator configuration, severity override, parallel execution | [docs/data-quality/validations.md](./docs/data-quality/validations.md) |
99
+ | **Drift Detection** | 14 statistical methods (KS, PSI, Chi2, JS, Wasserstein, etc.), column-level comparison | [docs/data-quality/drift.md](./docs/data-quality/drift.md) |
100
+ | **Drift Monitoring** | Continuous monitoring with alerts, root cause analysis, remediation suggestions | [docs/data-quality/drift-monitoring.md](./docs/data-quality/drift-monitoring.md) |
101
+ | **Schema Evolution** | Change tracking, breaking/warning/safe classification, version timeline | [docs/data-quality/schema-evolution.md](./docs/data-quality/schema-evolution.md) |
102
+ | **Schema Watcher** | Real-time schema change detection, rename detection, alert thresholds | [docs/data-quality/schema-watcher.md](./docs/data-quality/schema-watcher.md) |
103
+ | **Profile Comparison** | Longitudinal profile analysis, delta computation, trend charts | [docs/data-quality/profile-comparison.md](./docs/data-quality/profile-comparison.md) |
104
+ | **Privacy & PII** | PII detection (`th.scan`), data masking (`th.mask`), GDPR/CCPA/LGPD compliance | [docs/data-quality/privacy.md](./docs/data-quality/privacy.md) |
105
+ | **Data Lineage** | Interactive graph visualization (D3/Mermaid/Cytoscape), impact analysis, OpenLineage integration | [docs/data-quality/lineage.md](./docs/data-quality/lineage.md) |
106
+ | **Quality Reporter** | Quality scoring with F1/Precision/Recall metrics, multi-format export | [docs/data-quality/quality-reporter.md](./docs/data-quality/quality-reporter.md) |
107
+ | **Enterprise Sampling** | Block, multi-stage, column-aware, progressive strategies for 100M+ rows | [docs/data-quality/enterprise-sampling.md](./docs/data-quality/enterprise-sampling.md) |
108
+ | **Rule Suggestions** | AI-powered rule generation from data profiles, confidence scoring | [docs/data-quality/rule-suggestions.md](./docs/data-quality/rule-suggestions.md) |
109
+
110
+ ### ML & Monitoring
111
+
112
+ | Feature | Description | Documentation |
113
+ |---------|-------------|---------------|
114
+ | **Anomaly Detection** | 6 ML algorithms (IsolationForest, Z-Score, IQR, MAD, Ensemble, DistributionDrift), streaming support | [docs/ml-monitoring/anomaly.md](./docs/ml-monitoring/anomaly.md) |
115
+ | **Model Monitoring** | ML model performance tracking, metric monitoring, alert rules, model versioning | [docs/ml-monitoring/model-monitoring.md](./docs/ml-monitoring/model-monitoring.md) |
116
+
117
+ ### System
118
+
119
+ | Feature | Description | Documentation |
120
+ |---------|-------------|---------------|
121
+ | **Unified Alerts** | Cross-feature alert aggregation, severity filtering, correlation and grouping | [docs/system/alerts.md](./docs/system/alerts.md) |
122
+ | **Schedules** | 6 trigger types (cron, interval, data change, composite, event, manual), validator configuration | [docs/system/schedules.md](./docs/system/schedules.md) |
123
+ | **Trigger Monitoring** | Real-time trigger health, cooldown tracking, webhook management, execution history | [docs/system/trigger-monitoring.md](./docs/system/trigger-monitoring.md) |
124
+ | **Activity Feed** | System event timeline, collaboration comments, change tracking | [docs/system/activity.md](./docs/system/activity.md) |
125
+ | **Notifications** | 9 channels (Slack, Email, Webhook, Discord, Telegram, PagerDuty, OpsGenie, Teams, GitHub) | [docs/system/notifications.md](./docs/system/notifications.md) |
126
+ | **Advanced Notifications** | Rule-based routing, deduplication (4 strategies), throttling (5 methods), multi-level escalation | [docs/system/notifications-advanced.md](./docs/system/notifications-advanced.md) |
127
+ | **Reports** | 6 formats (HTML, PDF, CSV, JSON, Excel, Markdown), statistics dashboard, lifecycle management | [docs/system/reports.md](./docs/system/reports.md) |
128
+ | **Plugins** | Marketplace, 4 plugin types, custom validator/reporter creation, security levels | [docs/system/plugins.md](./docs/system/plugins.md) |
129
+ | **Storage Tiering** | Hot/Warm/Cold/Archive tiers, 6 policy types, composite AND/OR logic, migration history | [docs/system/storage-tiering.md](./docs/system/storage-tiering.md) |
130
+ | **Observability** | Audit logging, metrics collection, distributed tracing | [docs/system/observability.md](./docs/system/observability.md) |
131
+ | **Maintenance** | Retention policies, auto-cleanup, database optimization (VACUUM), cache management | [docs/system/maintenance.md](./docs/system/maintenance.md) |
132
+
133
+ ## Internationalization
134
+
135
+ truthound-dashboard implements internationalization using [Intlayer](https://intlayer.org), a modern i18n framework that provides type-safe translations with component-level content declaration.
136
+
137
+ ### Built-in Languages
138
+
139
+ The dashboard ships with **2 fully translated languages**:
140
+ - **English (en)** - Complete UI translation
141
+ - **Korean (ko)** - Complete UI translation
142
+
143
+ These languages are immediately available without additional configuration or setup.
144
+
145
+ ### Extending Language Support
146
+
147
+ The dashboard can be extended to support 15+ additional languages using the AI-powered `translate` command. This CLI tool translates all UI content files from the built-in English and Korean to your target language.
148
+
149
+ **Note:** Additional languages are not included in the default installation and must be generated using the translation CLI before deployment.
150
+
151
+ #### Supported AI Providers
152
+
153
+ | Provider | Environment Variable | Models |
154
+ |----------|---------------------|--------|
155
+ | OpenAI | `OPENAI_API_KEY` | GPT-4o, GPT-4o-mini, GPT-4, GPT-3.5 |
156
+ | Anthropic | `ANTHROPIC_API_KEY` | Claude Sonnet 4, Claude Opus 4 |
157
+ | Mistral | `MISTRAL_API_KEY` | Mistral Large, Mistral Small |
158
+ | Ollama | Not required | Llama 3.2, Mistral, Qwen (local execution) |
159
+
160
+ #### Configuration
161
+
162
+ API credentials are configured through environment variables. This approach ensures that sensitive credentials are not exposed in command history or application logs.
163
+
164
+ **Temporary Session Configuration**
165
+
166
+ ```bash
167
+ # OpenAI
168
+ export OPENAI_API_KEY=sk-xxxxxxxxxxxx
169
+ truthound translate -l fr -p openai
170
+
171
+ # Anthropic
172
+ export ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxx
173
+ truthound translate -l fr -p anthropic
174
+
175
+ # Mistral
176
+ export MISTRAL_API_KEY=xxxxxxxxxxxx
177
+ truthound translate -l fr -p mistral
178
+ ```
179
+
180
+ **Persistent Configuration**
181
+
182
+ ```bash
183
+ # Add to shell configuration file (~/.bashrc or ~/.zshrc)
184
+ echo 'export OPENAI_API_KEY=sk-xxxxxxxxxxxx' >> ~/.zshrc
185
+ source ~/.zshrc
186
+ ```
187
+
188
+ **Inline Configuration**
189
+
190
+ ```bash
191
+ OPENAI_API_KEY=sk-xxx truthound translate -l fr -p openai
192
+ ```
193
+
194
+ #### Usage Examples
195
+
196
+ ```bash
197
+ # Translate to French using OpenAI
198
+ truthound translate -l fr -p openai
199
+
200
+ # Translate to multiple languages
201
+ truthound translate -l ja,zh,de,fr -p anthropic
202
+
203
+ # Use local Ollama (no API key required)
204
+ truthound translate -l fr -p ollama
205
+
206
+ # Auto-detect available provider
207
+ truthound translate -l fr
208
+
209
+ # Preview files without making changes
210
+ truthound translate -l fr --dry-run
211
+
212
+ # List available providers and their status
213
+ truthound translate --list-providers
214
+
215
+ # List supported language codes
216
+ truthound translate --list-languages
217
+ ```
218
+
219
+ #### Security Considerations
220
+
221
+ | Aspect | Risk Level | Description |
222
+ |--------|------------|-------------|
223
+ | Network transmission | None | API keys are used locally and transmitted only to the selected provider |
224
+ | Source code exposure | None | Credentials are injected via environment variables |
225
+ | Build artifact inclusion | None | Only translated content is persisted; credentials are not stored |
226
+ | API communication | Standard | Requests are made directly to provider endpoints using user credentials |
227
+
228
+ #### Supported Languages
229
+
230
+ The translation system supports 36 languages including: Arabic, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hebrew, Hindi, Hungarian, Indonesian, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, and Vietnamese.
231
+
232
+ Execute `truthound translate --list-languages` to view the complete list with language codes.
233
+
234
+ ## Technology Stack
235
+
236
+ **Backend**
237
+ - FastAPI
238
+ - SQLAlchemy 2.0 (async)
239
+ - SQLite with aiosqlite
240
+ - APScheduler
241
+ - Pydantic 2.x
242
+
243
+ **Frontend**
244
+ - React 18
245
+ - TypeScript
246
+ - Vite
247
+ - TailwindCSS
248
+ - shadcn/ui
249
+ - Zustand
250
+ - [Intlayer](https://intlayer.org) (internationalization)
251
+
252
+ ## Documentation
253
+
254
+ Full documentation is available at [https://truthound.netlify.app](https://truthound.netlify.app).
255
+
256
+ - [Getting Started](./docs/getting-started.md)
257
+ - [Architecture](./docs/architecture.md)
258
+ - [All Documentation](./docs/index.md)
259
+
260
+ ## Related Projects
261
+
262
+ - [truthound](https://github.com/seadonggyun4/truthound) - Core data validation library
263
+ - [truthound-orchestration](https://github.com/seadonggyun4/truthound-orchestration) - Pipeline orchestration integration
264
+
265
+ ## License
266
+
267
+ This project is licensed under the Apache License 2.0.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "truthound-dashboard"
7
- version = "1.4.2"
7
+ version = "1.5.1"
8
8
  description = "Open-source data quality dashboard - GX Cloud alternative"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -25,20 +25,16 @@ classifiers = [
25
25
  ]
26
26
 
27
27
  dependencies = [
28
- "truthound>=1.0.5",
28
+ "truthound>=1.2.10",
29
29
  "fastapi>=0.110.0",
30
30
  "uvicorn[standard]>=0.27.0",
31
31
  "sqlalchemy[asyncio]>=2.0.0",
32
32
  "aiosqlite>=0.19.0",
33
33
  "pydantic>=2.5.0",
34
34
  "pydantic-settings>=2.1.0",
35
- "typer>=0.9.0",
36
- "rich>=13.0.0",
37
- "pyyaml>=6.0.0",
38
35
  "apscheduler>=3.10.0",
39
36
  "httpx>=0.26.0",
40
37
  "aiosmtplib>=3.0.0",
41
- "polars>=0.20.0",
42
38
  "cryptography>=41.0.0",
43
39
  "jinja2>=3.1.0",
44
40
  "numpy>=1.24.0",
@@ -70,6 +66,15 @@ serve = "truthound_dashboard.cli:register_commands"
70
66
 
71
67
  [tool.hatch.build.targets.wheel]
72
68
  packages = ["src/truthound_dashboard"]
69
+ artifacts = ["src/truthound_dashboard/static/**/*"]
70
+
71
+ [tool.hatch.build.targets.sdist]
72
+ include = [
73
+ "/src",
74
+ "/tests",
75
+ "/README.md",
76
+ "/pyproject.toml",
77
+ ]
73
78
 
74
79
  [tool.ruff]
75
80
  line-length = 88