julee 0.1.3__py3-none-any.whl → 0.1.5__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 (82) hide show
  1. julee/__init__.py +1 -1
  2. julee/api/tests/routers/test_assembly_specifications.py +2 -0
  3. julee/api/tests/routers/test_documents.py +8 -6
  4. julee/api/tests/routers/test_knowledge_service_configs.py +2 -0
  5. julee/api/tests/routers/test_knowledge_service_queries.py +2 -0
  6. julee/api/tests/routers/test_system.py +2 -0
  7. julee/api/tests/routers/test_workflows.py +2 -0
  8. julee/api/tests/test_app.py +2 -0
  9. julee/api/tests/test_dependencies.py +2 -0
  10. julee/api/tests/test_requests.py +2 -0
  11. julee/contrib/polling/__init__.py +22 -19
  12. julee/contrib/polling/apps/__init__.py +17 -0
  13. julee/contrib/polling/apps/worker/__init__.py +17 -0
  14. julee/contrib/polling/apps/worker/pipelines.py +288 -0
  15. julee/contrib/polling/domain/__init__.py +7 -9
  16. julee/contrib/polling/domain/models/__init__.py +6 -7
  17. julee/contrib/polling/domain/models/polling_config.py +18 -1
  18. julee/contrib/polling/domain/services/__init__.py +6 -5
  19. julee/contrib/polling/domain/services/poller.py +1 -1
  20. julee/contrib/polling/infrastructure/__init__.py +9 -8
  21. julee/contrib/polling/infrastructure/services/__init__.py +6 -5
  22. julee/contrib/polling/infrastructure/services/polling/__init__.py +6 -5
  23. julee/contrib/polling/infrastructure/services/polling/http/__init__.py +6 -5
  24. julee/contrib/polling/infrastructure/services/polling/http/http_poller_service.py +5 -2
  25. julee/contrib/polling/infrastructure/temporal/__init__.py +12 -12
  26. julee/contrib/polling/infrastructure/temporal/activities.py +1 -1
  27. julee/contrib/polling/infrastructure/temporal/manager.py +291 -0
  28. julee/contrib/polling/infrastructure/temporal/proxies.py +1 -1
  29. julee/contrib/polling/tests/unit/apps/worker/test_pipelines.py +580 -0
  30. julee/contrib/polling/tests/unit/infrastructure/services/polling/http/test_http_poller_service.py +40 -2
  31. julee/contrib/polling/tests/unit/infrastructure/temporal/__init__.py +7 -0
  32. julee/contrib/polling/tests/unit/infrastructure/temporal/test_manager.py +475 -0
  33. julee/docs/sphinx_hcd/__init__.py +4 -10
  34. julee/docs/sphinx_hcd/accelerators.py +277 -180
  35. julee/docs/sphinx_hcd/apps.py +78 -59
  36. julee/docs/sphinx_hcd/config.py +16 -16
  37. julee/docs/sphinx_hcd/epics.py +47 -42
  38. julee/docs/sphinx_hcd/integrations.py +53 -49
  39. julee/docs/sphinx_hcd/journeys.py +124 -110
  40. julee/docs/sphinx_hcd/personas.py +75 -53
  41. julee/docs/sphinx_hcd/stories.py +99 -71
  42. julee/docs/sphinx_hcd/utils.py +23 -18
  43. julee/domain/models/assembly/tests/test_assembly.py +2 -0
  44. julee/domain/models/assembly_specification/tests/test_assembly_specification.py +2 -0
  45. julee/domain/models/assembly_specification/tests/test_knowledge_service_query.py +2 -0
  46. julee/domain/models/custom_fields/tests/test_custom_fields.py +2 -0
  47. julee/domain/models/document/document.py +12 -21
  48. julee/domain/models/document/tests/test_document.py +16 -34
  49. julee/domain/models/policy/tests/test_document_policy_validation.py +2 -0
  50. julee/domain/models/policy/tests/test_policy.py +2 -0
  51. julee/domain/use_cases/extract_assemble_data.py +1 -1
  52. julee/domain/use_cases/initialize_system_data.py +75 -21
  53. julee/domain/use_cases/tests/test_extract_assemble_data.py +2 -0
  54. julee/domain/use_cases/tests/test_initialize_system_data.py +2 -0
  55. julee/domain/use_cases/tests/test_validate_document.py +2 -0
  56. julee/fixtures/documents.yaml +4 -43
  57. julee/fixtures/knowledge_service_queries.yaml +9 -0
  58. julee/maintenance/release.py +90 -30
  59. julee/repositories/memory/document.py +19 -13
  60. julee/repositories/memory/tests/test_document.py +20 -18
  61. julee/repositories/memory/tests/test_document_policy_validation.py +2 -0
  62. julee/repositories/memory/tests/test_policy.py +2 -0
  63. julee/repositories/minio/document.py +25 -22
  64. julee/repositories/minio/tests/test_assembly.py +2 -0
  65. julee/repositories/minio/tests/test_assembly_specification.py +2 -0
  66. julee/repositories/minio/tests/test_client_protocol.py +3 -0
  67. julee/repositories/minio/tests/test_document.py +18 -16
  68. julee/repositories/minio/tests/test_document_policy_validation.py +2 -0
  69. julee/repositories/minio/tests/test_knowledge_service_config.py +2 -0
  70. julee/repositories/minio/tests/test_knowledge_service_query.py +2 -0
  71. julee/repositories/minio/tests/test_policy.py +2 -0
  72. julee/services/knowledge_service/anthropic/tests/test_knowledge_service.py +2 -0
  73. julee/services/knowledge_service/memory/test_knowledge_service.py +2 -0
  74. julee/services/knowledge_service/test_factory.py +2 -0
  75. julee/util/tests/test_decorators.py +2 -0
  76. julee-0.1.5.dist-info/METADATA +103 -0
  77. {julee-0.1.3.dist-info → julee-0.1.5.dist-info}/RECORD +80 -74
  78. julee/fixtures/assembly_specifications.yaml +0 -70
  79. julee-0.1.3.dist-info/METADATA +0 -198
  80. {julee-0.1.3.dist-info → julee-0.1.5.dist-info}/WHEEL +0 -0
  81. {julee-0.1.3.dist-info → julee-0.1.5.dist-info}/licenses/LICENSE +0 -0
  82. {julee-0.1.3.dist-info → julee-0.1.5.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- julee/__init__.py,sha256=8XYQJwEwJdGsPw23i7Zi_8hYCqNqRVrcPTlM0tkTO4g,111
1
+ julee/__init__.py,sha256=vG46rbd6qYeNtSgP3Awo8RqA2n7Qka3HlsGutEc7sZM,111
2
2
  julee/worker.py,sha256=26k7LkpLft8emjVsSRCK7VmbtTEaBxjokX_5CC52LDM,7231
3
3
  julee/api/__init__.py,sha256=bJECAJifuV-pochMVeDqKhQ63jvXel3W4Y0_NK9gn8s,801
4
4
  julee/api/app.py,sha256=I4a7fi9rE_0r92jmMusOxlcMalFnTy8qb4yyxKYg6-Q,4955
@@ -15,73 +15,80 @@ julee/api/routers/workflows.py,sha256=k7Qcw28sJRcJUAbM9pj3Y81h6gBHvYHW6mSxihQFq8
15
15
  julee/api/services/__init__.py,sha256=YSzraaC6qD7pkEUXqbhlJH3dhwvGusywztnYnIOqJbM,660
16
16
  julee/api/services/system_initialization.py,sha256=V3CGizs4Vvi6jGzW2fPuftkEHaw80y14Z_Ync5U3w40,6915
17
17
  julee/api/tests/__init__.py,sha256=SAJjurDfB0ac0AUIzRvBsGEupR6BOp2dqNdfNeyXoTQ,411
18
- julee/api/tests/test_app.py,sha256=PiQGKOzSr3x-8Q9t5NaPLcpTxZVmpwB2JFE5ZOIQx9U,9874
19
- julee/api/tests/test_dependencies.py,sha256=BpMGWilh9wbWW4aYuu_Agw7LL7YjfLVGqnIofWS_zEs,9245
20
- julee/api/tests/test_requests.py,sha256=JxiSL38VDoo-6pdoWy9iJrXWbTJa18enoN5jI79COcE,9877
18
+ julee/api/tests/test_app.py,sha256=EYIwQlWloLxMF_EkTUW9kV_8tZhqe992s6OIKGNWesc,9905
19
+ julee/api/tests/test_dependencies.py,sha256=FkDI_e3EOxGwWj4su9n65qt7OOa0UwVwDvKLOZQT4XI,9276
20
+ julee/api/tests/test_requests.py,sha256=0wSite_5O5vDYQAacC10VFvUBcLZoAHEa6zLTc_jgsU,9908
21
21
  julee/api/tests/routers/__init__.py,sha256=IawydYDi3sIBEPE6vyX8r_UBxUKc6NDh_UFL2kqdbqM,634
22
- julee/api/tests/routers/test_assembly_specifications.py,sha256=3puq2f4l1OwLxEBbzstNaJ6e-t3iKABsrIlI29i0okQ,27462
23
- julee/api/tests/routers/test_documents.py,sha256=v6QaYOimLsxu7qu-UxxdecX3jz5392q1yJHP6NrTLRY,10726
24
- julee/api/tests/routers/test_knowledge_service_configs.py,sha256=EO2Ngfrd0oQvUKVrbxQ7T5lvfG5eBXcfQ9NDvsJks3g,7848
25
- julee/api/tests/routers/test_knowledge_service_queries.py,sha256=m-uqPQQQxX0cEx3NVNt-xdgjjSXhinAGZnJVZQIrFK0,26191
26
- julee/api/tests/routers/test_system.py,sha256=xoOdf0Lt8PO212x4GpM8B5gAyTFbjdjcg5q8sHbC1cA,6287
27
- julee/api/tests/routers/test_workflows.py,sha256=jcmSOXTJvZacNjWe3jwm_IxqKP3G-pXxmp3ErLsgsR8,13648
22
+ julee/api/tests/routers/test_assembly_specifications.py,sha256=wxw4GNlyaDyWI-AWMQ14LCw4bRlxCjYokYnqMRhoZ2U,27493
23
+ julee/api/tests/routers/test_documents.py,sha256=-I7JAdYQmJSaie8jso67myUg17nUKgX9ptWXmMLVEEI,10751
24
+ julee/api/tests/routers/test_knowledge_service_configs.py,sha256=iqZYC7J6Nswb5ALqpg_IdwzCnskgBrYiCSHbSBUuUuI,7879
25
+ julee/api/tests/routers/test_knowledge_service_queries.py,sha256=PZQ3hSy6MHqSRnPFX-2__UJSpOMaOKogqRc4JP8e3vI,26222
26
+ julee/api/tests/routers/test_system.py,sha256=livmWhccmkYdTTUBoERcsvkmfVIG9IpI_FxcaS55IpI,6318
27
+ julee/api/tests/routers/test_workflows.py,sha256=sg3Xl6zzMzgd9IkLzceGIRRKJZA2ZZ4PbqW7dMlhgWY,13679
28
28
  julee/contrib/__init__.py,sha256=RFlW03DFJQxINJCCif7s67LPOKW4rI4BuYWTUbakkGc,503
29
- julee/contrib/polling/__init__.py,sha256=aNY3esupKvyc7sLtU_lrpZHozwco9gyzozgorepgNqA,1458
30
- julee/contrib/polling/domain/__init__.py,sha256=Br8M36GJ3UJl3zwk9AwEcx8kkMSb-CVsn7ANH2unrBw,446
31
- julee/contrib/polling/domain/models/__init__.py,sha256=UEL0aGwCg1Y2D5KyJ5VvVK4-lLaZeVevBLfMapfP-No,263
32
- julee/contrib/polling/domain/models/polling_config.py,sha256=3YkormKPgzDXvAXBv0VBnjoDi7zaZ-PuRML33lkQpxo,1086
33
- julee/contrib/polling/domain/services/__init__.py,sha256=k5lhY6roLD68n_O8K4PP3aXH1UkXy8RapKErhhZH9_M,180
34
- julee/contrib/polling/domain/services/poller.py,sha256=7rTq9fawrdfdAMayrYmVwSfkHWbSbbqSs2Z8zPVjopE,1218
35
- julee/contrib/polling/infrastructure/__init__.py,sha256=xM3TBrkxAijtXCLl5_EFrRRUDVQFjD41PohT7lWXCuc,413
36
- julee/contrib/polling/infrastructure/services/__init__.py,sha256=QgoNNS9XPl_tCO-52m_ct37NBzT85_jjWdA-8QbuDJs,246
37
- julee/contrib/polling/infrastructure/services/polling/__init__.py,sha256=kbUXRCuAFZN-7Xo44MQEdSC9AYKNfvru-cWgwYrS6rA,229
38
- julee/contrib/polling/infrastructure/services/polling/http/__init__.py,sha256=mSMy6_2eKnrh2tetiVrf9iQEhxbGs_csQlUy82I1s6c,219
39
- julee/contrib/polling/infrastructure/services/polling/http/http_poller_service.py,sha256=yK7porLBkEXaW6yBcO6-KBEfpjzCsv-i0iCjCSIooQo,2671
40
- julee/contrib/polling/infrastructure/temporal/__init__.py,sha256=zsBmr9JY2Kb4vIf97NwIvqnuKzWsXgO9EHa47yrkpjw,662
41
- julee/contrib/polling/infrastructure/temporal/activities.py,sha256=i1jVpMm6a8j60Ug0gKQ3F5QPW0qcrD0vtzdqickym5c,1456
29
+ julee/contrib/polling/__init__.py,sha256=xk0bRSShKdJXcm8CMqJ7tQWSBdLwOLLj05-pXd2cUSM,2115
30
+ julee/contrib/polling/apps/__init__.py,sha256=f1SCPBxN5pD-okEz7Bc7q8ApVSmhTxxb7edZq3z7ejU,619
31
+ julee/contrib/polling/apps/worker/__init__.py,sha256=a7q35Tmmia0NxfCxwMeWeOq5ZacZ082VYxe_9hseYOE,619
32
+ julee/contrib/polling/apps/worker/pipelines.py,sha256=aScz2hGynJ7_vYjwUsx6QMAxxbgj2JqWzezMHkxd0Bo,11021
33
+ julee/contrib/polling/domain/__init__.py,sha256=9TGbfrNXaQgjrCOUwAifidSQ3CP7FAqQUNVpXk5GAUo,576
34
+ julee/contrib/polling/domain/models/__init__.py,sha256=AUgbHTVy2AHYTfaLKG1DvtE11UB1B-xzaFVCtQoHzC0,369
35
+ julee/contrib/polling/domain/models/polling_config.py,sha256=6n89yP5c1XblKvnj4vialLgrmqzLcY3p_LV_4aTYaUo,1720
36
+ julee/contrib/polling/domain/services/__init__.py,sha256=vyZJwPf2595jVTs9TCcU4w7df2OvhM2HdbYQbMWUjr8,332
37
+ julee/contrib/polling/domain/services/poller.py,sha256=UXbaXOwEeaivfIY5YqB0IqbGeMXh_92jdHtDopTPqW0,1233
38
+ julee/contrib/polling/infrastructure/__init__.py,sha256=e6DpiyFHdx03pZ-SXVU6eM-u0Djwnra_oajYFiYJ5dw,709
39
+ julee/contrib/polling/infrastructure/services/__init__.py,sha256=TOK7Y2P9yNpx-AUmFSPSuIiN0Jw-ngEb9ts3gPy3l60,407
40
+ julee/contrib/polling/infrastructure/services/polling/__init__.py,sha256=tdM0ylrmhPh9fA3EfgmeOwqkQaYc-ztPi6PMatLh01A,393
41
+ julee/contrib/polling/infrastructure/services/polling/http/__init__.py,sha256=Dh6ryomDtauQO1gdtfQ1j3J2ZDUtwumHjHEdG3FC_C0,388
42
+ julee/contrib/polling/infrastructure/services/polling/http/http_poller_service.py,sha256=Ul_64NoAy51IsHZLBr1UQklTCs2QxNZv7XCP_rh249E,2706
43
+ julee/contrib/polling/infrastructure/temporal/__init__.py,sha256=PxgpYra_LFKW7tmag4DmuQvzDN2jeiCQuVBmu5Qfc78,923
44
+ julee/contrib/polling/infrastructure/temporal/activities.py,sha256=M7fs-5wujESsUNoiB-Y-OUHa6N6pFUcjnqa8nBtFR4w,1476
42
45
  julee/contrib/polling/infrastructure/temporal/activity_names.py,sha256=zdTu8-b7ucrJH5bIbFGv-nvXf2ZOvWs0YaBsUWC8FWM,668
43
- julee/contrib/polling/infrastructure/temporal/proxies.py,sha256=mFpHjxtJ-eqm5tYUoA1Te8Fb2lfTwXz-tpHubNLIE0Y,1502
46
+ julee/contrib/polling/infrastructure/temporal/manager.py,sha256=90T5jikv7F-wB4cCdmCIWyQxOf1o5dswneAz7n3KpwQ,9660
47
+ julee/contrib/polling/infrastructure/temporal/proxies.py,sha256=eiYr1d0tXkREpbJx7nG5Otc7FCxNJrLFtj2CMzJd5iM,1509
44
48
  julee/contrib/polling/tests/__init__.py,sha256=0GSU_Gc9HtB0h6w5_c1qUdMWqCp2FVx-BV-IOR9_uo0,175
45
49
  julee/contrib/polling/tests/unit/__init__.py,sha256=8QbeJjQZj0nIKd3F1eTXCR9utxZtiYQzkTyk4yGhCvM,160
50
+ julee/contrib/polling/tests/unit/apps/worker/test_pipelines.py,sha256=_1bvvOV9LDYuup9OmKTBvYm7acL55o98Yku2i39kU4E,23306
46
51
  julee/contrib/polling/tests/unit/infrastructure/__init__.py,sha256=BEFimVM4poUCs2AKZOggF4L07T96L85UnfIkt8qxFys,238
47
52
  julee/contrib/polling/tests/unit/infrastructure/services/__init__.py,sha256=WCf2KzGeMChltre8YYf8IUtElgP4NmdugNOmKxno0Lw,190
48
53
  julee/contrib/polling/tests/unit/infrastructure/services/polling/__init__.py,sha256=ygTzYEe2Zok4pwmGOd2G_Gf5sE5kaC6xHiFmZADiYvs,228
49
54
  julee/contrib/polling/tests/unit/infrastructure/services/polling/http/__init__.py,sha256=OVMmGLJ7KEmvKeoDakizgFXSi-Z4QvHFh4B0CINbGSM,283
50
- julee/contrib/polling/tests/unit/infrastructure/services/polling/http/test_http_poller_service.py,sha256=4B-CTyeHVYRAv-TmG9igSk_ifQeZNYNDeF8uPRz-bHk,6212
55
+ julee/contrib/polling/tests/unit/infrastructure/services/polling/http/test_http_poller_service.py,sha256=EQ7CV_CCgJIVfpunLvy8fc4lOSUoxiNdHW21TDB27mM,7613
56
+ julee/contrib/polling/tests/unit/infrastructure/temporal/__init__.py,sha256=8SkkiZsr_RjD__H27tObR2F6EennVe7F_hsnHvmqGUI,267
57
+ julee/contrib/polling/tests/unit/infrastructure/temporal/test_manager.py,sha256=gintS5ZyaHfo16GJb5YL-MKoOERnN7na8P4BK42OgeA,18818
51
58
  julee/docs/__init__.py,sha256=wknBFq8RF9S1M-oU-S1sw3UWQsmZSjq5Oj7HCCh1AHg,169
52
- julee/docs/sphinx_hcd/__init__.py,sha256=W2uHpBQmyF4oaylidDv41S1ggUpyOkzJPZXSurXII9o,2480
53
- julee/docs/sphinx_hcd/accelerators.py,sha256=n14PPjVLCm0mSQ3VMCaVEEMaVBGoI0_Au4lip8SdBnU,37358
54
- julee/docs/sphinx_hcd/apps.py,sha256=Fwd5pWae_VRMHcBPa9ALy17RCExoXw-mmkuQbTTevmI,15932
55
- julee/docs/sphinx_hcd/config.py,sha256=VisFQ05iDU8Qq2AbXuu8aiMGBXQ-cIlWO7d9is8H_pc,4159
56
- julee/docs/sphinx_hcd/epics.py,sha256=80j2NpFIzO5C0o-lZq5oJKb9MsdNgUcUxjd4wnRWSmA,13879
57
- julee/docs/sphinx_hcd/integrations.py,sha256=9LU5cWaHLaS2QJmv9vFebWFH2hPNWQz4-oMcAYQ9RYw,9796
58
- julee/docs/sphinx_hcd/journeys.py,sha256=cfZFp0fjYnC-WS9yY1yiBizELMSbNU90_vgXz4Bd5Gs,26472
59
- julee/docs/sphinx_hcd/personas.py,sha256=QDoFAFC5vxXCnmnm8M-WZDvMHPRuHXOqYwUv4g32PnQ,13690
60
- julee/docs/sphinx_hcd/stories.py,sha256=1iku_hFKSVap-O3uGKunZJwoPameMlR6wC4ssCyiUhI,31913
61
- julee/docs/sphinx_hcd/utils.py,sha256=kiLVN0BgXZTEUqWvXD9oAd5KPJo1t_uVuKvZNbjNAbg,4403
59
+ julee/docs/sphinx_hcd/__init__.py,sha256=mpEbmaDGoT74LGDS9wCEakov2mzagpFvWGp6TDDJegA,2378
60
+ julee/docs/sphinx_hcd/accelerators.py,sha256=fNrP9ztTbNjAe0sib23RnkkEuxk3cBkb8lfMojtqz0M,38759
61
+ julee/docs/sphinx_hcd/apps.py,sha256=lNHVJrF-OQ4c6VTv4MZn2b3ewcmSW3IvvgZyUD1HDwk,15974
62
+ julee/docs/sphinx_hcd/config.py,sha256=ilxLjnrG7oLgbSSUL90biFj7xxohgij4hlEfYSjIX0A,4159
63
+ julee/docs/sphinx_hcd/epics.py,sha256=anZXSrvWTzD6SU1fzBioMxZccIjym0TDmppN_eOVCN8,13894
64
+ julee/docs/sphinx_hcd/integrations.py,sha256=3baWEph9uYMipeWrPywmeRMko8LdkQx-LFQvkVcoJ08,9796
65
+ julee/docs/sphinx_hcd/journeys.py,sha256=abmd9kplnsy3gB209Iq_tFOseABkPJU4MGYEAHCSjhY,26582
66
+ julee/docs/sphinx_hcd/personas.py,sha256=V4l6-31KgkDe-TEY0iDEe_TBI3VlFQJyZgAc6m8GKNQ,13662
67
+ julee/docs/sphinx_hcd/stories.py,sha256=cFiNGDlpOE6wNEjZowzlmaGc_bK6xJjzYed9aIQFZLY,32233
68
+ julee/docs/sphinx_hcd/utils.py,sha256=lkmyQShHWLoU6nwxs4PS5pxn_jjsRWVeAexizR46PhA,4488
62
69
  julee/domain/__init__.py,sha256=UWEUgtMguDCCsRbTQtsdkaR8-PBei9YI9tn46FtDLe8,774
63
70
  julee/domain/models/__init__.py,sha256=HQYop2b0QjroxFHskoX4lcuMVIFRj8jteUI-P9TTze4,1230
64
71
  julee/domain/models/assembly/__init__.py,sha256=3bivk26_gmKFUhoUMHumsFHRrXyhgv0ClTxyBPWr9B0,494
65
72
  julee/domain/models/assembly/assembly.py,sha256=w7NMRKpu0e6NpWvecIZvvnBsnK9484WtMubEp9gsyd8,3593
66
73
  julee/domain/models/assembly/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
74
  julee/domain/models/assembly/tests/factories.py,sha256=8piauYltuzpNkX5I2g5PJ9bxXoFzvlZ9dv5FSteIcMg,1021
68
- julee/domain/models/assembly/tests/test_assembly.py,sha256=QxtAJBxM0ZvpAFFkHAK8erAc_oCptfSYW-2DncSAfRw,16429
75
+ julee/domain/models/assembly/tests/test_assembly.py,sha256=4eKIjpAeN0XoFRFDpaShjh7pOsTEy6QzXm1TshOJwvg,16460
69
76
  julee/domain/models/assembly_specification/__init__.py,sha256=8oHXxCUAwplrL1lTKNyLQg7QxFapmPgroU0W6TMWTNA,804
70
77
  julee/domain/models/assembly_specification/assembly_specification.py,sha256=bolyMo8eubj--W5k9yC_CZLU-99eXPTkSPtwjHcJmho,6783
71
78
  julee/domain/models/assembly_specification/knowledge_service_query.py,sha256=daVcEsOWN45Z0rjMAkTAiU8M8yiqrHUvCW1wchxsN-4,4282
72
79
  julee/domain/models/assembly_specification/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
80
  julee/domain/models/assembly_specification/tests/factories.py,sha256=CfVY65UW9PtC3isPervUH5pvtzquiHhxClyCG1LqAro,2370
74
- julee/domain/models/assembly_specification/tests/test_assembly_specification.py,sha256=R-73DHZv_ItRIBgruaOgl9sAek22s8a8T5BT7tRrI3M,18189
75
- julee/domain/models/assembly_specification/tests/test_knowledge_service_query.py,sha256=wg34sF3TDcocRS737tTzNTsFAfVjFvfObmYproXLlD8,10411
81
+ julee/domain/models/assembly_specification/tests/test_assembly_specification.py,sha256=AyW8eepsUAaY_TcE7zrQBl8lxE3o06i0ux26nECE9UE,18220
82
+ julee/domain/models/assembly_specification/tests/test_knowledge_service_query.py,sha256=nEmLzAgSUaPfXnYPeuqyuidyjU39ah-Zp1NAK04SfGI,10442
76
83
  julee/domain/models/custom_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
84
  julee/domain/models/custom_fields/content_stream.py,sha256=DRpGjMSUuUwOzbJW-_pVy43IgvqQYn_Qi0612QJjlpY,2348
78
85
  julee/domain/models/custom_fields/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- julee/domain/models/custom_fields/tests/test_custom_fields.py,sha256=1x-MH3FFgC5Ltw7tTqvvWpb1ZnsoRb7BtJ-p6EcdZuQ,1936
86
+ julee/domain/models/custom_fields/tests/test_custom_fields.py,sha256=JRzrM12bF8dzJFH2lKLQwlJlW_t5E2yWfvRfH8kLVqw,1967
80
87
  julee/domain/models/document/__init__.py,sha256=DJr8HKqB47AiJ5YIrTf3E-mpFYiKLLOZPEN8qcAJPWI,469
81
- julee/domain/models/document/document.py,sha256=xxKfBRdz0-lL-YFS0LN9ba3mGJUoBUq8linpJ5PpI6w,5640
88
+ julee/domain/models/document/document.py,sha256=DgQNP_7alH3qHIhOS77Cx_JvTxZwTLtVuMrU4N5ztAU,5079
82
89
  julee/domain/models/document/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
90
  julee/domain/models/document/tests/factories.py,sha256=4sgVAOXInPO-RnT4ChO4zWWB0cAF9JFwYA50j692Ir0,2457
84
- julee/domain/models/document/tests/test_document.py,sha256=AVImfTZgLceUupEs64gEHwzRO9BGXp0wRyinntbNg98,9830
91
+ julee/domain/models/document/tests/test_document.py,sha256=rEdVz2tPdpB_kVRs-O968fnlHXfCc-FeIoS42IemAyg,9124
85
92
  julee/domain/models/knowledge_service_config/__init__.py,sha256=5qYB-nGcVp6CIP7V85hzsQqvBg3HAq5H_p9hPQ5YqGM,431
86
93
  julee/domain/models/knowledge_service_config/knowledge_service_config.py,sha256=WAoFtVv60leuWu0pyZrjy46tFD89lCcEHRMshSLnuBU,2945
87
94
  julee/domain/models/policy/__init__.py,sha256=jsmjUb1QHD8T5X1Ri_wJkAQTaRig4B997yb6_ll2uC0,283
@@ -89,8 +96,8 @@ julee/domain/models/policy/document_policy_validation.py,sha256=uc9Y3yvz8wof6tit
89
96
  julee/domain/models/policy/policy.py,sha256=hqSJg3CzKnfcKkVRHfbEJUEvnnGqNNytAVozOXN4teA,7036
90
97
  julee/domain/models/policy/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
98
  julee/domain/models/policy/tests/factories.py,sha256=b8stP-3ovjgckGzaKTpGY2XrfvzgoKq97ru8aCB02so,1300
92
- julee/domain/models/policy/tests/test_document_policy_validation.py,sha256=TzVdOg_Y1hTaWoptQ9b9D0bOaj29-jPf_JKjft6YMn0,15888
93
- julee/domain/models/policy/tests/test_policy.py,sha256=g7z9vvmkT0aJPHF2x8lHfjJgBOj6TcH1pejZWjwXvhk,20398
99
+ julee/domain/models/policy/tests/test_document_policy_validation.py,sha256=ypY9tadYNoUN7m6jLs308aPNvJXtR896bCsovPkkIZo,15919
100
+ julee/domain/models/policy/tests/test_policy.py,sha256=aoJ2sHXA1wzeUjxUwx_8Cm2I4OOGgenz0TZmP6Ie2e4,20429
94
101
  julee/domain/repositories/__init__.py,sha256=mRJ6MuktqbV93tLrtpBBoP1uPwXe8krqBQjxAgsU0B8,949
95
102
  julee/domain/repositories/assembly.py,sha256=4LWo3LcyheuNkZ4U8oV6NAXEcFHxkE46Oa2a97YMMiE,1686
96
103
  julee/domain/repositories/assembly_specification.py,sha256=XLxH1lPgr6LJiSyVdB3eZU7Kdr1UVwSvsoXroBMdxKI,2070
@@ -102,52 +109,51 @@ julee/domain/repositories/knowledge_service_query.py,sha256=9qrWMLT9Xxms9Q7fMjBb
102
109
  julee/domain/repositories/policy.py,sha256=-1Miwk_wmblr9QqVb4aZ_ajk9YIwPUXhxfhGG5CTuFQ,1874
103
110
  julee/domain/use_cases/__init__.py,sha256=rKJyunXCHorEyxPfKDEYD27kese53e5spCfFTbDxpOc,534
104
111
  julee/domain/use_cases/decorators.py,sha256=mMlR5ws94frAZEUEjj545cZpwnTimZI6JVpMlGu3EpA,3497
105
- julee/domain/use_cases/extract_assemble_data.py,sha256=2gBgvBAfZuEXeYxROcrXCiUZUzFJUdSiunBQEf0G17g,24979
106
- julee/domain/use_cases/initialize_system_data.py,sha256=ff9iB7Hn4EbJDI0ZZprvrvzyr_XjQtqSDUBHlFE4a8E,29252
112
+ julee/domain/use_cases/extract_assemble_data.py,sha256=D7w63bR-3WXpwDaj2SH_L4ZO-pp4lHWV-K0--xLa7Qs,24946
113
+ julee/domain/use_cases/initialize_system_data.py,sha256=CIYasO96HQMKXh098Gw3r2rerPKsVXRRVLsxnSJnVfo,31330
107
114
  julee/domain/use_cases/validate_document.py,sha256=noLzQp4hSJVAr-hL668ywxe4m7aNv2yuBMZzPgJPpIs,28219
108
115
  julee/domain/use_cases/tests/__init__.py,sha256=xKgoU78i5zK5mlZ2NNfp8nhbnb9fIcNwCTcQD0j9gEw,199
109
- julee/domain/use_cases/tests/test_extract_assemble_data.py,sha256=uNcKtzy-u7nwr68wOdDmXLdfw_2p4SA0Lm3czec9mAI,21596
110
- julee/domain/use_cases/tests/test_initialize_system_data.py,sha256=6JwxQDNwknyPqtmSugKn2Eq1CA1Y8rFEb44yrN1_SCA,17918
111
- julee/domain/use_cases/tests/test_validate_document.py,sha256=_VcGZK98oDzxN0iLP81hIVdjCPbgmjIJwFeBn5MuWZk,50922
112
- julee/fixtures/assembly_specifications.yaml,sha256=ke3KFR3vRoGPMYZ8AmOvgVRY1-pmicCrfEEAov37sIA,2202
113
- julee/fixtures/documents.yaml,sha256=nAI2ReHxoaPdPW2b4IFAWNw5N_1aHgexa_fMMWMr3lw,6389
116
+ julee/domain/use_cases/tests/test_extract_assemble_data.py,sha256=erhTWfHx-FnoFVL1Kg8aT6hM4bd7-ewyuQwB_8f17T4,21627
117
+ julee/domain/use_cases/tests/test_initialize_system_data.py,sha256=1IyjuNPMBdnqCqn425vQpHrpVFJtvi_6N3hC6i2LoFE,17949
118
+ julee/domain/use_cases/tests/test_validate_document.py,sha256=JVMx3pXUbzYMLnT3Ah3UnCN8TUzEFzBv_D-QuKGelcw,50953
119
+ julee/fixtures/documents.yaml,sha256=QMPbdMtjvsf08iFuNa4U2Kx7nTIGVpeRMlp-eeW9dY0,4918
114
120
  julee/fixtures/knowledge_service_configs.yaml,sha256=SfJO1SJFzYtF2Y7XTZmhl3d9Eiv2-xMrHKW1kI7NhI0,1378
115
- julee/fixtures/knowledge_service_queries.yaml,sha256=63Mrz083lFBXV94tB40eob5VxuTyKp8ZgN8vk8KcjoY,1706
121
+ julee/fixtures/knowledge_service_queries.yaml,sha256=uYKD24jMIBhHjGaItyDVqtRlHLVeIRCw8XfhNjiMENk,2447
116
122
  julee/maintenance/__init__.py,sha256=tThzvZBQ4bTSiXVfLVuHI2uLQOhZRMfND1ndj26BNu0,65
117
- julee/maintenance/release.py,sha256=tfxEdd2RibsQS9bAbapcbGrKL6Lbsi9X1wcf2KbF11k,5849
123
+ julee/maintenance/release.py,sha256=DavyBtyFb-hngtg8K36LjNx76DfrPDgFUbZePDW2lhk,7733
118
124
  julee/repositories/__init__.py,sha256=mJpDFYP5f4LBhavYSnC3SnTcWnozMCz7aXje4iB5pyU,571
119
125
  julee/repositories/memory/__init__.py,sha256=w0ibQfMm3HYdFhLXXMPa_aRtbRiG60j2bqmEGdjmOtg,1225
120
126
  julee/repositories/memory/assembly.py,sha256=1XuLtNiVKVg8jqwHxzQPJS-YmLGR0PtTiD_XhoPSUSo,2807
121
127
  julee/repositories/memory/assembly_specification.py,sha256=pPv3nJuAdqkS3wMs220vp_4uu0OMH3EOuMwWQnk-ZNg,4234
122
128
  julee/repositories/memory/base.py,sha256=9FSV9cIgFBfhPqZcUhprDo5QyE9YK-a1m2bnwKX04wQ,7722
123
- julee/repositories/memory/document.py,sha256=ndp82jDsQ_clV4MT_OMPV0z3ie45-gi-IRdLNAJZCRA,5242
129
+ julee/repositories/memory/document.py,sha256=-lcB37q4KIMVL9NxRBq4wq7tuyY7-h4_BI_N62fDSrA,5481
124
130
  julee/repositories/memory/document_policy_validation.py,sha256=vjSAT6tk-V4IbWTKZjUTgTQ15YlR1MAZjbYnGprn8Wo,3715
125
131
  julee/repositories/memory/knowledge_service_config.py,sha256=sG7bHAO2O131k7GD-8RwGrQ3VNyyEZulVIVBps57aAM,4215
126
132
  julee/repositories/memory/knowledge_service_query.py,sha256=0rav6H4caKw-CGM4gsjcwsFba2vjLGJbg7WYg9eB7-Y,3939
127
133
  julee/repositories/memory/policy.py,sha256=UjLCqm4V2hiF5kF2H_5IonNb4jXAQcdJ57jouMWjYns,2874
128
134
  julee/repositories/memory/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- julee/repositories/memory/tests/test_document.py,sha256=e9LCiPZSxy5tis9-0CYu1LzlhvXoL7nFBrygcsxADp0,7827
130
- julee/repositories/memory/tests/test_document_policy_validation.py,sha256=NDQ0DSUA5tDM33ulmZM9fU93GMbYmj6l_9m6G_YrOwg,6210
131
- julee/repositories/memory/tests/test_policy.py,sha256=EVi1Zl1mUrkGezjRQGCHQDPK4Loqapg94kAKno72yi8,15840
135
+ julee/repositories/memory/tests/test_document.py,sha256=TmA7v12kLPy9of6YqumIoRr6JEYoajMJedjLGH0G9QY,7824
136
+ julee/repositories/memory/tests/test_document_policy_validation.py,sha256=BpE3GOzMX1FtsIgfCElVWRYqb40iR605ohKBzjmBQYo,6241
137
+ julee/repositories/memory/tests/test_policy.py,sha256=awA7ItCmkllTDqCoqu3nnzxvdRNzA2wmYIUfdnh76yc,15871
132
138
  julee/repositories/minio/__init__.py,sha256=KiDxZUJ2Cvq9sD8TM2_SO50uDSsRq7g4cKTbDmYHHxI,1211
133
139
  julee/repositories/minio/assembly.py,sha256=X3KPgzCEH8Z9kaQN2ANYughPPyF8InBV8-fSM7LSA2s,3724
134
140
  julee/repositories/minio/assembly_specification.py,sha256=dnnxxyXteaPjWxsndoo6UIXqjiYmOKI5thMzhQP5ZWo,6393
135
141
  julee/repositories/minio/client.py,sha256=p4NnTCL4FaQwPTrAUUyQztQVfQ2WcLubAGjQPn9Efdc,18365
136
- julee/repositories/minio/document.py,sha256=guI2FZulUA0J9JMc0tZ2iu7Fhbzlsa_q7-YHljY22W4,20039
142
+ julee/repositories/minio/document.py,sha256=A79MT1cKoO7N9Wt3y52JuxgWlNqpNA3jPc9dqiCG60Y,20022
137
143
  julee/repositories/minio/document_policy_validation.py,sha256=960wS15N7P1PyrBGi1QGAzcjfO01PTO-koXrrZeAoHs,4860
138
144
  julee/repositories/minio/knowledge_service_config.py,sha256=IaZlwTXuq4F6efUckUDjKX1gSm6tzBJVQW4COQjnRFA,6714
139
145
  julee/repositories/minio/knowledge_service_query.py,sha256=nSH-UBt_42OgWokEKwpIhLmtBf17ShFA2jf8uUaWK8A,6955
140
146
  julee/repositories/minio/policy.py,sha256=HGUcxlKkIAwOOnoFUMnpW0qMx_F3vCTvYrdWQ_I6M7M,3870
141
147
  julee/repositories/minio/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
148
  julee/repositories/minio/tests/fake_client.py,sha256=qyV6ApmVm54e3hPZganteE5n2wavOnnleE8Bs_uELJo,7377
143
- julee/repositories/minio/tests/test_assembly.py,sha256=Sj5qgDgBRZ9gWQZGTC9H81c1LuP7Klq9yi5Wrvs9WvI,13793
144
- julee/repositories/minio/tests/test_assembly_specification.py,sha256=wCsd6Mbxwsiju1Pn-OQGBpCAEr-4l2wwW9niVOciUms,15240
145
- julee/repositories/minio/tests/test_client_protocol.py,sha256=mLESv_xrEM2A2eRm2GLfrqeMHdrDdMAdgI-pRRF-svk,2310
146
- julee/repositories/minio/tests/test_document.py,sha256=qxXtLvxohEEi1lBtPYIbBjbCTA6Ofxf5Q06OR03_BZk,22208
147
- julee/repositories/minio/tests/test_document_policy_validation.py,sha256=klBc_5dq421I5tN2hIwOgLsfFQ4YnsjDgPb8Ywh74cI,7542
148
- julee/repositories/minio/tests/test_knowledge_service_config.py,sha256=SeDPWr0Gmxtu-ytRHTUHfxC38Aii64GvteBDunJziBg,14823
149
- julee/repositories/minio/tests/test_knowledge_service_query.py,sha256=tqlS9w9MShaL83PyfQo8xjFL2Kxli6uJqLIE36qdxa8,15331
150
- julee/repositories/minio/tests/test_policy.py,sha256=n5flJxj75Yc-dkfmVQBkMDVGCagMB3BzhYtJhcQQWhY,20479
149
+ julee/repositories/minio/tests/test_assembly.py,sha256=phoU_dEMhkrNUybnj93x5g4FlleJPl9ul0S2UIOxy8U,13824
150
+ julee/repositories/minio/tests/test_assembly_specification.py,sha256=zihcFt5u7Bv_hDr6XS5721jLsscCJPRWppoBum4OrdE,15271
151
+ julee/repositories/minio/tests/test_client_protocol.py,sha256=k_X6VW26APahRjwqicGY1AdonT8BwyONFZC_Hq8tm0I,2355
152
+ julee/repositories/minio/tests/test_document.py,sha256=qTEvR3d8PCY4RPF5KGmy7PpJsqikujLxNJml8dCg6Zo,22208
153
+ julee/repositories/minio/tests/test_document_policy_validation.py,sha256=GvEMwtzYGwd919yquWTDvYLbRhtNnUdJQoLiUIDbG38,7573
154
+ julee/repositories/minio/tests/test_knowledge_service_config.py,sha256=B73ZoPqR1MCG7_lz838ru2GHrNsaY7JD_7IL049gKH8,14854
155
+ julee/repositories/minio/tests/test_knowledge_service_query.py,sha256=0IQVHjUMUYHjMF4Jy34pjr2nKuHZk-FjcSuc7GJ4QUY,15362
156
+ julee/repositories/minio/tests/test_policy.py,sha256=yju3L_pzoHC5EWX3CLrKBkgZEZS2OazxnApV7ziDDjw,20510
151
157
  julee/repositories/temporal/__init__.py,sha256=DPXfhTFFrixbi5GIKs_-emWu1SbD3oqjGlfSXche3rQ,1416
152
158
  julee/repositories/temporal/activities.py,sha256=xDd6SRR_TNxLHb5TYnfAwsWlWgYrtD0vDvV8HqX1Ebo,3716
153
159
  julee/repositories/temporal/activity_names.py,sha256=qg0ZJvnMPaTHHnu9fHxzsDTjUb5viNATbMTL3Xg0A_c,1464
@@ -156,13 +162,13 @@ julee/services/__init__.py,sha256=LNoQvHMWQi1YMQW0xWw9KeTHOVMsYdhLj-nvu4HClFU,56
156
162
  julee/services/knowledge_service/__init__.py,sha256=xsrMieT-IezlINBEAkM9KAMy5ZDODQqDtbqpK8DMhXM,1148
157
163
  julee/services/knowledge_service/factory.py,sha256=gLRkbrmALuL7rqsuaqWJqHm6TllgsbYCe0RrvDIBfYE,4605
158
164
  julee/services/knowledge_service/knowledge_service.py,sha256=-CT_bAPi6oZm_TB7hVh5E6Q2EWAC9kFWvLfWGhR8h2M,6384
159
- julee/services/knowledge_service/test_factory.py,sha256=8HM3_touOYGohuBwJkhuF8wv5_R4U1RZTVebU13KLP0,3925
165
+ julee/services/knowledge_service/test_factory.py,sha256=FKuzOooeNKdbJU6S-LmqT6Q6ZYo_6sVAV7MUVQKBCLI,3956
160
166
  julee/services/knowledge_service/anthropic/__init__.py,sha256=eO_85w4dd9hgzcnsqMoE0bvcjBtTuIhyQ0vqdPHdoQ4,297
161
167
  julee/services/knowledge_service/anthropic/knowledge_service.py,sha256=WtpQl9QTvNo6mAS7A-L18FHddJ7eF8BVYMIopEZdnVQ,11918
162
- julee/services/knowledge_service/anthropic/tests/test_knowledge_service.py,sha256=ijsjh2CQhO74lt0wmfU-qvqJYmN9ZPvzxJ0qm4rCZYc,12910
168
+ julee/services/knowledge_service/anthropic/tests/test_knowledge_service.py,sha256=hN2W-0XL2cPFOyuib6tLvvA7S0YaK-2C4yNfhKG8ahw,12941
163
169
  julee/services/knowledge_service/memory/__init__.py,sha256=QgAw_Bt3ctn2S2c2OeTwOSADqEx-UIsG1dnoyITifW0,364
164
170
  julee/services/knowledge_service/memory/knowledge_service.py,sha256=HATVCtJATkYAcZ_t13fSVrGtxeJZUZjlN1C4iMVPjEY,9954
165
- julee/services/knowledge_service/memory/test_knowledge_service.py,sha256=AxZc9gzFOcHliZI8ZYDOticz88bxXp2kQHQhRq3yAUc,12973
171
+ julee/services/knowledge_service/memory/test_knowledge_service.py,sha256=0mFSmJtGjTulQgl0s10ior2R3SWVzQLU0hzkjQ1eSxw,13004
166
172
  julee/services/temporal/__init__.py,sha256=xPfg55wTler89fH4NbAt7uawGOJlz8vQiKJzi7ONAHM,1376
167
173
  julee/services/temporal/activities.py,sha256=UhXDt50tJbaKQ6n1BpQWs3lUBY9UuTdhS0hiov2k5-w,3319
168
174
  julee/services/temporal/activity_names.py,sha256=OG0XqCLt40m8h7nglV-k6K5Oyk9bUexND9M1OJ2zfoo,817
@@ -183,15 +189,15 @@ julee/util/temporal/__init__.py,sha256=86xXEL8K5NAhT4s2H1uov8jV68NLkJiCZl2GDJaLn
183
189
  julee/util/temporal/activities.py,sha256=j-xV12x-5KJQWT1I8_KhIWtPVYysLJo9A2Xwx4e31bc,4383
184
190
  julee/util/temporal/decorators.py,sha256=MJzQcp7jD6jAzcwE-o3uKpIZy5r0H5I6hn72fBtHbic,17984
185
191
  julee/util/tests/__init__.py,sha256=guP9qBQwD15l3fIX1kYS8v67pKHAHOCCqib9Us_eJ1Y,61
186
- julee/util/tests/test_decorators.py,sha256=7U8f2UioCsXibtMZngVmw9SEIjEFdZGjPTOLJe3ksZ4,27425
192
+ julee/util/tests/test_decorators.py,sha256=FXyJRHETk4C6zv-STdvaVfJy4Fz6zgxkbm2HOaj0NoA,27456
187
193
  julee/util/validation/__init__.py,sha256=Jp8A3iXEvLRaj07Z2UPnOBVO2QAUOW5ITCwMdLAgQyw,769
188
194
  julee/util/validation/repository.py,sha256=li0bLav8ZpRqPe7aaOaZQQItdf_Ll-ZWJs7NpF8nmm0,3135
189
195
  julee/util/validation/type_guards.py,sha256=sH9NfnrWAOQnLKQQNpJRdz1ygkt5nTUmKyjVDOE8iME,12548
190
196
  julee/workflows/__init__.py,sha256=sHXZm4EPvsch6IYcJGqGuPJIep8XZQ8XvEju5b34tTs,724
191
197
  julee/workflows/extract_assemble.py,sha256=ZldmLdwwn1LomDJg4gNGYrnY87tiXtU8em3-l_fqLGs,7876
192
198
  julee/workflows/validate_document.py,sha256=Cwl-XgcQWeVCC-cGOAslS1vCjQosiWUi79c2uQfTYNc,8230
193
- julee-0.1.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
194
- julee-0.1.3.dist-info/METADATA,sha256=IAWKnb0s-DFJaxwAHf6jUPl0u-GfXFKvf3_mB2ITqaY,7062
195
- julee-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
196
- julee-0.1.3.dist-info/top_level.txt,sha256=woyPXhn9n-aM3oekZ341P1enrjj6nIcTwOxQL32VCLc,6
197
- julee-0.1.3.dist-info/RECORD,,
199
+ julee-0.1.5.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
200
+ julee-0.1.5.dist-info/METADATA,sha256=CkArVT-ZDglaWu_XsOLdAlvsY7RFXoVGYebj0GlYZsI,4409
201
+ julee-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
202
+ julee-0.1.5.dist-info/top_level.txt,sha256=woyPXhn9n-aM3oekZ341P1enrjj6nIcTwOxQL32VCLc,6
203
+ julee-0.1.5.dist-info/RECORD,,
@@ -1,70 +0,0 @@
1
- assembly_specifications:
2
- - assembly_specification_id: "meeting-minutes-assembly"
3
- name: "Meeting Minutes Assembly"
4
- applicability: "Meeting transcripts from video conferences or in-person meetings that need to be structured into formal meeting minutes"
5
- status: "active"
6
- version: "1.0"
7
- jsonschema:
8
- $schema: "http://json-schema.org/draft-07/schema#"
9
- title: "Meeting Minutes"
10
- type: "object"
11
- properties:
12
- meeting_info:
13
- type: "object"
14
- properties:
15
- title:
16
- type: "string"
17
- date:
18
- type: "string"
19
- format: "date"
20
- start_time:
21
- type: "string"
22
- end_time:
23
- type: "string"
24
- attendees:
25
- type: "array"
26
- items:
27
- type: "object"
28
- properties:
29
- name:
30
- type: "string"
31
- role:
32
- type: "string"
33
- required: ["name", "role"]
34
- required: ["title", "date", "attendees"]
35
- agenda_items:
36
- type: "array"
37
- items:
38
- type: "object"
39
- properties:
40
- topic:
41
- type: "string"
42
- discussion_points:
43
- type: "array"
44
- items:
45
- type: "string"
46
- decisions:
47
- type: "array"
48
- items:
49
- type: "string"
50
- required: ["topic"]
51
- action_items:
52
- type: "array"
53
- items:
54
- type: "object"
55
- properties:
56
- task:
57
- type: "string"
58
- assignee:
59
- type: "string"
60
- due_date:
61
- type: "string"
62
- priority:
63
- type: "string"
64
- enum: ["low", "medium", "high"]
65
- required: ["task", "assignee"]
66
- required: ["meeting_info", "agenda_items"]
67
- knowledge_service_queries:
68
- "/properties/meeting_info": "extract-meeting-info-query"
69
- "/properties/agenda_items": "extract-agenda-items-query"
70
- "/properties/action_items": "extract-action-items-query"
@@ -1,198 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: julee
3
- Version: 0.1.3
4
- Summary: Julee - Clean architecture for accountable and transparent digital supply chains
5
- Author-email: Pyx Industries <chris@pyx.io>
6
- License: GPL-3.0
7
- Project-URL: Homepage, https://github.com/pyx-industries/julee
8
- Project-URL: Repository, https://github.com/pyx-industries/julee
9
- Project-URL: Documentation, https://github.com/pyx-industries/julee#readme
10
- Project-URL: Issues, https://github.com/pyx-industries/julee/issues
11
- Keywords: temporal,workflow,document-processing,ai,supply-chain
12
- Classifier: Development Status :: 3 - Alpha
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
- Requires-Python: >=3.10
21
- Description-Content-Type: text/markdown
22
- License-File: LICENSE
23
- Requires-Dist: fastapi>=0.100.0
24
- Requires-Dist: uvicorn>=0.20.0
25
- Requires-Dist: python-multipart
26
- Requires-Dist: fastapi-pagination>=0.12.0
27
- Requires-Dist: pydantic>=2.0.0
28
- Requires-Dist: temporalio[pydantic]>=1.3.0
29
- Requires-Dist: minio>=7.0.0
30
- Requires-Dist: anthropic>=0.66.0
31
- Requires-Dist: click>=0.8.0
32
- Requires-Dist: Jinja2>=3.0.0
33
- Requires-Dist: PyYAML>=6.0.0
34
- Requires-Dist: python-magic>=0.4.27
35
- Requires-Dist: multihash>=0.1.1
36
- Requires-Dist: six>=1.16.0
37
- Requires-Dist: jsonschema>=4.0.0
38
- Requires-Dist: jsonpointer>=3.0.0
39
- Provides-Extra: dev
40
- Requires-Dist: pytest>=8.0.0; extra == "dev"
41
- Requires-Dist: pytest-asyncio>=1.0.0; extra == "dev"
42
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
43
- Requires-Dist: hypothesis>=6.0.0; extra == "dev"
44
- Requires-Dist: factory-boy>=3.2.0; extra == "dev"
45
- Requires-Dist: mypy>=1.7.0; extra == "dev"
46
- Requires-Dist: types-PyYAML; extra == "dev"
47
- Requires-Dist: types-jsonschema; extra == "dev"
48
- Requires-Dist: types-python-dateutil; extra == "dev"
49
- Requires-Dist: black>=24.0.0; extra == "dev"
50
- Requires-Dist: ruff>=0.5.0; extra == "dev"
51
- Requires-Dist: pre-commit>=3.0.0; extra == "dev"
52
- Requires-Dist: bandit; extra == "dev"
53
- Requires-Dist: pip-tools>=7.0.0; extra == "dev"
54
- Requires-Dist: asyncpg; extra == "dev"
55
- Provides-Extra: docs
56
- Requires-Dist: sphinx>=7.0.0; extra == "docs"
57
- Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
58
- Requires-Dist: sphinx-rtd-theme>=2.0.0; extra == "docs"
59
- Requires-Dist: furo>=2023.9.10; extra == "docs"
60
- Requires-Dist: sphinx-autodoc-typehints>=1.25.0; extra == "docs"
61
- Requires-Dist: sphinxcontrib-mermaid>=0.9.2; extra == "docs"
62
- Requires-Dist: sphinxcontrib-plantuml>=0.25; extra == "docs"
63
- Requires-Dist: sphinx-autoapi>=3.0.0; extra == "docs"
64
- Dynamic: license-file
65
-
66
- # Julee Example - Docker Setup Guide
67
-
68
- This guide explains how to set up and run the Julee Example application using Docker Compose.
69
-
70
- ## Prerequisites
71
-
72
- - Docker and Docker Compose installed
73
- - API keys for external services
74
-
75
- ## Quick Start
76
-
77
- 1. **Set up environment variables**:
78
- ```bash
79
- cp .env.example .env
80
- ```
81
- Edit `.env` and add your API keys:
82
- ```bash
83
- ANTHROPIC_API_KEY=your_anthropic_api_key_here
84
- GEMINI_API_KEY=your_gemini_api_key_here
85
- ```
86
-
87
- 2. **Run the application**:
88
- ```bash
89
- docker compose up --build -d
90
- ```
91
-
92
- 3. **Access the services**:
93
- - **Web UI**: http://localhost:3000
94
- - **API**: http://localhost:8000
95
- - **API Docs**: http://localhost:8000/docs
96
- - **Temporal UI**: http://localhost:8001 (linked in the UI)
97
- - **MinIO Console**: http://localhost:9001
98
-
99
- ### Building and Running
100
-
101
- ```bash
102
- # Start in background
103
- docker compose up -d --build
104
-
105
- # View logs
106
- docker compose logs -f
107
-
108
- # Stop all services
109
- docker compose down
110
- ```
111
-
112
- ## Demo Features
113
-
114
- The application includes pre-loaded demo data:
115
-
116
- - **Knowledge Services**: Anthropic Claude configurations
117
- - **Queries**: Meeting extraction queries (info, agenda, actions)
118
- - **Assembly Specs**: Meeting minutes specification
119
- - **Documents**: Sample meeting transcripts
120
-
121
- ### Using the Demo
122
-
123
- 1. Navigate to **Specifications** in the UI
124
- 2. Click **"Run Assembly"** on the Meeting Minutes specification
125
- 3. Select a document from the dropdown
126
- 4. Click **"Start Assembly"** to trigger the workflow
127
- 5. Monitor progress in the Temporal UI (Click on the Workflows option)
128
-
129
- ## Current Limitations
130
-
131
- ### Cannot view assembled document output in UI
132
-
133
- The current interface doesn't provide a way to view the final assembled document that results from running the workflow. To view the assembled content, you need to use the API directly with the document ID that's returned when the workflow completes successfully.
134
-
135
- **API commands to view assembled document:**
136
-
137
- ```bash
138
- # curl command
139
- curl -X GET "http://localhost:8000/documents/doc-68f2047f-6796-4830-91ad-104da83f6f24/content"
140
-
141
- # HTTPie command
142
- http GET http://localhost:8000/documents/doc-68f2047f-6796-4830-91ad-104da83f6f24/content
143
-
144
- # With JSON formatting
145
- curl -X GET "http://localhost:8000/documents/doc-68f2047f-6796-4830-91ad-104da83f6f24/content" \
146
- -H "Accept: application/json" | jq .
147
- ```
148
-
149
- Replace the document ID with the one returned from your workflow execution.
150
-
151
- ## Troubleshooting
152
-
153
- ### Common Issues
154
-
155
- **Services fail to start:**
156
- - Check Docker daemon is running
157
- - Verify port availability (3000, 8000, 8001, 9000, 9001)
158
- - Ensure API keys are set correctly
159
-
160
- **API key errors:**
161
- - Verify keys are valid and active
162
- - Check .env file is in the correct location
163
- - Restart services after updating environment variables
164
-
165
- **Build failures:**
166
- - Clear Docker cache: `docker system prune -f`
167
- - Rebuild without cache: `docker compose build --no-cache`
168
-
169
- ### Database and Storage
170
-
171
- **Reset data:**
172
- ```bash
173
- # Stop services and remove volumes
174
- docker compose down -v
175
-
176
- # Restart with fresh data
177
- docker compose up --build
178
- ```
179
-
180
- **Access MinIO Console:**
181
- - URL: http://localhost:9001
182
- - Username: `minioadmin`
183
- - Password: `minioadmin`
184
-
185
- ## Architecture
186
-
187
- ```
188
- ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
189
- │ React UI │────│ FastAPI │────│ Temporal │
190
- │ (vite:3000) │ │ (uvicorn:8000)│ │ Worker │
191
- └─────────────────┘ └─────────────────┘ └─────────────────┘
192
- │ │
193
- │ │
194
- ┌─────────────────┐ ┌─────────────────┐
195
- │ MinIO │ │ PostgreSQL │
196
- │ (storage) │ │ (temporal) │
197
- └─────────────────┘ └─────────────────┘
198
- ```
File without changes