aethergraph 0.1.0a3__py3-none-any.whl → 0.1.0a4__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 (113) hide show
  1. aethergraph/api/v1/artifacts.py +23 -4
  2. aethergraph/api/v1/schemas.py +7 -0
  3. aethergraph/api/v1/session.py +123 -4
  4. aethergraph/config/config.py +2 -0
  5. aethergraph/config/search.py +49 -0
  6. aethergraph/contracts/services/channel.py +18 -1
  7. aethergraph/contracts/services/execution.py +58 -0
  8. aethergraph/contracts/services/llm.py +26 -0
  9. aethergraph/contracts/services/memory.py +10 -4
  10. aethergraph/contracts/services/planning.py +53 -0
  11. aethergraph/contracts/storage/event_log.py +8 -0
  12. aethergraph/contracts/storage/search_backend.py +47 -0
  13. aethergraph/contracts/storage/vector_index.py +73 -0
  14. aethergraph/core/graph/action_spec.py +76 -0
  15. aethergraph/core/graph/graph_fn.py +75 -2
  16. aethergraph/core/graph/graphify.py +74 -2
  17. aethergraph/core/runtime/graph_runner.py +2 -1
  18. aethergraph/core/runtime/node_context.py +66 -3
  19. aethergraph/core/runtime/node_services.py +8 -0
  20. aethergraph/core/runtime/run_manager.py +263 -271
  21. aethergraph/core/runtime/run_types.py +54 -1
  22. aethergraph/core/runtime/runtime_env.py +35 -14
  23. aethergraph/core/runtime/runtime_services.py +308 -18
  24. aethergraph/plugins/agents/default_chat_agent.py +266 -74
  25. aethergraph/plugins/agents/default_chat_agent_v2.py +487 -0
  26. aethergraph/plugins/channel/adapters/webui.py +69 -21
  27. aethergraph/plugins/channel/routes/webui_routes.py +8 -48
  28. aethergraph/runtime/__init__.py +12 -0
  29. aethergraph/server/app_factory.py +3 -0
  30. aethergraph/server/ui_static/assets/index-CFktGdbW.js +4913 -0
  31. aethergraph/server/ui_static/assets/index-DcfkFlTA.css +1 -0
  32. aethergraph/server/ui_static/index.html +2 -2
  33. aethergraph/services/artifacts/facade.py +157 -21
  34. aethergraph/services/artifacts/types.py +35 -0
  35. aethergraph/services/artifacts/utils.py +42 -0
  36. aethergraph/services/channel/channel_bus.py +3 -1
  37. aethergraph/services/channel/event_hub copy.py +55 -0
  38. aethergraph/services/channel/event_hub.py +81 -0
  39. aethergraph/services/channel/factory.py +3 -2
  40. aethergraph/services/channel/session.py +709 -74
  41. aethergraph/services/container/default_container.py +69 -7
  42. aethergraph/services/execution/__init__.py +0 -0
  43. aethergraph/services/execution/local_python.py +118 -0
  44. aethergraph/services/indices/__init__.py +0 -0
  45. aethergraph/services/indices/global_indices.py +21 -0
  46. aethergraph/services/indices/scoped_indices.py +292 -0
  47. aethergraph/services/llm/generic_client.py +342 -46
  48. aethergraph/services/llm/generic_embed_client.py +359 -0
  49. aethergraph/services/llm/types.py +3 -1
  50. aethergraph/services/memory/distillers/llm_long_term.py +60 -109
  51. aethergraph/services/memory/distillers/llm_long_term_v1.py +180 -0
  52. aethergraph/services/memory/distillers/llm_meta_summary.py +57 -266
  53. aethergraph/services/memory/distillers/llm_meta_summary_v1.py +342 -0
  54. aethergraph/services/memory/distillers/long_term.py +48 -131
  55. aethergraph/services/memory/distillers/long_term_v1.py +170 -0
  56. aethergraph/services/memory/facade/chat.py +18 -8
  57. aethergraph/services/memory/facade/core.py +159 -19
  58. aethergraph/services/memory/facade/distillation.py +86 -31
  59. aethergraph/services/memory/facade/retrieval.py +100 -1
  60. aethergraph/services/memory/factory.py +4 -1
  61. aethergraph/services/planning/__init__.py +0 -0
  62. aethergraph/services/planning/action_catalog.py +271 -0
  63. aethergraph/services/planning/bindings.py +56 -0
  64. aethergraph/services/planning/dependency_index.py +65 -0
  65. aethergraph/services/planning/flow_validator.py +263 -0
  66. aethergraph/services/planning/graph_io_adapter.py +150 -0
  67. aethergraph/services/planning/input_parser.py +312 -0
  68. aethergraph/services/planning/missing_inputs.py +28 -0
  69. aethergraph/services/planning/node_planner.py +613 -0
  70. aethergraph/services/planning/orchestrator.py +112 -0
  71. aethergraph/services/planning/plan_executor.py +506 -0
  72. aethergraph/services/planning/plan_types.py +321 -0
  73. aethergraph/services/planning/planner.py +617 -0
  74. aethergraph/services/planning/planner_service.py +369 -0
  75. aethergraph/services/planning/planning_context_builder.py +43 -0
  76. aethergraph/services/planning/quick_actions.py +29 -0
  77. aethergraph/services/planning/routers/__init__.py +0 -0
  78. aethergraph/services/planning/routers/simple_router.py +26 -0
  79. aethergraph/services/rag/facade.py +0 -3
  80. aethergraph/services/scope/scope.py +30 -30
  81. aethergraph/services/scope/scope_factory.py +15 -7
  82. aethergraph/services/skills/__init__.py +0 -0
  83. aethergraph/services/skills/skill_registry.py +465 -0
  84. aethergraph/services/skills/skills.py +220 -0
  85. aethergraph/services/skills/utils.py +194 -0
  86. aethergraph/storage/artifacts/artifact_index_jsonl.py +16 -10
  87. aethergraph/storage/artifacts/artifact_index_sqlite.py +12 -2
  88. aethergraph/storage/docstore/sqlite_doc_sync.py +1 -1
  89. aethergraph/storage/memory/event_persist.py +42 -2
  90. aethergraph/storage/memory/fs_persist.py +32 -2
  91. aethergraph/storage/search_backend/__init__.py +0 -0
  92. aethergraph/storage/search_backend/generic_vector_backend.py +230 -0
  93. aethergraph/storage/search_backend/null_backend.py +34 -0
  94. aethergraph/storage/search_backend/sqlite_lexical_backend.py +387 -0
  95. aethergraph/storage/search_backend/utils.py +31 -0
  96. aethergraph/storage/search_factory.py +75 -0
  97. aethergraph/storage/vector_index/faiss_index.py +72 -4
  98. aethergraph/storage/vector_index/sqlite_index.py +521 -52
  99. aethergraph/storage/vector_index/sqlite_index_vanila.py +311 -0
  100. aethergraph/storage/vector_index/utils.py +22 -0
  101. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/METADATA +1 -1
  102. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/RECORD +107 -63
  103. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/WHEEL +1 -1
  104. aethergraph/plugins/agents/default_chat_agent copy.py +0 -90
  105. aethergraph/server/ui_static/assets/index-BR5GtXcZ.css +0 -1
  106. aethergraph/server/ui_static/assets/index-CQ0HZZ83.js +0 -400
  107. aethergraph/services/eventhub/event_hub.py +0 -76
  108. aethergraph/services/llm/generic_client copy.py +0 -691
  109. aethergraph/services/prompts/file_store.py +0 -41
  110. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/entry_points.txt +0 -0
  111. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/licenses/LICENSE +0 -0
  112. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/licenses/NOTICE +0 -0
  113. {aethergraph-0.1.0a3.dist-info → aethergraph-0.1.0a4.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@ aethergraph/__main__.py,sha256=G48bLF4H0eq49ohrigcWhZwCbGv-m3xgLhhcoe0zJU4,12182
3
3
  aethergraph/api/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  aethergraph/api/v1/agents.py,sha256=DucSEDzhjiPuWtvzzD0gbT8SjEgPaPlNTvz6HFi4QwE,1334
5
5
  aethergraph/api/v1/apps.py,sha256=d1mZt6LHfGWHIjRwnMa9SPal061PKFJSUnE-ArOsraA,2184
6
- aethergraph/api/v1/artifacts.py,sha256=YF6WsTlTNKx0SD3D-tqMv7f9C4FLK02Dw96O58wXCh0,14090
6
+ aethergraph/api/v1/artifacts.py,sha256=_QBbbSsmAvdiCEg-ysY-0IAcz8lCVQlCtU5OjYO11tQ,14808
7
7
  aethergraph/api/v1/channels.py,sha256=bCZ1pasbFc5g1X4Z0nKPNuR4ZVQmAp_IIErf-la0k3I,2620
8
8
  aethergraph/api/v1/deps.py,sha256=_TORJIIhHQtcVp2EhEnu2dLaKBl56bkDCZYFnFUmf8Y,5426
9
9
  aethergraph/api/v1/graphs.py,sha256=lY59FDth-lZzqCUOXFKi6VkJQveUugpGxPAfWdoR-WI,8715
@@ -12,29 +12,32 @@ aethergraph/api/v1/memory.py,sha256=3NKtZzOPUsZuAELoLXjFL64cLuh-DNe8GIRu2Gwo7pc,
12
12
  aethergraph/api/v1/misc.py,sha256=JuH3YfkJJlW7HnHdQnf1VdTw6S_UcLoAu4Vy8ZzASvI,1296
13
13
  aethergraph/api/v1/pagination.py,sha256=dQGO0_3CNhOR4ld7w932FrLfTdxUa9N43wOID7wtw3s,797
14
14
  aethergraph/api/v1/runs.py,sha256=y46OXI_F1ITw7HYgydj58WWm238-oM1w3d-9LVqi9BI,19540
15
- aethergraph/api/v1/schemas.py,sha256=w8_nVBygp5sojfD_KT_dRNya2ZkArsllKcmnmtTPNOM,13893
16
- aethergraph/api/v1/session.py,sha256=d5KuaVdLXmfLNu0NVbXTtDqUYtDezTTKcEa_VMRrP3w,11999
15
+ aethergraph/api/v1/schemas.py,sha256=tRlKTwmSIeN8wjOQIPQCrdWbeFV6pfAGEHUeFSuQDtw,14268
16
+ aethergraph/api/v1/session.py,sha256=4ZMWKQ0wh_jN1rzguj48yHD-KGyTpZneeKsyKB1PzXk,15911
17
17
  aethergraph/api/v1/stats.py,sha256=VTotvBH6JT2g8Kf_qFbVrrr8zmu2lHqKnntlk2DXyXM,7524
18
18
  aethergraph/api/v1/viz.py,sha256=ZeY_1Gm72-S_NPCNpWRTBD1wj1Hm0ElUP2ECQiBT_mw,5473
19
19
  aethergraph/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- aethergraph/config/config.py,sha256=VS-HRmJCobYPL95gmRY_IIYywxAhxDtw1qqqQ5ohugM,4818
20
+ aethergraph/config/config.py,sha256=YqZ2OolX6L-bjGK4wbFi86fwmawhXUxHjEkvv2Bqzuc,4922
21
21
  aethergraph/config/context.py,sha256=dn0-6LG52fdVDzSJjq9GDv7BWaO9ncM1LJ54FVGLmXc,451
22
22
  aethergraph/config/llm.py,sha256=_oi_JeuX-IpPhj-Y5oBeLlebFnjWr7xYyzmgpIjT7dk,785
23
23
  aethergraph/config/loader.py,sha256=0GhfkQe8sPDqa2TDNYreZV76w0z0hSjiU8KCDNSB9q0,2135
24
24
  aethergraph/config/runtime.py,sha256=tYcs2QPmhgcePLJJPnbmJ9xd69S_qvYJm2Kt5OWziR4,194
25
+ aethergraph/config/search.py,sha256=-g0YvN-5mSI77qtxa0bB5Z0OpBm441mDzlm8r4iuOe8,1585
25
26
  aethergraph/config/storage.py,sha256=9sE0BcguPgrSxXC6lcWneYK_dao3wOYwxg0bdBH2fCE,7506
26
27
  aethergraph/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
28
  aethergraph/contracts/errors/errors.py,sha256=EELKbyU65wzSaoiW4UDKkIcDmVs3jUi-UyuwtAizXQ0,1421
28
29
  aethergraph/contracts/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
30
  aethergraph/contracts/services/artifacts.py,sha256=HLjKg-qgJcdjTVYe-9n039_BSNFUqdXGWJ3a21kjZf4,5068
30
- aethergraph/contracts/services/channel.py,sha256=VcAWdklLaADCKEWr6eH4eFwtwgib6aDtul-28Q8Q_7A,2846
31
+ aethergraph/contracts/services/channel.py,sha256=9QiuK1DRItDzT9j21t3k0pPyxeDM2rGItHhWDwGj7OM,3390
31
32
  aethergraph/contracts/services/continuations.py,sha256=n7joRpMjFEQ61k5UgMmG1qzmzFxn8yFJeufGV2ojUHU,1021
32
33
  aethergraph/contracts/services/eventbus.py,sha256=p6l_Ebmk0h6zF6nrq2RP83Y21jjlSiSoCFY3Nhzt_-g,366
34
+ aethergraph/contracts/services/execution.py,sha256=oEqKTnEEeslpscHVr2ddu1BMXI2UEwxM70Sbu_oktsk,1515
33
35
  aethergraph/contracts/services/kv.py,sha256=82q_tQEQ1YfhQPU1CbotIMPcwYAO0pu0VkKdy6_LRKo,1072
34
- aethergraph/contracts/services/llm.py,sha256=viAwFGbyzC3k4Fw22lnc_Jezi9lMopkHPBoM53TdjXY,583
36
+ aethergraph/contracts/services/llm.py,sha256=TtzRGnEwSgYZK8sjoga-LRhWMVcY9Nh813un-66_RpE,1202
35
37
  aethergraph/contracts/services/mcp.py,sha256=X24iufFK8GaijqgMXhVQNgbiVobMbHppOmf8J7A5Uzs,626
36
- aethergraph/contracts/services/memory.py,sha256=HtHQQ8-FXVmo6n3ePOeFswyJCAIXDb1lHY4NGuEVLNI,4838
38
+ aethergraph/contracts/services/memory.py,sha256=Q6t3_0j6CzVlnJBvBNs1Ltj5o_ipYDZo53qpIJ-xRzY,5010
37
39
  aethergraph/contracts/services/metering.py,sha256=akcU7hivDC7KI6Qa4rBh2mjDl9QRs3b2wO97k2YFq9A,3504
40
+ aethergraph/contracts/services/planning.py,sha256=vrxLh94YnfGfVsq0Y3PQsT20hQAUqNKD9CdIp_gVqHI,1296
38
41
  aethergraph/contracts/services/resume.py,sha256=5TyP9KP_NnavWMG2R_ZR-o6aKNg09oOI0KwXLgcztm8,856
39
42
  aethergraph/contracts/services/runs.py,sha256=Acg95KqoOdVHB-NRCAlreIQcKYzNGvKzlgUE2EH9-Ns,1343
40
43
  aethergraph/contracts/services/sessions.py,sha256=dWUmIAPGz4uFpiWVxaOMYeWQliNn1WaRaSl6tmn6fsg,2255
@@ -46,8 +49,9 @@ aethergraph/contracts/storage/artifact_store.py,sha256=sC_8O_KzVp6gm9zztx-wHRjNC
46
49
  aethergraph/contracts/storage/async_kv.py,sha256=FkstAsSGkfwCfdihuLHZ4FiwYY9HTwOt52Fjcv-fHiQ,1426
47
50
  aethergraph/contracts/storage/blob_store.py,sha256=E3ibTCS2_Fw-4JskMlquhjFXYKZrlxeuWtSW58PwMtk,1420
48
51
  aethergraph/contracts/storage/doc_store.py,sha256=9BwT8O0E3dBUhX-4ShBKnNXsOyr-a91n699Zv2YDmSU,1383
49
- aethergraph/contracts/storage/event_log.py,sha256=lUaroBbaQSLEVOvCKlur-oxhPPJFIWVlQ80PtQxU7qU,1243
50
- aethergraph/contracts/storage/vector_index.py,sha256=EBumglJ40pQYn0Yl74DcK9kOEWnjEzYgY7JzTT-srVA,1341
52
+ aethergraph/contracts/storage/event_log.py,sha256=YCMgGED8O-6G7KFz_E-jkTc4ogi3xl_33vE1sGelwTE,1437
53
+ aethergraph/contracts/storage/search_backend.py,sha256=8KHdsETIQQN2-GUe4hGsGIQBUpD_eMo1sFrpMKu2HPk,1153
54
+ aethergraph/contracts/storage/vector_index.py,sha256=lyngjef_PHrH6wPcepC7BUupT1R6tiK5FRi1eL-qSKo,3554
51
55
  aethergraph/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
56
  aethergraph/core/execution/base_scheduler.py,sha256=nhcusZQp7KO-6V6h4wv0Zvx_YLvrGVmI8aks0f4Z6ec,2475
53
57
  aethergraph/core/execution/forward_scheduler.py,sha256=UMkd6jikTNnnd2FKlFis4kE22ZWaKi9zDilkQn_8KRg,34234
@@ -57,13 +61,14 @@ aethergraph/core/execution/step_forward.py,sha256=nk18q0_d6v6P_tKUPY4Tq9SqHabp5Q
57
61
  aethergraph/core/execution/step_result.py,sha256=-ywMoVghqvEKsbi5hceEt_uMCetp-_6BajdD36W4oQs,698
58
62
  aethergraph/core/execution/wait_types.py,sha256=QYRR3MyIhOeSrbLtLXj9n9OIU8Sck5YHpeHsdwuQHzc,2826
59
63
  aethergraph/core/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ aethergraph/core/graph/action_spec.py,sha256=B635gV7vkhK38ES-7-CeWl1kaO2G9cz-RYZluctcTtA,2097
60
65
  aethergraph/core/graph/graph_builder.py,sha256=myHnXypf8JR1HhPJhTiZRDtRE2vg91xevILdt3IsWZk,7362
61
- aethergraph/core/graph/graph_fn.py,sha256=2-1AF9Zx5wDlKE3TaQx1AwXl0_UQL5k-Rcga655bK9M,12419
66
+ aethergraph/core/graph/graph_fn.py,sha256=xAFOkxz6Gf06fIzKW1E-q3x_RKxylHdSOFGfbktL9C0,15395
62
67
  aethergraph/core/graph/graph_io.py,sha256=uoUtTQP6TO-MZ0CszPAR6tiKOxfKSz-Y6wUMK8P38NU,2560
63
68
  aethergraph/core/graph/graph_refs.py,sha256=_6daCyA2uQzB-fxUBPAjTARgCF8Juh0d0kTHHwGeiKI,5049
64
69
  aethergraph/core/graph/graph_spec.py,sha256=3k_lotPydvvDy9sAtR83uPm2vMmNgr_96SRGXKHyv4o,4094
65
70
  aethergraph/core/graph/graph_state.py,sha256=z4_3gBGZ6gBzJH9E5YUbGc5EtRAP611xiXFW6WArwIE,2394
66
- aethergraph/core/graph/graphify.py,sha256=iYa0KsYJtgQ_5kBaB3UWnOP0WsXGl3iMAKyXWoGdXUE,8890
71
+ aethergraph/core/graph/graphify.py,sha256=Us4ov2Dkto7ytB5nLam-2PZpoVtEwLv1gGL9AlFPYMg,11345
67
72
  aethergraph/core/graph/interpreter.py,sha256=b9aNzr8Z4G_gsnDcJxd5ci8fQRdAsOqOnGM24DPHTNU,4807
68
73
  aethergraph/core/graph/node_handle.py,sha256=eGo5h5cG2ogbYnRl8phcyHs6-4QtOeWNizgZKh4dKbM,1117
69
74
  aethergraph/core/graph/node_spec.py,sha256=HV8elXf7MXtUTmxOaRDAnfPnnQuzTrUwQ6UEp3gBDH0,1305
@@ -78,27 +83,27 @@ aethergraph/core/runtime/base_service.py,sha256=jH1DoS_rcduI04ug625FudbChMegRRSm
78
83
  aethergraph/core/runtime/bind_adapter.py,sha256=HlPJyPxiNF8nlzBqsDeDiiSkeVr2gq7oEDR_7vX1f6k,1097
79
84
  aethergraph/core/runtime/bound_memory.py,sha256=uKxvmyP56G14pReJN_B0_kKdKHHoKkJFCmyjB-_COiE,2242
80
85
  aethergraph/core/runtime/execution_context.py,sha256=H-wHS8dS11TGd__aVOHm3zEii74TONTL4qDWVm2GucU,9220
81
- aethergraph/core/runtime/graph_runner.py,sha256=yuiD38rz4YIKWVkRZt6s4lXKeUCSJndJ3NatWI4fUMM,19922
86
+ aethergraph/core/runtime/graph_runner.py,sha256=RJMmehjlkZH0mjDCU8BkB7pjEEZlYS1bXkSjm5jRxhA,19913
82
87
  aethergraph/core/runtime/lifecycle.py,sha256=xPoGDWxNp-MEufM19VmQXoBOzr9HHErCDAEIqpYSIyQ,776
83
- aethergraph/core/runtime/node_context.py,sha256=0iCZZN-BysZAWr_gEd5nyBE5KVnPy6CuYTyv1EWIIuI,29220
84
- aethergraph/core/runtime/node_services.py,sha256=1qfI1dXDbfLYKlqY0rkhNXh-vIFBMA0quigL-0djAqs,1617
88
+ aethergraph/core/runtime/node_context.py,sha256=Giy1mGDR3OoXCNqX58DkG9mkBc3xw9yOqb0V0NjImug,31689
89
+ aethergraph/core/runtime/node_services.py,sha256=fsRQjsKm8rTtgyqrtDyzkW8ROuiCdb7ToMm16tjnBas,2088
85
90
  aethergraph/core/runtime/recovery.py,sha256=IF8EMwotvLFOoGTtI-9RKB6SPwCtLjeypd4YIgI28h8,6254
86
- aethergraph/core/runtime/run_manager.py,sha256=duqJTOu9jpmnq_x08Y664UEc4nZbg43KJysuDUBU8pc,29769
91
+ aethergraph/core/runtime/run_manager.py,sha256=hkSiFRqweZ2fc5m_R2Q6OtcvoakqGjHQLEcXhroaiBw,27766
87
92
  aethergraph/core/runtime/run_manager_local.py,sha256=jaRMUBTY-h3U3SsMdIYRf0eXNKDLE-bBf-hSTkyy_AA,6909
88
93
  aethergraph/core/runtime/run_registration.py,sha256=fDFUQE9zKOR1ER_0DPfIjSYp1iW96r7U-lf3FoAcHQs,1234
89
- aethergraph/core/runtime/run_types.py,sha256=H4XoCd2JUquUJYFWQEppYqARNL2qHJAaC5N_M8NeHIY,2828
90
- aethergraph/core/runtime/runtime_env.py,sha256=PuNxIUoFvcnULAhXUsmJCwLmDso65U5Nrg23ud5_jUY,9867
94
+ aethergraph/core/runtime/run_types.py,sha256=GDjp4gYfwXOeI4HLDm7-Tp1LC3XGTFLqhrdvhQvOL0U,4400
95
+ aethergraph/core/runtime/runtime_env.py,sha256=F7M_40rKUO9a6Qhd4wWAv6Pcl1mYibo_9zbs9DAKWRE,10971
91
96
  aethergraph/core/runtime/runtime_metering.py,sha256=QadvuSm14UBLRvTah1NUgsfO-LW8hWOeM6-psLnDEXY,2231
92
97
  aethergraph/core/runtime/runtime_registry.py,sha256=8Xq51pEnmoICjkOt7bO62kvM6ahtiDSi5NKQvv8XSrU,1653
93
- aethergraph/core/runtime/runtime_services.py,sha256=4MrIUo-nA9vXyuy3PrSewUJzMdrs6oU2N0WNka9OV1Y,12396
98
+ aethergraph/core/runtime/runtime_services.py,sha256=ng7DiP_cE-8GZ53mm8ejf7Fw0tILacd3Ov2sZpevb3w,22212
94
99
  aethergraph/core/runtime/wakeup_watcher.py,sha256=Exw8chz7UXqfKVObuYjY-byRAyYk9pw_stlXqzkuct0,1496
95
100
  aethergraph/core/tools/__init__.py,sha256=_IITFxrr0evTGMHyjFGUrFcZysm0LSPg2g6IiSsRRMo,298
96
101
  aethergraph/core/tools/toolkit.py,sha256=l4-EztlFWOKqle4pDMPRiYtWK6s3C3MSg6ohiow4buI,19071
97
102
  aethergraph/core/tools/waitable.py,sha256=xcJIvgKY11HszCeleu9Hm6sgD1KRwmJ-A5rjDcRd2Rs,4053
98
103
  aethergraph/core/tools/builtins/channel_tools.py,sha256=Ho2nM6WeViHJKE26MnB-eHPaPW9R8N1axE0WpGo4XGk,5710
99
104
  aethergraph/core/tools/builtins/toolset.py,sha256=iGa3H_w7j1aDMrUu6IU2YHmFxr00NXUGkx19F15SlfE,3555
100
- aethergraph/plugins/agents/default_chat_agent copy.py,sha256=WUbtM7Bra0DLq8Py4CtySijmlrkad_unT97pKy-Bx5g,2903
101
- aethergraph/plugins/agents/default_chat_agent.py,sha256=70HK8P5jrr6TflTDh9qSfFIfzyKzWedJ2fMNDzFBP9o,5684
105
+ aethergraph/plugins/agents/default_chat_agent.py,sha256=D1ifbhbAjxn7Js29fy5PZ09CuGb7YCmnr-CZVCmNwqM,12557
106
+ aethergraph/plugins/agents/default_chat_agent_v2.py,sha256=w8k4xutkkh4vBATLcljWeLCEwV14qMI9il7UX8YR_88,16695
102
107
  aethergraph/plugins/agents/shared.py,sha256=ZY32JLwiJEwismGix9E9iGh-f2tJXJX3Z68Eu6iZpTk,2820
103
108
  aethergraph/plugins/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
109
  aethergraph/plugins/channel/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -107,12 +112,12 @@ aethergraph/plugins/channel/adapters/file.py,sha256=rd0vKMTX5UojKUTm_L5gQIOE2oTR
107
112
  aethergraph/plugins/channel/adapters/slack.py,sha256=pmbvU-u_4VxH_QVnm6vFMlH6gJ57yPulnxdb-l3sqmo,11245
108
113
  aethergraph/plugins/channel/adapters/telegram.py,sha256=OldJo21nrG9rEHygDQU1GDhg0HzJPv-3v6E8VtKJ6fY,12279
109
114
  aethergraph/plugins/channel/adapters/webhook.py,sha256=28j2PL3OXiUugecTtGfl0t3J0h24hu7RSir3QHQlhbs,3811
110
- aethergraph/plugins/channel/adapters/webui.py,sha256=kqJQB_hYxFaQf48IhfZYNuOe7UnEKN603WORcNfR70g,4617
115
+ aethergraph/plugins/channel/adapters/webui.py,sha256=FMfMyryEDbCH8NKq5fmmimfnPqr5ujWdwdL7Rpj7hM8,6580
111
116
  aethergraph/plugins/channel/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
117
  aethergraph/plugins/channel/routes/console_routes.py,sha256=k6KPPEROBMU9yenBm2qSOix7QLRoSY8lXwPt0uVqtlU,3395
113
118
  aethergraph/plugins/channel/routes/slack_routes.py,sha256=4fzJWEOzU3lbcB7ToXrxfkdN9Kt-B2Hkgl-FSsO2xLI,1354
114
119
  aethergraph/plugins/channel/routes/telegram_routes.py,sha256=OJ2pZmLr8vmLpAtFlVjtG0kS4fv7sh_2j6Rm-MB0oTI,809
115
- aethergraph/plugins/channel/routes/webui_routes.py,sha256=2Ew_vzirp-cUY3zGJLKHqqAM1qBAeJG4ieuVgC3UcBk,13215
120
+ aethergraph/plugins/channel/routes/webui_routes.py,sha256=e58WgBUq_YPsMxiB55CqQz150mySACyLi7HBdUBqH5Q,12144
116
121
  aethergraph/plugins/channel/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
122
  aethergraph/plugins/channel/utils/slack_utils.py,sha256=7Ua-VFwp18IsRRZcwB9HYvFB2ajzHzDlQ6bj75hyQjg,11923
118
123
  aethergraph/plugins/channel/utils/telegram_utils.py,sha256=0F7dlwhIl2d40Siv30n8CFm4kUMCj9Rt3XABiT0U4aE,13090
@@ -125,9 +130,9 @@ aethergraph/plugins/mcp/ws_server.py,sha256=zMcMJJnzWQ5GTTlIfZyDQasgaAxXrH1nq281
125
130
  aethergraph/plugins/net/http.py,sha256=2CiSzUCNGd0dl-ld0Z2RU1OgkMKm8t1188wmt27SLjo,299
126
131
  aethergraph/plugins/utils/data_io.py,sha256=7gfd8jUUmYJmAupwno7O9TwteVWsjY_Tnp0qB1QBQLg,10824
127
132
  aethergraph/runner/__init__.py,sha256=l90QHNCvY7rLgHQSKxWA3faiqXF8pt_2mApMuUgR37c,190
128
- aethergraph/runtime/__init__.py,sha256=DGqEf7pqQG1h_RxHC3ecU_zcLGbvGivTsmeGOlNzZJI,2063
133
+ aethergraph/runtime/__init__.py,sha256=dqmzJZHBIxlux2wIj-4kfnUjhMpx86Zez9jSeDhez8c,2395
129
134
  aethergraph/server/__init__.py,sha256=sAOwqEBX6vWES6_D0CBDCYcpVaIM6pz8El-mGxp3zpA,133
130
- aethergraph/server/app_factory.py,sha256=F1rMcAjz0My1KvcYl-7KdEt_RjkGwHuPvAYfOiE5_6g,9084
135
+ aethergraph/server/app_factory.py,sha256=dhfSvRcPkhnDFgzWZZ_QzHXET7sHFbZBUaYJOo_5SWU,9229
131
136
  aethergraph/server/loading.py,sha256=XRnUHijNt8I-KL8t9DnYkPN9D-ffZHa61Tg4QjSUjOU,4179
132
137
  aethergraph/server/server.py,sha256=Y4QOfstxIDK45gAn-f_bFlrQtwi6FK-TKKL6GQHltBY,3644
133
138
  aethergraph/server/server_state.py,sha256=_8nB_aQ7lEgn3uUhHfQNZgxei-5w5hj3tBWK5IoDSzY,7262
@@ -135,7 +140,7 @@ aethergraph/server/start.py,sha256=4C-AoFYaNleDGfzmOAk9EnyqMOlq3xbh339TwXVYnPA,9
135
140
  aethergraph/server/clients/channel_client.py,sha256=yk-r1HpJ8SsYY7NUNdtER3p20PiWv05vnOzpTn_EGmA,6680
136
141
  aethergraph/server/http/channel_http_routes.py,sha256=3IQiQLhMALbH1MssI9IsUTEFq_Hob3ggy9iYm3-fRck,3316
137
142
  aethergraph/server/http/channel_ws_routers.py,sha256=4qDR-_mUv8cVLYabQ-UTO5OUoEEtHpmZb4qoH5A-UIs,1275
138
- aethergraph/server/ui_static/index.html,sha256=eJZDXq1AOLxzdqfezYDHOjQUgKnBLKssaWM562EIkHI,477
143
+ aethergraph/server/ui_static/index.html,sha256=X8PFsfrFwIx26UrglsLOw2975zlplDkguELgm_CTVEk,477
139
144
  aethergraph/server/ui_static/logo.png,sha256=M6Ivw1JaQ-jssrDXsTAd1Zy_tbjYAdqXcu2M4lGkY4Y,255215
140
145
  aethergraph/server/ui_static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
141
146
  aethergraph/server/ui_static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
@@ -196,31 +201,38 @@ aethergraph/server/ui_static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2,sha256=pK
196
201
  aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff,sha256=4U_tArGrp86fWv1YRLXQMhsiNR_rxyDg3ouHI1J2Cfc,16028
197
202
  aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
198
203
  aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf,sha256=8B8-h9nGphwMCBzrV3q9hk6wCmEvesFiDdaRX60u9ao,27556
199
- aethergraph/server/ui_static/assets/index-BR5GtXcZ.css,sha256=s4FB0tPVYUR62n3CGE06Seh9Ieush4btp4lrvluJADs,156766
200
- aethergraph/server/ui_static/assets/index-CQ0HZZ83.js,sha256=EfpBL2PrtjirgL8NFqOzpgRMneP3pTdxgXmDe8blygE,2359779
204
+ aethergraph/server/ui_static/assets/index-CFktGdbW.js,sha256=vJe_NMfSI9xpiutDyOa4rP7n7KcLzFKzlcrbX-dcXwQ,4230889
205
+ aethergraph/server/ui_static/assets/index-DcfkFlTA.css,sha256=fp94yPWgsDvP0oBiSWNkL3YLfuECe_ltkhy4oCkLShI,189819
201
206
  aethergraph/services/__init__.py,sha256=SX50b1u1rFsHaMr4UAj5RhJzh0fEmx2l-cZ31MNA_EA,482
202
207
  aethergraph/services/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
- aethergraph/services/artifacts/facade.py,sha256=qa6C5zQNRrz_szD6yg0TFlXnOyN-ppcZIlyQUZRzNPo,51115
208
+ aethergraph/services/artifacts/facade.py,sha256=dG1vm2HPnZbLBFElRgHctOsF1vaZzwAw841KByUFu0I,56955
204
209
  aethergraph/services/artifacts/paths.py,sha256=Q3mtLvK418HP4cjYF3SA9TgI_lH_uK0NJd4lqUKk_-w,926
205
- aethergraph/services/artifacts/utils.py,sha256=0VfMrsGUVZPyvO_lA3lXtKZqLCYES5VxJBqoVZdRd9w,4471
210
+ aethergraph/services/artifacts/types.py,sha256=jZ72e3KrZgqQxlaCMYJCpRCtkcdf9REbaJ7c_TN4k28,959
211
+ aethergraph/services/artifacts/utils.py,sha256=OMUUbsubjkkoCvrYh__NzXS7EY8qfJjoJrUj7SLay-k,5767
206
212
  aethergraph/services/auth/authn.py,sha256=7tExc3Fop9jEo80hVrCezH3vewUNkc16EOkI22QPNTg,312
207
213
  aethergraph/services/auth/authz.py,sha256=z6VF06YQRDoglnwYpYEVBInV7ehCKlIdEVqof8WgXd0,3058
208
214
  aethergraph/services/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- aethergraph/services/channel/channel_bus.py,sha256=xU3CDmVbmlASq_JOT0_v5RPXKWShWWpm_E0AWzRoGo0,12780
210
- aethergraph/services/channel/factory.py,sha256=WZeozLhoxoi2IHv3KWokRIRC8DbqNcXz8C-4YvYwM-A,2182
215
+ aethergraph/services/channel/channel_bus.py,sha256=Slvc6mQvZQjNJGBo5z7wr-Fac1kihG1TY-QpRUVuYJQ,12911
216
+ aethergraph/services/channel/event_hub copy.py,sha256=Rh5TRT4C9PbdtAxT7IVuKofA5FW72VbDWjaRUYo9Svo,1850
217
+ aethergraph/services/channel/event_hub.py,sha256=eTZG4EXceL8f31mIxKZX1bqTcMOBQmgxmKhcbPEpdBc,2369
218
+ aethergraph/services/channel/factory.py,sha256=UOQQxsxCYghGM2OSSbrU8E4RJXyzY9BSBSj5U0wDuA8,2299
211
219
  aethergraph/services/channel/ingress.py,sha256=uHF8M3GZ6lZUUM6Q1WeJZGk6WAa1zENgafT_zvq6-LY,10467
212
220
  aethergraph/services/channel/queue_adapter.py,sha256=xRJ5NdjjmQbUKnJyZArTvGgVxx_XhEDgEuGSQvANOZQ,2690
213
- aethergraph/services/channel/session.py,sha256=oMNL9SA6myFqY5OMe_QvAQkBr1NRoy_EvvfqGPrTHLU,38457
221
+ aethergraph/services/channel/session.py,sha256=M7GoNN8Dgz30mB4_9-pTsmRJAMIje2sTHMpxucVBvW4,62015
214
222
  aethergraph/services/channel/wait_helpers.py,sha256=40NbvSZsMPOQGelb6sP4bpF6XeelFVeBaGQ3L5dF6qo,1975
215
223
  aethergraph/services/clock/clock.py,sha256=XIt_7NxkpHd_rmbXhHJqWKW3icXu8fdAmmj2rV97bDk,190
216
- aethergraph/services/container/default_container.py,sha256=awRy3cX4Viz6p5mXEsdosYh7XIREfQ-d53s2P36gKZU,13685
224
+ aethergraph/services/container/default_container.py,sha256=1Zqkzh7JXK_uKaz6ICV4GN0VAUJKXJOEkd06bDbAWpU,16124
217
225
  aethergraph/services/continuations/continuation.py,sha256=dKecaZuQRDHvIWr7TI6moPj_M3qDPW5IKeW20QnaYk8,2010
218
226
  aethergraph/services/continuations/factory.py,sha256=fNL0ykF28ahFRKg0Wn_9SAqjaE-S2DLfBkULFMK6v4w,1291
219
227
  aethergraph/services/continuations/stores/fs_store.py,sha256=CcPc9WJqqW3oseTiBPk6rkk6hW_WBE-EJpPnEXwDlwY,11401
220
228
  aethergraph/services/continuations/stores/inmem_store.py,sha256=QyRzEK8uQ2fIHHmAlFj9UsBzs8Ub5PUWz15eSDNG4sY,3573
221
229
  aethergraph/services/eventbus/inmem.py,sha256=F8C89icPi8ZDcnhb_E4Gt4Q0PEIm7HLLzWGWjJ4aot4,677
222
- aethergraph/services/eventhub/event_hub.py,sha256=VQr5TbLd2FxAjyLhECVHPqyNOk_4M6MO5_dYmT4bjDg,2286
230
+ aethergraph/services/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
+ aethergraph/services/execution/local_python.py,sha256=xvbVcc6US5grDOXM5uPaGu5oih73zN_lOQnZmUZKvYU,4382
223
232
  aethergraph/services/features/static.py,sha256=-zefImm-eq_nZNEJzs1N3okgpHGm8cPHVLgjNdSQ-yk,296
233
+ aethergraph/services/indices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
+ aethergraph/services/indices/global_indices.py,sha256=L3z-_GSFLO3LF_GRFzIMoAM5Ocohuv56p38QyKUQ7kU,556
235
+ aethergraph/services/indices/scoped_indices.py,sha256=68YmgLAq0JkMqvhdjXsJQr5s59swtfX-99SfOJw2C78,10870
224
236
  aethergraph/services/kv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
237
  aethergraph/services/kv/ephemeral.py,sha256=iBMcnIF7KYSgoAzVhYAVWdT2EZYAxivxsut0j_i-XMw,12413
226
238
  aethergraph/services/kv/factory.py,sha256=V4Q5qUb9Ykhw8tg-UK8QfH1T4E8wybhVOI3dlfZ0J-Q,819
@@ -228,11 +240,11 @@ aethergraph/services/kv/layered.py,sha256=TsUA1pKCeKyxNfTcTFQyobV8vBrsCoH1KyZ40G
228
240
  aethergraph/services/kv/sqlite_kv.py,sha256=PjeRpBDXLXvuioHBbk1JgASDpFCqUtlJL70OEaUYAZA,4796
229
241
  aethergraph/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
242
  aethergraph/services/llm/factory.py,sha256=rfZkGOj7KLNIT_SEJCyTMnA1_GX3JhXZ1ezCDbsYJEU,5546
231
- aethergraph/services/llm/generic_client copy.py,sha256=-6gaKCrIbJP9hlyMivfZmHHFtYB-coZ2YYAvk2DBHDQ,26156
232
- aethergraph/services/llm/generic_client.py,sha256=nOalYctDZoVWBvgEMp-v4FQnUeSCVbKf7DpQsgCjcec,65012
243
+ aethergraph/services/llm/generic_client.py,sha256=2Mx65cgqUpSsFDqZsOKtCQ_bLMpcEAsL28ujFfmkCo0,76693
244
+ aethergraph/services/llm/generic_embed_client.py,sha256=qFK1Qw17Pxi7wpcW6tvJMARZErBUVbzBvI-b5vBhK_A,13771
233
245
  aethergraph/services/llm/providers.py,sha256=gO5OIfOxmHAWIqc3wbVM6sDskMZtcaPhnBGA5T-kT6k,166
234
246
  aethergraph/services/llm/service.py,sha256=3uDHQrVTKZc9ptKnLPfZyqiaoN017jVvcrY0Kx6kOHA,3754
235
- aethergraph/services/llm/types.py,sha256=AbI-GD5O2Vyl_K9xyVoN9gUZMohqiKgVbschGXt5L7U,1412
247
+ aethergraph/services/llm/types.py,sha256=lFTeP32AXFsVF_AwnvWepSSPKm4gTIj_-SWm61cAphc,1579
236
248
  aethergraph/services/llm/utils.py,sha256=vnh1Heujq4PSuYySkYw5vyrauvmh79mz9OWoKpFQLKM,10411
237
249
  aethergraph/services/logger/base.py,sha256=BuWtFvS0Y9Y_f0_8Do3zfdM58gE70MfIPA6_M1qSI8I,1321
238
250
  aethergraph/services/logger/compat.py,sha256=2BSbKv23oWn1ccIQ4NgX079IV94QTg3Z8PlrDfZ6x0c,1838
@@ -249,28 +261,48 @@ aethergraph/services/mcp/ws_client.py,sha256=1KIUd853WpDs15VhjTchAZm97NS1Psz6JvL
249
261
  aethergraph/services/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
262
  aethergraph/services/memory/bound.py,sha256=tfsy-RWe4QAAGUDcrzNp54ZRgSZS8g5Irm8hSwmiG9Y,3515
251
263
  aethergraph/services/memory/facade_dep.py,sha256=T2DHxg_n9aIhY165228CJQb_xpjFmGAF9MG5TUuys5U,55295
252
- aethergraph/services/memory/factory.py,sha256=tRfiDRfI5hPxsdyb0rHje_MyXu2cVv0-2jdV3KDDXE0,2836
264
+ aethergraph/services/memory/factory.py,sha256=xgbRxKXkFVSc_Mt64rHf_HgrZ-_LMuuUG57g3asJFpY,3009
253
265
  aethergraph/services/memory/io_helpers.py,sha256=HOFgVVwoM0erpBu6OtiPlBmjf0L5zHREPm0YtClFz9A,2033
254
266
  aethergraph/services/memory/resolver.py,sha256=TiMBJO1ALRO4_7CwafbZ-V70b1ldMLCLHdrn2cN8nuk,5261
255
267
  aethergraph/services/memory/utils.py,sha256=nnUAg7kI6Cc--kFtslRoNO4LXQL41GZU3Atr_nFyDjE,404
256
- aethergraph/services/memory/distillers/llm_long_term.py,sha256=bAtbrupewPR79JtgDy6Rgz2tetCh5neTlcdQdwVIWjU,8070
257
- aethergraph/services/memory/distillers/llm_meta_summary.py,sha256=P2HEcXDcu3iJP0Loxi1yWTCwNW_E86ehU1pvyGmG4V4,14517
258
- aethergraph/services/memory/distillers/long_term.py,sha256=6kV0oRkweqWkDVjvxW34TkJnmNXTEqYSEZJq31huKuE,7824
268
+ aethergraph/services/memory/distillers/llm_long_term.py,sha256=whB66PmhjFYlk7bta_J4kvpcqY9c47bGAhPxwckbRXA,6678
269
+ aethergraph/services/memory/distillers/llm_long_term_v1.py,sha256=ld6VvBOPjY8uGhlYAYbNcgzgrj5mkUzTvMcu9FPRMtk,6148
270
+ aethergraph/services/memory/distillers/llm_meta_summary.py,sha256=3GYFciBocCa4tYhbAt_xHm17zwuZl4kkyFiTtGQE6mM,7063
271
+ aethergraph/services/memory/distillers/llm_meta_summary_v1.py,sha256=ND7j2Hf2Wgxn1XPQ3sOgjRV1zJ7YFq71fA6VY9nZM_w,12480
272
+ aethergraph/services/memory/distillers/long_term.py,sha256=GBqeGFg6jZ90tvaZXhryVRsW65lyV8Y85WvuM8zlgQM,4573
273
+ aethergraph/services/memory/distillers/long_term_v1.py,sha256=481r788tVfMX7ACfGJxsFjs96RQuU2QPtCoeC5OlMLo,5841
259
274
  aethergraph/services/memory/facade/__init__.py,sha256=zXaR0hat00IQ9nZu2-i1F8KEop5zfO-KZD3l2FxBByg,62
260
- aethergraph/services/memory/facade/chat.py,sha256=3xFGfaF0CCKS_S6U_a0F3SZMGeFE90mlMcaBl87lZ3E,15890
261
- aethergraph/services/memory/facade/core.py,sha256=AMd_rYe-5bdDG8XNjeyMA2xuCfy1GzXNoSk5ueZ80r8,16898
262
- aethergraph/services/memory/facade/distillation.py,sha256=NoZPgVv0CzjIGhaCKe9BD7g3PnQg2ZyfTMLEde1thOk,16294
275
+ aethergraph/services/memory/facade/chat.py,sha256=y0IXqT4b7jxiFwNu2F0Mwjz83rsLBXiLVapUblmves4,16253
276
+ aethergraph/services/memory/facade/core.py,sha256=lKa_nA-4JsLWZ9k85Dx-j2kBI02ptYYV5kyUx0T4Q0Q,22081
277
+ aethergraph/services/memory/facade/distillation.py,sha256=D62xmMp1qTlF2ua9V-NU8BQsoXYdwbKdJEkODvLao3o,18602
263
278
  aethergraph/services/memory/facade/rag.py,sha256=3DMxDHhqW0IkQ3Wb5ME0TsNTx3xKIArcLagSX1Tt_jQ,13979
264
279
  aethergraph/services/memory/facade/results.py,sha256=JWHK2Sx48VBg-TkGlf15ipU2ahBQ1Vj_zr9_8GKOAkk,11733
265
- aethergraph/services/memory/facade/retrieval.py,sha256=iXdl_9SD7ZWSBSISa1AiOepUyeQ8aX7qhCLwY20n53g,5672
280
+ aethergraph/services/memory/facade/retrieval.py,sha256=KwB7N2xyEAWkBpPidiC6P37C90BEnAvLOiNLZdIcenE,8992
266
281
  aethergraph/services/memory/facade/types.py,sha256=9rh3XCrRKObyHjPR_wA6bOxaK2gRDcUwuZb5sZZoBek,2304
267
282
  aethergraph/services/memory/facade/utils.py,sha256=ecGX-t-4-D0jMI5Mql3OCBmpelFPF9__V6pCRCiPvTw,1095
268
283
  aethergraph/services/metering/eventlog_metering.py,sha256=vXCberi1-sfh_2E5ZQOxStLTwBaeG149Yf89c9ODAto,15459
269
284
  aethergraph/services/metering/noop.py,sha256=_ILDDXSNagLdm9w3oxIlQbIqvuhpRCpWiVZnSQ3HE6Q,845
270
- aethergraph/services/prompts/file_store.py,sha256=z3tyoekJFTs3XVqFjLEC0wmVmdYj8vWDt9L5-GZ_UDg,1429
285
+ aethergraph/services/planning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
+ aethergraph/services/planning/action_catalog.py,sha256=oAhQzwRl0lPY2E-AbwWEP51BeMq-q7vtkf0Esefx2js,9730
287
+ aethergraph/services/planning/bindings.py,sha256=R-toFm5a5geRZxL4vEmRLZwOmeAtGOINXUm_pcW6BFY,1911
288
+ aethergraph/services/planning/dependency_index.py,sha256=9o7RutdWWvLV6x5AznClS9wQvEZIBbrvjDGe-pukzgA,2282
289
+ aethergraph/services/planning/flow_validator.py,sha256=jDBK7M_p9g7CdI2ZZJX0IU0DnyvJ-TDIo9sRU_CdumE,10220
290
+ aethergraph/services/planning/graph_io_adapter.py,sha256=AJaZDW8Dxq_jbPblkH0EmQGgUUjs9kIEUwxBwiSHrLw,4808
291
+ aethergraph/services/planning/input_parser.py,sha256=svy1I5HCcFJ9vImMCfYcVGJV-Dq-qb0o0kmGa-2fSes,10967
292
+ aethergraph/services/planning/missing_inputs.py,sha256=ds5oaRwfLtWVzVA_GnlFFLZ-chAk2RNEcflsMKfiL2Y,850
293
+ aethergraph/services/planning/node_planner.py,sha256=pOvg8lLk8yj3xFHnEifrZL9JheOr1ijwByuzk75-ut4,27029
294
+ aethergraph/services/planning/orchestrator.py,sha256=drTjFIQR9VQwni3z8Y-kD9hnRD6l1l_wgP8iq4pMaGw,3765
295
+ aethergraph/services/planning/plan_executor.py,sha256=Y7NT8btptGwhLZhEmKrwRhgSMyvcFbCS3_tYEjGrh5A,18872
296
+ aethergraph/services/planning/plan_types.py,sha256=2PxH9Z8BBTgqwrIem2zjSLJCZxj7U38LsqXEJvHz0E4,12709
297
+ aethergraph/services/planning/planner.py,sha256=hE_r1N5oz0vq5aMcn1IRnFyHES1CNfPt7aTF8jh2Moo,24585
298
+ aethergraph/services/planning/planner_service.py,sha256=awspnEslxOFQuyeoAMre5-ORiyspTMxzfgOU6FTY_80,12686
299
+ aethergraph/services/planning/planning_context_builder.py,sha256=AQ0fIeB6LR6yMMU95XtYkYeG7VwoKmvR6EJ_maqoMus,1405
300
+ aethergraph/services/planning/quick_actions.py,sha256=QJk1S3oOhk2j6befSZxZvk8s86p3EVs_AhOpvTYPl9E,823
301
+ aethergraph/services/planning/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
+ aethergraph/services/planning/routers/simple_router.py,sha256=kh0Sf-qVipSfCAbKffCdpSJqXWrIst8mDAlWU6ME1xo,671
271
303
  aethergraph/services/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
304
  aethergraph/services/rag/chunker.py,sha256=WsjlciEUAVn-31nuDJiDcEkM-JtWB6Cp5aYfFC0mpmE,936
273
- aethergraph/services/rag/facade.py,sha256=_WV2IFas_-DQRhlkBeUN3Pv98hR5rZf61CniWlrY1L4,33673
305
+ aethergraph/services/rag/facade.py,sha256=q7DM6xkayrv5swJtbhuecfMRMVdxMFGqm35Pdaf6Lxc,33544
274
306
  aethergraph/services/rag/index_factory.py,sha256=Y0hEjHRwS4uPi6MWlxJ8Q5ZYC1Ia4D18OVZZA0tYH7A,1793
275
307
  aethergraph/services/rag/node_rag.py,sha256=bec7NaG_rdZKiC5T12P84S8_KKUrmgMHMM7yanQK1hI,11962
276
308
  aethergraph/services/rag/parsers/md.py,sha256=2rxCBCk0TWQ3CBkOiBSoKUifhNzhaq2JXS6W33uFGM4,196
@@ -288,10 +320,14 @@ aethergraph/services/registry/unified_registry.py,sha256=olzJQpJRO3mT9hlTNjF5YgJ
288
320
  aethergraph/services/resume/multi_scheduler_resume_bus.py,sha256=ZeQnG1KXKWw2vk4rcgJePYdzPNWOI5m__ZDIHQetibk,2274
289
321
  aethergraph/services/resume/router.py,sha256=NYS9uLaq2AB0j5x_VWlEkRRzApxlmlcePigm8vhEqtE,2856
290
322
  aethergraph/services/schedulers/registry.py,sha256=tHQKHFqKEzoxzV0e-hTkrPjlGw5ou1BAxk3dzyVMfZY,1200
291
- aethergraph/services/scope/scope.py,sha256=oK9g3RCaCUa8k4zle2p-ZpF4iSkzvGCvfCQmCcqfS7Q,5578
292
- aethergraph/services/scope/scope_factory.py,sha256=vQMKJ9tQE0Z_puahqjrdur9fB5h-T44gUrmWux3nMco,5352
323
+ aethergraph/services/scope/scope.py,sha256=N9dh2-vlFm5GqtzIkwwAPVjHQMSTUSSjFVWFJaDDFBQ,5357
324
+ aethergraph/services/scope/scope_factory.py,sha256=pVNBo8XUG3hJ_FW0V3DhO8AeIvAR_niQdd7srlbflwE,5618
293
325
  aethergraph/services/secrets/base.py,sha256=St9bnXjqNuybq8W2q0IWC-bsboOv8GQDOypGPPsqpNE,204
294
326
  aethergraph/services/secrets/env.py,sha256=Zqo-KlyQ_qucZ1Ul2pIUnPheeWqlou4gftWYmhqPIc4,149
327
+ aethergraph/services/skills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
+ aethergraph/services/skills/skill_registry.py,sha256=4qJBhkTsmpmtAX_wL1kbjyVixS5MWwJ0Z0F7a4vyyeo,16380
329
+ aethergraph/services/skills/skills.py,sha256=jJvV_-77b6207XNwoyFX56CQhEZwn-QxZsOKFDgFMCk,8447
330
+ aethergraph/services/skills/utils.py,sha256=91ImbBW4iRFzvGcvxGX_bkaRqOTPtXlge_4exb22b7g,5689
295
331
  aethergraph/services/state_stores/externalize.py,sha256=jaItE8sOqM7NvjAPka8TOC0c0jhunXBiTJhrROSv3ng,3761
296
332
  aethergraph/services/state_stores/graph_observer.py,sha256=OZz81iwqExDlicVHEyGVcAoC7h0QTCPLZSeKABcNvIs,5061
297
333
  aethergraph/services/state_stores/json_store.py,sha256=WeoAtCsHdR8Hdewn4zOl_EguvFVSuUXAR5D_85g3mt0,2611
@@ -309,8 +345,9 @@ aethergraph/services/wakeup/scanner_producer.py,sha256=lkaok9cqeyaxrRjf1YSZd4woz
309
345
  aethergraph/services/wakeup/worker.py,sha256=3xbZEaEKPWfaWLWR4KQ6lb_DD34ktK9hDP3VM3UEsdk,1110
310
346
  aethergraph/storage/factory.py,sha256=BA-0Jqt8IRf9dKIqZfrkzXrCQMJQSphM190bj8Ziokk,15868
311
347
  aethergraph/storage/fs_utils.py,sha256=xqimu5w_qM1ZYY8lu6LNwWF5T3MRwgifkkY93nswSik,958
312
- aethergraph/storage/artifacts/artifact_index_jsonl.py,sha256=5F_maLBMkLKiPXJ253xuQiGNAfUJS3Srpbr5cj2yWUY,6380
313
- aethergraph/storage/artifacts/artifact_index_sqlite.py,sha256=e9fgLYX81NdhjgU-B_IoF3EkIL_NXqN4o9EihlXS1uk,15372
348
+ aethergraph/storage/search_factory.py,sha256=pUkRRiY2MKW-iigQvYzlBsK1Ht2COkFOSHXSgFgxiW0,3019
349
+ aethergraph/storage/artifacts/artifact_index_jsonl.py,sha256=Azzmmbrw2xUx48e79EfuDcENEmpjcjYWJ40ee-Itg7s,6600
350
+ aethergraph/storage/artifacts/artifact_index_sqlite.py,sha256=YrW5gacD5vJMNWSmHE2Z-uBjGo6P95QKEoXNpfnB4mQ,15747
314
351
  aethergraph/storage/artifacts/cas_store.py,sha256=sT9z0flaufl5AzafyPupdPR_5Xl5lR184ea8Wpb1SzU,14380
315
352
  aethergraph/storage/artifacts/fs_cas.py,sha256=B9Zzbe8QW6cbUynIzKhIfErYuZRrL79aIYwK9hv01DM,732
316
353
  aethergraph/storage/artifacts/s3_cas.py,sha256=8TAip_zEyzDMFLfuAHFocaBlsNT7c06lRihyNnsHvLc,637
@@ -322,7 +359,7 @@ aethergraph/storage/continuation_store/inmem_cont.py,sha256=KGFjaUucVOvsKRZMVqyd
322
359
  aethergraph/storage/continuation_store/kvdoc_cont.py,sha256=VoMV73mNGEWJOvTIISLlnDFdJzolbPT9ZqklvM6TiVo,9998
323
360
  aethergraph/storage/docstore/fs_doc.py,sha256=7TegRCDS2XFCO7y1VDpNlQBDcJb2McwM8FrwR-1IBAo,1881
324
361
  aethergraph/storage/docstore/sqlite_doc.py,sha256=UPKFOro_nGLkxBIjudEh9bpOFV2qpS5jTVAPGORURyg,980
325
- aethergraph/storage/docstore/sqlite_doc_sync.py,sha256=AjI-xfHLvVhy5OuG9Vas7eqw7R7rU7e2xdQLAZFvaLc,3097
362
+ aethergraph/storage/docstore/sqlite_doc_sync.py,sha256=4Kj-QzcKsi45AMiaXcKS67p3L4zNTdORNKZ6rQxSOQ4,3092
326
363
  aethergraph/storage/eventlog/fs_event.py,sha256=_jrpbNHpYXicgwvgwb-il5wLemtCNQC-E9P43eW2Y_A,4763
327
364
  aethergraph/storage/eventlog/sqlite_event.py,sha256=UyMkASdccu-Y1iaGpkMkmkfYD2Ez2oLmQCejBBgpeBY,1299
328
365
  aethergraph/storage/eventlog/sqlite_event_sync.py,sha256=kURCfplPLhamOtYNiFicpSyDGQX7Cj75M6PurAdA3uc,6287
@@ -331,26 +368,33 @@ aethergraph/storage/kv/inmem_kv.py,sha256=2mHgdzbDwgPiNcFK7EezDquw1rSkcGmI31QFu9
331
368
  aethergraph/storage/kv/layered_kv.py,sha256=sESzFJb-bG6m0YQ-A1I8qNBgUX2p-ELCI3EwEJilt_0,1681
332
369
  aethergraph/storage/kv/sqlite_kv.py,sha256=gIqCPoQm7xg7ig_Au5tLSoW5doAOZ9JU3VPWXPC_v90,1382
333
370
  aethergraph/storage/kv/sqlite_kv_sync.py,sha256=q4ZP23av9pvVa25TarjiTk_f6_HE-u4zDd5XP_Y6YL4,3342
334
- aethergraph/storage/memory/event_persist.py,sha256=MvqgFtr7StauCNXfU_cQlKDn2Q-GnIpe2utDcm7E4x4,2300
335
- aethergraph/storage/memory/fs_persist.py,sha256=ffM_sxQYv7Z4G6T-CRi-2sx4wi8sc7buyRFxxhYdxio,3860
371
+ aethergraph/storage/memory/event_persist.py,sha256=dToKNwe17vlyGG_JdQRAX4aKXvZZAi9w5BTUKEQXXWQ,3524
372
+ aethergraph/storage/memory/fs_persist.py,sha256=wqM0pCRLjmtZGTHbyENATHkVf-fRXlNsWLwkmb2snoQ,4816
336
373
  aethergraph/storage/memory/hotlog.py,sha256=s-Ivn8aTZphSYp3VDwrLr6gFs-pkf5FzPSoQWdo4vJ4,1086
337
374
  aethergraph/storage/memory/indices.py,sha256=qkxQdOgBYgK27eWXxaEnMGNswG5HDza2R25BZCTULMQ,3374
338
375
  aethergraph/storage/metering/meter_event.py,sha256=ZbFklJFYRZacxFHXgXyM8edpsKsCukp84tLFrsy74rs,1680
339
376
  aethergraph/storage/runs/doc_store.py,sha256=iOeu6hmXSrwvf_X9DhfBUMtKxdfBx14G2lWb1QIRxmg,8779
340
377
  aethergraph/storage/runs/inmen_store.py,sha256=O4juVpRkhmwXyqB6KYTH38ofjhdaquNscr_hCAMWNzg,2896
341
378
  aethergraph/storage/runs/sqlite_run_store.py,sha256=e3CTJgE71IAvdqAFx-gBlepVLIFePmElbRSN6lrTehQ,12573
379
+ aethergraph/storage/search_backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
+ aethergraph/storage/search_backend/generic_vector_backend.py,sha256=Za44aThX3hFoYHolwkA2caWJRj1QZGrWI0L-kQAvy98,7530
381
+ aethergraph/storage/search_backend/null_backend.py,sha256=7-40q0htHth8vh1lIW0xWv4LF9OzHNxSlsRNyfWPwSs,875
382
+ aethergraph/storage/search_backend/sqlite_lexical_backend.py,sha256=JHfdY9G2hUYlcAVyHD8Ed_-t_HOiwO7U3rFMYsb1RK8,13235
383
+ aethergraph/storage/search_backend/utils.py,sha256=i07JZ-81YQU3IMVjEkgNct4aKhUEyH_xCRJwR7rFDsI,834
342
384
  aethergraph/storage/sessions/doc_store.py,sha256=3HptxFdTN5PK6osuRw7NEL5TZ5dKr6HfcIdUzRN2pUQ,5861
343
385
  aethergraph/storage/sessions/inmem_store.py,sha256=P1W9p3tJ6iJS8zA1HfOP-FLhn5y4wIQRereltb2Ynk0,3527
344
386
  aethergraph/storage/sessions/sqlite_session_store.py,sha256=80J34Lnin3SK2epiVw9pjnK4E4fQwbTTvZLISjCH53A,12468
345
387
  aethergraph/storage/vector_index/chroma_index.py,sha256=DOJ5CnsKVhhF5BKbuVJWe63ZcrcUEKoK5VKVRYTTld4,4712
346
- aethergraph/storage/vector_index/faiss_index.py,sha256=uHEJyqkbWFcTIcZ3nXY0UWBjY8kNmqU2_AUfLLlw8p8,6534
347
- aethergraph/storage/vector_index/sqlite_index.py,sha256=zoU7uSlMPGQKJE3UpVWGdMBV5Z7Ft-Hw0r7hKTuwgLo,6271
388
+ aethergraph/storage/vector_index/faiss_index.py,sha256=vmez6PCcy35uB0PiKdamL-fB5f78xsSUJ1PzCT4e9As,9034
389
+ aethergraph/storage/vector_index/sqlite_index.py,sha256=ffkmU5oUr-yH7DAinRNXm81z-OlVksZa0LWgxh0ckZg,24406
390
+ aethergraph/storage/vector_index/sqlite_index_vanila.py,sha256=H-Vy-WJ7Vwq51Q8M7GGWyWoq_laElgwk8BiM1Y7Tb6I,10660
391
+ aethergraph/storage/vector_index/utils.py,sha256=1z_A7N9rOyc_LP5pwjXFwuEf5vJoAt5BGnw-gjO-QWI,484
348
392
  aethergraph/tools/__init__.py,sha256=X6UEYgaxAoB532m40LPo0uMvMierk3gmVvsjM7MA4ow,458
349
393
  aethergraph/utils/optdeps.py,sha256=wlIq0e_WBTXBgYGqzYxaCcg_D47vDccqY3sql5zKbW4,285
350
- aethergraph-0.1.0a3.dist-info/licenses/LICENSE,sha256=JcWMZSXRGzXgAJMkTpqHvmyXtsYoAwRcB0rnNS0cRCE,10034
351
- aethergraph-0.1.0a3.dist-info/licenses/NOTICE,sha256=10TYfrFmJdzpCWge_f-DYyDtYDzU2MtE5qtQr4Sm8kc,1338
352
- aethergraph-0.1.0a3.dist-info/METADATA,sha256=3ctNYPMBmp8tG_cdlz71TvD5RKOVb_3jvXf5AWm7ZFE,22262
353
- aethergraph-0.1.0a3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
354
- aethergraph-0.1.0a3.dist-info/entry_points.txt,sha256=aqzsmIiAbKW3Z2uAcAi1Z1bkUu7vKrUuApttCPhhOyA,110
355
- aethergraph-0.1.0a3.dist-info/top_level.txt,sha256=omXbbeG3KmSv0unFePBbnmxe6L0k9E5CSoANPs7FMkY,12
356
- aethergraph-0.1.0a3.dist-info/RECORD,,
394
+ aethergraph-0.1.0a4.dist-info/licenses/LICENSE,sha256=JcWMZSXRGzXgAJMkTpqHvmyXtsYoAwRcB0rnNS0cRCE,10034
395
+ aethergraph-0.1.0a4.dist-info/licenses/NOTICE,sha256=10TYfrFmJdzpCWge_f-DYyDtYDzU2MtE5qtQr4Sm8kc,1338
396
+ aethergraph-0.1.0a4.dist-info/METADATA,sha256=g0LITpYDVX73tXHxUIU28JR8KM6z90K9j1eCfo2GDuA,22262
397
+ aethergraph-0.1.0a4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
398
+ aethergraph-0.1.0a4.dist-info/entry_points.txt,sha256=aqzsmIiAbKW3Z2uAcAi1Z1bkUu7vKrUuApttCPhhOyA,110
399
+ aethergraph-0.1.0a4.dist-info/top_level.txt,sha256=omXbbeG3KmSv0unFePBbnmxe6L0k9E5CSoANPs7FMkY,12
400
+ aethergraph-0.1.0a4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,90 +0,0 @@
1
- # aethergraph/examples/agents/default_chat_agent.py (or similar)
2
-
3
- from __future__ import annotations
4
-
5
- from typing import Any
6
-
7
- from aethergraph import NodeContext, graph_fn
8
- from aethergraph.plugins.agents.shared import build_session_memory_prompt_segments
9
-
10
-
11
- @graph_fn(
12
- name="default_chat_agent",
13
- inputs=["message", "files", "session_id", "user_meta"],
14
- outputs=["reply"],
15
- as_agent={
16
- "id": "chat_agent",
17
- "title": "Chat",
18
- "description": "Built-in chat agent that uses the configured LLM.",
19
- "icon": "message-circle",
20
- "color": "sky",
21
- "session_kind": "chat",
22
- "mode": "chat_v1",
23
- "memory_level": "session",
24
- "memory_scope": "session.global",
25
- },
26
- )
27
- async def default_chat_agent(
28
- message: str,
29
- files: list[Any] | None = None,
30
- session_id: str | None = None,
31
- user_meta: dict[str, Any] | None = None,
32
- context_refs: list[dict[str, Any]] | None = None,
33
- *,
34
- context: NodeContext,
35
- ):
36
- """
37
- Simple built-in chat agent:
38
-
39
- - Takes {message, files}
40
- - Calls the configured LLM
41
- - Uses shared session memory (summary + recent events) in the prompt.
42
- """
43
-
44
- llm = context.llm()
45
- chan = context.ui_session_channel()
46
-
47
- # 1) Build memory segments for this session
48
- session_summary, recent_events = await build_session_memory_prompt_segments(
49
- context,
50
- summary_tag="session",
51
- recent_limit=12,
52
- )
53
-
54
- # print("Session summary:", session_summary)
55
- # print("Recent events:", recent_events)
56
-
57
- # 2) System + user messages (you can move this into PromptStore later)
58
- system_prompt = (
59
- "You are AetherGraph's built-in session helper.\n\n"
60
- "You can see a short summary of the session and a few recent events from all agents.\n"
61
- "Use them to answer questions about previous steps or runs, but do not invent details.\n"
62
- "If you are unsure, say that clearly.\n"
63
- "When return math or code snippets, use markdown formatting.\n"
64
- "Math formatting rules:\n"
65
- "- Use LaTeX math delimiters:\n"
66
- " - Inline: \\( ... \\) (no extra spaces right after \\( or before \\))\n"
67
- " - Display: $$ ... $$ (for standalone equations)\n"
68
- )
69
-
70
- memory_context = ""
71
- if session_summary:
72
- memory_context += f"Session summary:\n{session_summary}\n\n"
73
- if recent_events:
74
- memory_context += f"Recent events:\n{recent_events}\n\n"
75
-
76
- user_prompt = f"{memory_context}" "User message:\n" f"{message}\n"
77
-
78
- # 3) Call LLM with chat-style API
79
- resp, _usage = await llm.chat(
80
- messages=[
81
- {"role": "system", "content": system_prompt},
82
- {"role": "user", "content": user_prompt},
83
- ],
84
- )
85
-
86
- await chan.send_text(resp)
87
-
88
- return {
89
- "reply": resp,
90
- }