truthound-dashboard 1.0.2__py3-none-any.whl → 1.2.0__py3-none-any.whl

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 (33) hide show
  1. truthound_dashboard/api/catalog.py +343 -0
  2. truthound_dashboard/api/collaboration.py +148 -0
  3. truthound_dashboard/api/glossary.py +329 -0
  4. truthound_dashboard/api/router.py +29 -0
  5. truthound_dashboard/cli.py +397 -0
  6. truthound_dashboard/core/__init__.py +12 -0
  7. truthound_dashboard/core/phase5/__init__.py +17 -0
  8. truthound_dashboard/core/phase5/activity.py +144 -0
  9. truthound_dashboard/core/phase5/catalog.py +868 -0
  10. truthound_dashboard/core/phase5/collaboration.py +305 -0
  11. truthound_dashboard/core/phase5/glossary.py +828 -0
  12. truthound_dashboard/db/__init__.py +37 -0
  13. truthound_dashboard/db/models.py +693 -0
  14. truthound_dashboard/schemas/__init__.py +114 -0
  15. truthound_dashboard/schemas/catalog.py +352 -0
  16. truthound_dashboard/schemas/collaboration.py +169 -0
  17. truthound_dashboard/schemas/glossary.py +349 -0
  18. truthound_dashboard/translate/__init__.py +61 -0
  19. truthound_dashboard/translate/config_updater.py +327 -0
  20. truthound_dashboard/translate/exceptions.py +98 -0
  21. truthound_dashboard/translate/providers/__init__.py +49 -0
  22. truthound_dashboard/translate/providers/anthropic.py +135 -0
  23. truthound_dashboard/translate/providers/base.py +225 -0
  24. truthound_dashboard/translate/providers/mistral.py +138 -0
  25. truthound_dashboard/translate/providers/ollama.py +226 -0
  26. truthound_dashboard/translate/providers/openai.py +187 -0
  27. truthound_dashboard/translate/providers/registry.py +217 -0
  28. truthound_dashboard/translate/translator.py +443 -0
  29. {truthound_dashboard-1.0.2.dist-info → truthound_dashboard-1.2.0.dist-info}/METADATA +123 -4
  30. {truthound_dashboard-1.0.2.dist-info → truthound_dashboard-1.2.0.dist-info}/RECORD +33 -11
  31. {truthound_dashboard-1.0.2.dist-info → truthound_dashboard-1.2.0.dist-info}/WHEEL +0 -0
  32. {truthound_dashboard-1.0.2.dist-info → truthound_dashboard-1.2.0.dist-info}/entry_points.txt +0 -0
  33. {truthound_dashboard-1.0.2.dist-info → truthound_dashboard-1.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,24 +1,27 @@
1
1
  truthound_dashboard/__init__.py,sha256=bzN84Y01SlEh5F8KkV-fGqPR82_tA0leAP6PyCXk8PY,504
2
2
  truthound_dashboard/__main__.py,sha256=Zq98OmYZm4NJ7n2yG5Qr07fkSiwMEQQE20gG1fpW7wo,133
3
- truthound_dashboard/cli.py,sha256=pKOsX3CHJxtwPTaGKXGs0ZUOU9P62wW6guAU5cWj7AQ,6169
3
+ truthound_dashboard/cli.py,sha256=1x7AN2g9H5pZ4sG2PakCpSdBYnviknJv7LRIauAPzgU,19348
4
4
  truthound_dashboard/config.py,sha256=fBSxoGitTe-9SeKkkQHtqNTcVxws5fvJ0YhF0EMuqG4,4089
5
5
  truthound_dashboard/main.py,sha256=tfwmNCRZ2RBub68KwAvO6a6d9LJB-S5YwZtjR6X0ywk,8129
6
6
  truthound_dashboard/api/__init__.py,sha256=rnbuYRDgh0GcqkR-d9Trkc8L0O34K4tMH6flyeQ9U98,361
7
+ truthound_dashboard/api/catalog.py,sha256=qQlsM4ubzjvI6rXwSY5214C-W93Ai-Xu1YjGVs1OoxE,10928
8
+ truthound_dashboard/api/collaboration.py,sha256=DxfpdUl_e8NfvDzv6-uwR32NN3Us7lLkzcif8RhvKyg,4720
7
9
  truthound_dashboard/api/deps.py,sha256=RqfEi6tp0OO9n5_Sh6QqoiiS4Gr7z77VMS-M6gEcbUY,3700
8
10
  truthound_dashboard/api/drift.py,sha256=pqpifxAifYVy2xr5EmGtLqZHfYYJ5exvrpWoB9eSEWo,5682
9
11
  truthound_dashboard/api/error_handlers.py,sha256=agovu0-CgMevgSvHh2aQnPjFpu1Wul_e67Vh9FAX_vM,8682
12
+ truthound_dashboard/api/glossary.py,sha256=Zdks7iHC9OLovgMJ28TELaET74OTQmUjP2TEwRLC8K4,10705
10
13
  truthound_dashboard/api/health.py,sha256=84UPWmnS-9Fqs39SyRD2gu4QPE3ZJkaqkp5qCHkizsw,1927
11
14
  truthound_dashboard/api/history.py,sha256=b6fy1pZfuwBqk3Yfeqnu8kaQcdNgWFMT7-0_29jLGOI,1792
12
15
  truthound_dashboard/api/middleware.py,sha256=4oqRCT6UhY-7HwoCy96b3vhaO7XBSrCW912IxAoDm-Q,19598
13
16
  truthound_dashboard/api/notifications.py,sha256=U1_VvgzAI3x5aKRg3zces1UwpbN9g-Tt6WFaOJziNfc,16800
14
17
  truthound_dashboard/api/profile.py,sha256=VtBpYGXuY1KbksWAornAVvrHsFnMjFXuKiUb6qp8Q3A,1389
15
- truthound_dashboard/api/router.py,sha256=abwYifmVaW6nUY-GyDvvQfqjkHQ9C82OHz6OK4Sqik0,1397
18
+ truthound_dashboard/api/router.py,sha256=ygiG6SzTETRQt5ystM1vJ2W-hDOwbpAt_ZzzRYyYKj0,2067
16
19
  truthound_dashboard/api/rules.py,sha256=6xcE5g7w9e_mt4M_XS7egIa16zcynYmXctmyayAKICs,7453
17
20
  truthound_dashboard/api/schedules.py,sha256=NMLU0szgZ2lGvVGuSJuEACZvc2qoeN65H-d2ANprj6E,8716
18
21
  truthound_dashboard/api/schemas.py,sha256=zkx3RNffRxtON-XUo1Xu5h13eIg63qs5pLdcM5atHuQ,3759
19
22
  truthound_dashboard/api/sources.py,sha256=uerDNqqQ4OVua_JbsDVS0fMMis-Q09mwQf6FiiOqRPU,5967
20
23
  truthound_dashboard/api/validations.py,sha256=D-8OyV8SuEAphTBhXEyclEZO_Jc-CjQ3ZqgZhXZLWHg,3557
21
- truthound_dashboard/core/__init__.py,sha256=gTKyzGPV8tfT6aFcLAC9bK0p4LKWjoq1yw3w1gtA5ME,6581
24
+ truthound_dashboard/core/__init__.py,sha256=AZryDS-BFT-LGsSJVqKXfe1iahf3AUsdpPFq2VgJVe8,6829
22
25
  truthound_dashboard/core/base.py,sha256=Jp2NFNCacIt2DStGOSvyUYnx1wV-FqDkX9gLroCbo5I,5293
23
26
  truthound_dashboard/core/cache.py,sha256=AP_7S5mK44vpQaTn5j2caQ5zumVdiQ7mICA4lIeK9y8,13937
24
27
  truthound_dashboard/core/connections.py,sha256=tytG1eyvRDXtfxIHvzInMAKtvZXYjXWgCvtrACH_RAk,9997
@@ -36,14 +39,22 @@ truthound_dashboard/core/notifications/channels.py,sha256=Z2TNrW81u2QJWvhd4Z6n2m
36
39
  truthound_dashboard/core/notifications/dispatcher.py,sha256=GXwqcss8_jnJL68BDaLy1Ld7OkLh4TiO3zj0Zf4l9_M,14077
37
40
  truthound_dashboard/core/notifications/events.py,sha256=mIkbW4m_8ofj1oYxm7o5FAxxJzP7_SIAz8WB1SeRdm4,4913
38
41
  truthound_dashboard/core/notifications/service.py,sha256=sPgfT-kow_gHoN9FaTuWXLXjo_LLwzJogelNPv5GiHM,21169
39
- truthound_dashboard/db/__init__.py,sha256=L4kwPQfFPw5rT0X7q-6V6zSHYDYgVpAB4Ti7SEJPZVc,1419
42
+ truthound_dashboard/core/phase5/__init__.py,sha256=-TNyj28lQC1YjoUtBBJj3ztksN65820Y-BWZRGIEOWA,447
43
+ truthound_dashboard/core/phase5/activity.py,sha256=GFCh4eU7ovDKUC_nE4j7Rk5CdxVLeUoF50A3_a6MvJk,4272
44
+ truthound_dashboard/core/phase5/catalog.py,sha256=hLVaIHxe9BxNp2Tdf7Ru-IIH-xDqUOOitN17zQmLuis,24241
45
+ truthound_dashboard/core/phase5/collaboration.py,sha256=5c2UXVZDGGTkAZ3N3onagNof-hza31tE1ak8t5uM4o0,8331
46
+ truthound_dashboard/core/phase5/glossary.py,sha256=6v3hYXpCQTZ5xaFwBM0IrXMiOeW4giNldHIjdY88ROA,24751
47
+ truthound_dashboard/db/__init__.py,sha256=e9jfHGvyNErb1RnA5x5ZXCIEenXxLjROP_yxQAu9oZk,2169
40
48
  truthound_dashboard/db/base.py,sha256=nj6DbYxAl5JoY0hC5rtM7pshOKpe-OH-AFsQqPGQzsM,2832
41
49
  truthound_dashboard/db/database.py,sha256=yQ9FsQSi29HvvW0t6BrkyX5YcHijRJEjGTTGfcCCw10,5078
42
- truthound_dashboard/db/models.py,sha256=spBx2_pWKutb-H6H-c31ByQvpS4kNmhTXA5kTvOtWME,25742
50
+ truthound_dashboard/db/models.py,sha256=rlVOcDCgHbup_L1wH6D9FICc_ZcVyHaQDYT_94s6LZY,47138
43
51
  truthound_dashboard/db/repository.py,sha256=48AJd65rwTSt1XqTN4vUeJ8nk416buE254JqipDCEEE,6890
44
- truthound_dashboard/schemas/__init__.py,sha256=8TQsBDD6X3vFspkz8s4qvbW9QPdjiGkYCDiUKQOdEUs,3156
52
+ truthound_dashboard/schemas/__init__.py,sha256=V-nrFHeKTSY55X6KyV2x0f0_-NgDLYrq8YeN8hlsb0Q,5546
45
53
  truthound_dashboard/schemas/base.py,sha256=lJUWh47Lz4E4sBGQDSS8jIfuSsTDbfxuOxvAMsvxfOg,2977
54
+ truthound_dashboard/schemas/catalog.py,sha256=Gc0ky7kuWyo7naJqyyJe-S9JDF5Ge_c9oeVpUEarQqw,10556
55
+ truthound_dashboard/schemas/collaboration.py,sha256=llFr14sm634pbqR9db4l8wH979jn2VpVUmi6DJ6dtHk,4864
46
56
  truthound_dashboard/schemas/drift.py,sha256=84jUqv6eTwdRlTwA1ZHf_BgnZej4gImyMcYEmAL3dDU,4361
57
+ truthound_dashboard/schemas/glossary.py,sha256=pY35k4zIf_4FYsdElD5fZJdJsPPQCn0Kk-EdwF8OCmI,10240
47
58
  truthound_dashboard/schemas/history.py,sha256=OVzBmbw7uz0C4IWt43P8QxNl9_OO_-WZRdA7L44_9yo,2771
48
59
  truthound_dashboard/schemas/profile.py,sha256=doM_RadBzXW5nt3_jus1AcExSjqa0BUYrE-qJb-GI_s,2920
49
60
  truthound_dashboard/schemas/rule.py,sha256=eIx9CdQ-gC6i-BpVsX714y-l0-TWY6VOVr0nSTkn_bk,5207
@@ -56,8 +67,19 @@ truthound_dashboard/static/mockServiceWorker.js,sha256=YjCST8vqgKtox7xb5sheYyz_b
56
67
  truthound_dashboard/static/assets/index-BqJMyAHX.js,sha256=CnD3z74mP7LPSpYSWMe0QhlBlEcxqZLV0AHxKqHPRkc,729900
57
68
  truthound_dashboard/static/assets/index-DMDxHCTs.js,sha256=cmQt_LGV46NZxoHsqxJvhbQXV9W0KJqrc5UzvQ63i10,875907
58
69
  truthound_dashboard/static/assets/index-Dm2D11TK.css,sha256=TuuwMdESlyprLzsKfN-b4H99eF9KXlPAWoi_Ty4wEeE,40337
59
- truthound_dashboard-1.0.2.dist-info/METADATA,sha256=PxF38QbklGmFqxpvidMalz_lRRd75KgWTo8X0Aun8qU,6743
60
- truthound_dashboard-1.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
61
- truthound_dashboard-1.0.2.dist-info/entry_points.txt,sha256=Xq8qadJ-Sqk4_0Ss_rhCqCv7uxPZZdwO3WUnbK0r6Hw,135
62
- truthound_dashboard-1.0.2.dist-info/licenses/LICENSE,sha256=qrBWTDMS8ZvwVJl3Yo2n8_AxOos3s8S9pcOzLW5Nivg,10763
63
- truthound_dashboard-1.0.2.dist-info/RECORD,,
70
+ truthound_dashboard/translate/__init__.py,sha256=Mv_xtMk4SaBGUsMgJqhwARnkJkZdq4OhJi5HdpdsBnw,1458
71
+ truthound_dashboard/translate/config_updater.py,sha256=AtJ7ero4cHKwUYQRDbGaPAlLmcyBv0IeBewdiTo0X8c,12038
72
+ truthound_dashboard/translate/exceptions.py,sha256=kPxCN2n_wYl3m6jVg_DRO8pagr55YpPU2e3Dt0YVQhc,3244
73
+ truthound_dashboard/translate/translator.py,sha256=2S35k_cJC1TXy-1XpAIDJZPI5_hKimeX3mNZ3osazik,14228
74
+ truthound_dashboard/translate/providers/__init__.py,sha256=zhG3eycCO2LCl9AVtRqvtqkIrjsTUqaftsN6YhZCpVw,1187
75
+ truthound_dashboard/translate/providers/anthropic.py,sha256=rBF2ueKqVunGrCYSyIDZGTzra1mK7-FOh7vACqg7nis,4522
76
+ truthound_dashboard/translate/providers/base.py,sha256=gYMjv5x1ICpZ-jFzv28tsJc7uTvkm8EVgDlTznbvAVQ,6490
77
+ truthound_dashboard/translate/providers/mistral.py,sha256=j0oh_mGksdMuIfbuZKq0yon6G6oabbO7fTgQzsKEZ7k,4692
78
+ truthound_dashboard/translate/providers/ollama.py,sha256=XlAHE14VvdSPKFbrJIbB3KUHzrgQm0Zj08snL71otUQ,7286
79
+ truthound_dashboard/translate/providers/openai.py,sha256=AeaOfRjNgCIgBdcX1gcYqqf41fXeEIyN3AiLAOy3SZc,6760
80
+ truthound_dashboard/translate/providers/registry.py,sha256=iwfcWYJ2uKfwWjsalhV4jSoyZC7bSeujK6sTMuylMMY,6474
81
+ truthound_dashboard-1.2.0.dist-info/METADATA,sha256=zXyFedj1mi9MsRFA150nzYTGciHnDGk1bWNVQ3c40IA,11118
82
+ truthound_dashboard-1.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
83
+ truthound_dashboard-1.2.0.dist-info/entry_points.txt,sha256=Xq8qadJ-Sqk4_0Ss_rhCqCv7uxPZZdwO3WUnbK0r6Hw,135
84
+ truthound_dashboard-1.2.0.dist-info/licenses/LICENSE,sha256=qrBWTDMS8ZvwVJl3Yo2n8_AxOos3s8S9pcOzLW5Nivg,10763
85
+ truthound_dashboard-1.2.0.dist-info/RECORD,,