aethergraph 0.1.0a1__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 (182) hide show
  1. aethergraph/__init__.py +49 -0
  2. aethergraph/config/__init__.py +0 -0
  3. aethergraph/config/config.py +121 -0
  4. aethergraph/config/context.py +16 -0
  5. aethergraph/config/llm.py +26 -0
  6. aethergraph/config/loader.py +60 -0
  7. aethergraph/config/runtime.py +9 -0
  8. aethergraph/contracts/errors/errors.py +44 -0
  9. aethergraph/contracts/services/artifacts.py +142 -0
  10. aethergraph/contracts/services/channel.py +72 -0
  11. aethergraph/contracts/services/continuations.py +23 -0
  12. aethergraph/contracts/services/eventbus.py +12 -0
  13. aethergraph/contracts/services/kv.py +24 -0
  14. aethergraph/contracts/services/llm.py +17 -0
  15. aethergraph/contracts/services/mcp.py +22 -0
  16. aethergraph/contracts/services/memory.py +108 -0
  17. aethergraph/contracts/services/resume.py +28 -0
  18. aethergraph/contracts/services/state_stores.py +33 -0
  19. aethergraph/contracts/services/wakeup.py +28 -0
  20. aethergraph/core/execution/base_scheduler.py +77 -0
  21. aethergraph/core/execution/forward_scheduler.py +777 -0
  22. aethergraph/core/execution/global_scheduler.py +634 -0
  23. aethergraph/core/execution/retry_policy.py +22 -0
  24. aethergraph/core/execution/step_forward.py +411 -0
  25. aethergraph/core/execution/step_result.py +18 -0
  26. aethergraph/core/execution/wait_types.py +72 -0
  27. aethergraph/core/graph/graph_builder.py +192 -0
  28. aethergraph/core/graph/graph_fn.py +219 -0
  29. aethergraph/core/graph/graph_io.py +67 -0
  30. aethergraph/core/graph/graph_refs.py +154 -0
  31. aethergraph/core/graph/graph_spec.py +115 -0
  32. aethergraph/core/graph/graph_state.py +59 -0
  33. aethergraph/core/graph/graphify.py +128 -0
  34. aethergraph/core/graph/interpreter.py +145 -0
  35. aethergraph/core/graph/node_handle.py +33 -0
  36. aethergraph/core/graph/node_spec.py +46 -0
  37. aethergraph/core/graph/node_state.py +63 -0
  38. aethergraph/core/graph/task_graph.py +747 -0
  39. aethergraph/core/graph/task_node.py +82 -0
  40. aethergraph/core/graph/utils.py +37 -0
  41. aethergraph/core/graph/visualize.py +239 -0
  42. aethergraph/core/runtime/ad_hoc_context.py +61 -0
  43. aethergraph/core/runtime/base_service.py +153 -0
  44. aethergraph/core/runtime/bind_adapter.py +42 -0
  45. aethergraph/core/runtime/bound_memory.py +69 -0
  46. aethergraph/core/runtime/execution_context.py +220 -0
  47. aethergraph/core/runtime/graph_runner.py +349 -0
  48. aethergraph/core/runtime/lifecycle.py +26 -0
  49. aethergraph/core/runtime/node_context.py +203 -0
  50. aethergraph/core/runtime/node_services.py +30 -0
  51. aethergraph/core/runtime/recovery.py +159 -0
  52. aethergraph/core/runtime/run_registration.py +33 -0
  53. aethergraph/core/runtime/runtime_env.py +157 -0
  54. aethergraph/core/runtime/runtime_registry.py +32 -0
  55. aethergraph/core/runtime/runtime_services.py +224 -0
  56. aethergraph/core/runtime/wakeup_watcher.py +40 -0
  57. aethergraph/core/tools/__init__.py +10 -0
  58. aethergraph/core/tools/builtins/channel_tools.py +194 -0
  59. aethergraph/core/tools/builtins/toolset.py +134 -0
  60. aethergraph/core/tools/toolkit.py +510 -0
  61. aethergraph/core/tools/waitable.py +109 -0
  62. aethergraph/plugins/channel/__init__.py +0 -0
  63. aethergraph/plugins/channel/adapters/__init__.py +0 -0
  64. aethergraph/plugins/channel/adapters/console.py +106 -0
  65. aethergraph/plugins/channel/adapters/file.py +102 -0
  66. aethergraph/plugins/channel/adapters/slack.py +285 -0
  67. aethergraph/plugins/channel/adapters/telegram.py +302 -0
  68. aethergraph/plugins/channel/adapters/webhook.py +104 -0
  69. aethergraph/plugins/channel/adapters/webui.py +134 -0
  70. aethergraph/plugins/channel/routes/__init__.py +0 -0
  71. aethergraph/plugins/channel/routes/console_routes.py +86 -0
  72. aethergraph/plugins/channel/routes/slack_routes.py +49 -0
  73. aethergraph/plugins/channel/routes/telegram_routes.py +26 -0
  74. aethergraph/plugins/channel/routes/webui_routes.py +136 -0
  75. aethergraph/plugins/channel/utils/__init__.py +0 -0
  76. aethergraph/plugins/channel/utils/slack_utils.py +278 -0
  77. aethergraph/plugins/channel/utils/telegram_utils.py +324 -0
  78. aethergraph/plugins/channel/websockets/slack_ws.py +68 -0
  79. aethergraph/plugins/channel/websockets/telegram_polling.py +151 -0
  80. aethergraph/plugins/mcp/fs_server.py +128 -0
  81. aethergraph/plugins/mcp/http_server.py +101 -0
  82. aethergraph/plugins/mcp/ws_server.py +180 -0
  83. aethergraph/plugins/net/http.py +10 -0
  84. aethergraph/plugins/utils/data_io.py +359 -0
  85. aethergraph/runner/__init__.py +5 -0
  86. aethergraph/runtime/__init__.py +62 -0
  87. aethergraph/server/__init__.py +3 -0
  88. aethergraph/server/app_factory.py +84 -0
  89. aethergraph/server/start.py +122 -0
  90. aethergraph/services/__init__.py +10 -0
  91. aethergraph/services/artifacts/facade.py +284 -0
  92. aethergraph/services/artifacts/factory.py +35 -0
  93. aethergraph/services/artifacts/fs_store.py +656 -0
  94. aethergraph/services/artifacts/jsonl_index.py +123 -0
  95. aethergraph/services/artifacts/paths.py +23 -0
  96. aethergraph/services/artifacts/sqlite_index.py +209 -0
  97. aethergraph/services/artifacts/utils.py +124 -0
  98. aethergraph/services/auth/dev.py +16 -0
  99. aethergraph/services/channel/channel_bus.py +293 -0
  100. aethergraph/services/channel/factory.py +44 -0
  101. aethergraph/services/channel/session.py +511 -0
  102. aethergraph/services/channel/wait_helpers.py +57 -0
  103. aethergraph/services/clock/clock.py +9 -0
  104. aethergraph/services/container/default_container.py +320 -0
  105. aethergraph/services/continuations/continuation.py +56 -0
  106. aethergraph/services/continuations/factory.py +34 -0
  107. aethergraph/services/continuations/stores/fs_store.py +264 -0
  108. aethergraph/services/continuations/stores/inmem_store.py +95 -0
  109. aethergraph/services/eventbus/inmem.py +21 -0
  110. aethergraph/services/features/static.py +10 -0
  111. aethergraph/services/kv/ephemeral.py +90 -0
  112. aethergraph/services/kv/factory.py +27 -0
  113. aethergraph/services/kv/layered.py +41 -0
  114. aethergraph/services/kv/sqlite_kv.py +128 -0
  115. aethergraph/services/llm/factory.py +157 -0
  116. aethergraph/services/llm/generic_client.py +542 -0
  117. aethergraph/services/llm/providers.py +3 -0
  118. aethergraph/services/llm/service.py +105 -0
  119. aethergraph/services/logger/base.py +36 -0
  120. aethergraph/services/logger/compat.py +50 -0
  121. aethergraph/services/logger/formatters.py +106 -0
  122. aethergraph/services/logger/std.py +203 -0
  123. aethergraph/services/mcp/helpers.py +23 -0
  124. aethergraph/services/mcp/http_client.py +70 -0
  125. aethergraph/services/mcp/mcp_tools.py +21 -0
  126. aethergraph/services/mcp/registry.py +14 -0
  127. aethergraph/services/mcp/service.py +100 -0
  128. aethergraph/services/mcp/stdio_client.py +70 -0
  129. aethergraph/services/mcp/ws_client.py +115 -0
  130. aethergraph/services/memory/bound.py +106 -0
  131. aethergraph/services/memory/distillers/episode.py +116 -0
  132. aethergraph/services/memory/distillers/rolling.py +74 -0
  133. aethergraph/services/memory/facade.py +633 -0
  134. aethergraph/services/memory/factory.py +78 -0
  135. aethergraph/services/memory/hotlog_kv.py +27 -0
  136. aethergraph/services/memory/indices.py +74 -0
  137. aethergraph/services/memory/io_helpers.py +72 -0
  138. aethergraph/services/memory/persist_fs.py +40 -0
  139. aethergraph/services/memory/resolver.py +152 -0
  140. aethergraph/services/metering/noop.py +4 -0
  141. aethergraph/services/prompts/file_store.py +41 -0
  142. aethergraph/services/rag/chunker.py +29 -0
  143. aethergraph/services/rag/facade.py +593 -0
  144. aethergraph/services/rag/index/base.py +27 -0
  145. aethergraph/services/rag/index/faiss_index.py +121 -0
  146. aethergraph/services/rag/index/sqlite_index.py +134 -0
  147. aethergraph/services/rag/index_factory.py +52 -0
  148. aethergraph/services/rag/parsers/md.py +7 -0
  149. aethergraph/services/rag/parsers/pdf.py +14 -0
  150. aethergraph/services/rag/parsers/txt.py +7 -0
  151. aethergraph/services/rag/utils/hybrid.py +39 -0
  152. aethergraph/services/rag/utils/make_fs_key.py +62 -0
  153. aethergraph/services/redactor/simple.py +16 -0
  154. aethergraph/services/registry/key_parsing.py +44 -0
  155. aethergraph/services/registry/registry_key.py +19 -0
  156. aethergraph/services/registry/unified_registry.py +185 -0
  157. aethergraph/services/resume/multi_scheduler_resume_bus.py +65 -0
  158. aethergraph/services/resume/router.py +73 -0
  159. aethergraph/services/schedulers/registry.py +41 -0
  160. aethergraph/services/secrets/base.py +7 -0
  161. aethergraph/services/secrets/env.py +8 -0
  162. aethergraph/services/state_stores/externalize.py +135 -0
  163. aethergraph/services/state_stores/graph_observer.py +131 -0
  164. aethergraph/services/state_stores/json_store.py +67 -0
  165. aethergraph/services/state_stores/resume_policy.py +119 -0
  166. aethergraph/services/state_stores/serialize.py +249 -0
  167. aethergraph/services/state_stores/utils.py +91 -0
  168. aethergraph/services/state_stores/validate.py +78 -0
  169. aethergraph/services/tracing/noop.py +18 -0
  170. aethergraph/services/waits/wait_registry.py +91 -0
  171. aethergraph/services/wakeup/memory_queue.py +57 -0
  172. aethergraph/services/wakeup/scanner_producer.py +56 -0
  173. aethergraph/services/wakeup/worker.py +31 -0
  174. aethergraph/tools/__init__.py +25 -0
  175. aethergraph/utils/optdeps.py +8 -0
  176. aethergraph-0.1.0a1.dist-info/METADATA +410 -0
  177. aethergraph-0.1.0a1.dist-info/RECORD +182 -0
  178. aethergraph-0.1.0a1.dist-info/WHEEL +5 -0
  179. aethergraph-0.1.0a1.dist-info/entry_points.txt +2 -0
  180. aethergraph-0.1.0a1.dist-info/licenses/LICENSE +176 -0
  181. aethergraph-0.1.0a1.dist-info/licenses/NOTICE +31 -0
  182. aethergraph-0.1.0a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,182 @@
1
+ aethergraph/__init__.py,sha256=LuzSyqu0jmt4YxwHdgFn-OM_5EsO66YI55QKaDa-N9w,1290
2
+ aethergraph/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ aethergraph/config/config.py,sha256=OJewUlLyNFJhKgnDTsPvZQvaw1Z6FfuBbRbpxJq_VJg,4182
4
+ aethergraph/config/context.py,sha256=dn0-6LG52fdVDzSJjq9GDv7BWaO9ncM1LJ54FVGLmXc,451
5
+ aethergraph/config/llm.py,sha256=_oi_JeuX-IpPhj-Y5oBeLlebFnjWr7xYyzmgpIjT7dk,785
6
+ aethergraph/config/loader.py,sha256=x_t6QLYnCCgZ8-805IMioZjaK0_Cinl1tqMBr4_84us,2031
7
+ aethergraph/config/runtime.py,sha256=tYcs2QPmhgcePLJJPnbmJ9xd69S_qvYJm2Kt5OWziR4,194
8
+ aethergraph/contracts/errors/errors.py,sha256=EELKbyU65wzSaoiW4UDKkIcDmVs3jUi-UyuwtAizXQ0,1421
9
+ aethergraph/contracts/services/artifacts.py,sha256=kq9Do-MFChneJzHfnDjrTs71fnXdT5mBSpovhF0fZ4M,4500
10
+ aethergraph/contracts/services/channel.py,sha256=VcAWdklLaADCKEWr6eH4eFwtwgib6aDtul-28Q8Q_7A,2846
11
+ aethergraph/contracts/services/continuations.py,sha256=n7joRpMjFEQ61k5UgMmG1qzmzFxn8yFJeufGV2ojUHU,1021
12
+ aethergraph/contracts/services/eventbus.py,sha256=p6l_Ebmk0h6zF6nrq2RP83Y21jjlSiSoCFY3Nhzt_-g,366
13
+ aethergraph/contracts/services/kv.py,sha256=82q_tQEQ1YfhQPU1CbotIMPcwYAO0pu0VkKdy6_LRKo,1072
14
+ aethergraph/contracts/services/llm.py,sha256=viAwFGbyzC3k4Fw22lnc_Jezi9lMopkHPBoM53TdjXY,583
15
+ aethergraph/contracts/services/mcp.py,sha256=X24iufFK8GaijqgMXhVQNgbiVobMbHppOmf8J7A5Uzs,626
16
+ aethergraph/contracts/services/memory.py,sha256=NYJz9n1ixbJGpHNLw0pX9Fyinb9KTV97NFBF1XVxgKw,3721
17
+ aethergraph/contracts/services/resume.py,sha256=5TyP9KP_NnavWMG2R_ZR-o6aKNg09oOI0KwXLgcztm8,856
18
+ aethergraph/contracts/services/state_stores.py,sha256=irNCfZBy4n-0jySSLk-ZmJKaWvkAT9Htu5L5sf8ePlo,997
19
+ aethergraph/contracts/services/wakeup.py,sha256=RyKg0doETHWTu4ki4Wne9VpBkvSA4D9fN078ipjW94Q,879
20
+ aethergraph/core/execution/base_scheduler.py,sha256=nhcusZQp7KO-6V6h4wv0Zvx_YLvrGVmI8aks0f4Z6ec,2475
21
+ aethergraph/core/execution/forward_scheduler.py,sha256=wbjxxeoRNjumcZuDpSGYZ6xFKWrewJcxmKG3AjPUh5w,33866
22
+ aethergraph/core/execution/global_scheduler.py,sha256=xM3JdmCdCh7ndhUtBBwEUfbrDO1mdIJOefY-iiJORtg,25871
23
+ aethergraph/core/execution/retry_policy.py,sha256=zLHYs8ZX3yaPYSUBp_9oyMaj1RvQmv_JBkPl_aBg-rc,810
24
+ aethergraph/core/execution/step_forward.py,sha256=GR-x9CX28ZMWbe4WP9iE4SiHWd6r48gRRxOMtaD_7tA,14758
25
+ aethergraph/core/execution/step_result.py,sha256=-ywMoVghqvEKsbi5hceEt_uMCetp-_6BajdD36W4oQs,698
26
+ aethergraph/core/execution/wait_types.py,sha256=QYRR3MyIhOeSrbLtLXj9n9OIU8Sck5YHpeHsdwuQHzc,2826
27
+ aethergraph/core/graph/graph_builder.py,sha256=l7IQsMrJREbLyd2CiUbvJrtwvU5eZZ8_iRLMpxAoxRs,7142
28
+ aethergraph/core/graph/graph_fn.py,sha256=yuj-Bxyg65Y293O3JeuDi5BPvM3nZnY1M_QJd2CbH_Y,7471
29
+ aethergraph/core/graph/graph_io.py,sha256=uoUtTQP6TO-MZ0CszPAR6tiKOxfKSz-Y6wUMK8P38NU,2560
30
+ aethergraph/core/graph/graph_refs.py,sha256=_6daCyA2uQzB-fxUBPAjTARgCF8Juh0d0kTHHwGeiKI,5049
31
+ aethergraph/core/graph/graph_spec.py,sha256=D5QsQNwQyvyCOnmin__4MAXgw_HUVGIMVyNN69aK9eU,3796
32
+ aethergraph/core/graph/graph_state.py,sha256=z4_3gBGZ6gBzJH9E5YUbGc5EtRAP611xiXFW6WArwIE,2394
33
+ aethergraph/core/graph/graphify.py,sha256=gpTK4bWAFT-fHo_n0E7HrSMQqlsPvig16OV-0CdzUOg,4713
34
+ aethergraph/core/graph/interpreter.py,sha256=b9aNzr8Z4G_gsnDcJxd5ci8fQRdAsOqOnGM24DPHTNU,4807
35
+ aethergraph/core/graph/node_handle.py,sha256=eGo5h5cG2ogbYnRl8phcyHs6-4QtOeWNizgZKh4dKbM,1117
36
+ aethergraph/core/graph/node_spec.py,sha256=pXcSdjLFb9riWH7khh-E2oPOJLTN8pFIZXVYqLX_rXk,1451
37
+ aethergraph/core/graph/node_state.py,sha256=5XMrDv8F0rpGUQn3licTTZOVzRJ_5nBDeaXpn6MWHGI,2034
38
+ aethergraph/core/graph/task_graph.py,sha256=NpVX-D_CDNg1uhcuNInAuush7KeVmTXMJu4tna5RlWE,30586
39
+ aethergraph/core/graph/task_node.py,sha256=Hg-rVwKfViPtD0hsU5Z381Zw7ecxOxYXyGqvQ25qr-M,2143
40
+ aethergraph/core/graph/utils.py,sha256=7H-2PCirgBfiUsNd0-C1yG3Y8x9zuWh5OXue_Gx32g8,1245
41
+ aethergraph/core/graph/visualize.py,sha256=TFRNJmcakAc2MqWASUvTGGDf8XJx38t5EW4tfyAj3ag,8110
42
+ aethergraph/core/runtime/ad_hoc_context.py,sha256=gd-CGfMp-UEy458OLKtNRC6-IzFKnLchuX3ufc1tOEU,1680
43
+ aethergraph/core/runtime/base_service.py,sha256=LXESFb0hf-gUMCRS25wymELaXAKpLsOtIUr1LbKZEaU,4778
44
+ aethergraph/core/runtime/bind_adapter.py,sha256=HlPJyPxiNF8nlzBqsDeDiiSkeVr2gq7oEDR_7vX1f6k,1097
45
+ aethergraph/core/runtime/bound_memory.py,sha256=uKxvmyP56G14pReJN_B0_kKdKHHoKkJFCmyjB-_COiE,2242
46
+ aethergraph/core/runtime/execution_context.py,sha256=_QceHQch2e6aDRAO4c7JtIhQvPyFlLSqvZNluz3Y_Z4,9344
47
+ aethergraph/core/runtime/graph_runner.py,sha256=t_tvIa51fiSSNhg6ZUs08mIaUiA41KKubqeooyZUn2Y,12539
48
+ aethergraph/core/runtime/lifecycle.py,sha256=xPoGDWxNp-MEufM19VmQXoBOzr9HHErCDAEIqpYSIyQ,776
49
+ aethergraph/core/runtime/node_context.py,sha256=sG3ZbyyWK6G-Is27eABH5sKwR_RWcMItG6vmc0fasq8,7114
50
+ aethergraph/core/runtime/node_services.py,sha256=8_MVKYANZnSS7UWsfNGRFhwejgsnNDqs4pmnpSDBLn4,1339
51
+ aethergraph/core/runtime/recovery.py,sha256=DGIICAKpPyfFQDUz5sux1MamWrm5E3BMWdZXm--3wYk,5766
52
+ aethergraph/core/runtime/run_registration.py,sha256=oouS-GZgiK2A_3agFPqv1vJjkZCAPLcy56ijzKL6GOM,1305
53
+ aethergraph/core/runtime/runtime_env.py,sha256=yTAWG3wh1ZgdHnMYV2SGe2Ya_gZr9zG4QzqsX6ND86w,5321
54
+ aethergraph/core/runtime/runtime_registry.py,sha256=ik2VMWEWVSHc1xsUGZHu4krKE4cTZ-Lvab_Vv9j6KBA,1081
55
+ aethergraph/core/runtime/runtime_services.py,sha256=O9ma7HWbpnmf8UTUtDML8KLUeAYUY5EQ3deyV9rXv6k,6269
56
+ aethergraph/core/runtime/wakeup_watcher.py,sha256=Exw8chz7UXqfKVObuYjY-byRAyYk9pw_stlXqzkuct0,1496
57
+ aethergraph/core/tools/__init__.py,sha256=_IITFxrr0evTGMHyjFGUrFcZysm0LSPg2g6IiSsRRMo,298
58
+ aethergraph/core/tools/toolkit.py,sha256=DsmLqemYXlFMulALLdXKctopUe8R_rRiK58dktx0TaM,18944
59
+ aethergraph/core/tools/waitable.py,sha256=xcJIvgKY11HszCeleu9Hm6sgD1KRwmJ-A5rjDcRd2Rs,4053
60
+ aethergraph/core/tools/builtins/channel_tools.py,sha256=Ho2nM6WeViHJKE26MnB-eHPaPW9R8N1axE0WpGo4XGk,5710
61
+ aethergraph/core/tools/builtins/toolset.py,sha256=5pJ4pYHEmwp9WrQ7Z7FyUk6RpSWQ2X5_OyT6TbmYTCE,3555
62
+ aethergraph/plugins/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ aethergraph/plugins/channel/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ aethergraph/plugins/channel/adapters/console.py,sha256=Fe620-lVD42xKaX7y69TwU-n_iKoe91omNefZciLDeE,4242
65
+ aethergraph/plugins/channel/adapters/file.py,sha256=rd0vKMTX5UojKUTm_L5gQIOE2oTRP7EqI2rrTAI01TI,3374
66
+ aethergraph/plugins/channel/adapters/slack.py,sha256=pmbvU-u_4VxH_QVnm6vFMlH6gJ57yPulnxdb-l3sqmo,11245
67
+ aethergraph/plugins/channel/adapters/telegram.py,sha256=OldJo21nrG9rEHygDQU1GDhg0HzJPv-3v6E8VtKJ6fY,12279
68
+ aethergraph/plugins/channel/adapters/webhook.py,sha256=28j2PL3OXiUugecTtGfl0t3J0h24hu7RSir3QHQlhbs,3811
69
+ aethergraph/plugins/channel/adapters/webui.py,sha256=JZ3g0Z4zx1WI0TZ_S4ilyKU9m1mQgomVuuPiUBbrYHM,4703
70
+ aethergraph/plugins/channel/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ aethergraph/plugins/channel/routes/console_routes.py,sha256=k6KPPEROBMU9yenBm2qSOix7QLRoSY8lXwPt0uVqtlU,3395
72
+ aethergraph/plugins/channel/routes/slack_routes.py,sha256=4fzJWEOzU3lbcB7ToXrxfkdN9Kt-B2Hkgl-FSsO2xLI,1354
73
+ aethergraph/plugins/channel/routes/telegram_routes.py,sha256=OJ2pZmLr8vmLpAtFlVjtG0kS4fv7sh_2j6Rm-MB0oTI,809
74
+ aethergraph/plugins/channel/routes/webui_routes.py,sha256=_ogCHF2WR33QTx2Djo93qWyjNwBG86ZZwXevdIV3dUU,4351
75
+ aethergraph/plugins/channel/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ aethergraph/plugins/channel/utils/slack_utils.py,sha256=SBS5YrIhklv6Mk-s49_4ttGt58GRoqqU-rMXVJwidMM,10264
77
+ aethergraph/plugins/channel/utils/telegram_utils.py,sha256=FyHIYOdGZBfjrrpGPqAA0PQ4RlLV25s7Vz_m4a-sF8w,12132
78
+ aethergraph/plugins/channel/websockets/slack_ws.py,sha256=7zU28StFGFfFSAT1I2u2OGsP7QchO5wU1Hz-w3vyn08,2842
79
+ aethergraph/plugins/channel/websockets/telegram_polling.py,sha256=R0Enc4v-9po2cxvlXxIDJvk8RAzm_yp_sCF3JCFAdo4,5922
80
+ aethergraph/plugins/mcp/fs_server.py,sha256=skRjoA7crAUiYQwy8npwzu51PhhNKP8eBkDwHZF1tSs,3858
81
+ aethergraph/plugins/mcp/http_server.py,sha256=wQrV4wdqkStKuj8f2pblbik9ohQDj-yT87hRAOgMWO8,3153
82
+ aethergraph/plugins/mcp/ws_server.py,sha256=zMcMJJnzWQ5GTTlIfZyDQasgaAxXrH1nq281aQKJZbs,6603
83
+ aethergraph/plugins/net/http.py,sha256=2CiSzUCNGd0dl-ld0Z2RU1OgkMKm8t1188wmt27SLjo,299
84
+ aethergraph/plugins/utils/data_io.py,sha256=7gfd8jUUmYJmAupwno7O9TwteVWsjY_Tnp0qB1QBQLg,10824
85
+ aethergraph/runner/__init__.py,sha256=l90QHNCvY7rLgHQSKxWA3faiqXF8pt_2mApMuUgR37c,190
86
+ aethergraph/runtime/__init__.py,sha256=A8xUT42-698yg9ycfJmg2mD9EI-OE0vz7eIJoTDb3dQ,1715
87
+ aethergraph/server/__init__.py,sha256=sAOwqEBX6vWES6_D0CBDCYcpVaIM6pz8El-mGxp3zpA,133
88
+ aethergraph/server/app_factory.py,sha256=xB-wuXjh1-u6Rv7G2YZK-WM3R6lXiwrxxKnpxJVocxk,2993
89
+ aethergraph/server/start.py,sha256=QWIgIJhH5OzKN6qp03jzlDg8GRk39etk4sslF1TY1Ew,3288
90
+ aethergraph/services/__init__.py,sha256=SX50b1u1rFsHaMr4UAj5RhJzh0fEmx2l-cZ31MNA_EA,482
91
+ aethergraph/services/artifacts/facade.py,sha256=bdS2iR4Bax4aHSCtIae5WKYclWHJAIaEI6M_H8DdEyU,10656
92
+ aethergraph/services/artifacts/factory.py,sha256=vTDYChY7S1SXtbcFU2-ZoM9bj_-_X8fm44zhvgXvyHc,1120
93
+ aethergraph/services/artifacts/fs_store.py,sha256=s3HtZ8z68o7YbDM_45hhw23Q51vwTv-p6XH9lYydGp4,24204
94
+ aethergraph/services/artifacts/jsonl_index.py,sha256=Y4YABM-ybslTj-M-8rZnhqabuKH3EKx5qNw-MzTcJkY,4944
95
+ aethergraph/services/artifacts/paths.py,sha256=Q3mtLvK418HP4cjYF3SA9TgI_lH_uK0NJd4lqUKk_-w,926
96
+ aethergraph/services/artifacts/sqlite_index.py,sha256=_ztXa2TwGGO_kNoeIIX1VEKM_aQzHZVkgRmVKt1MVQA,7202
97
+ aethergraph/services/artifacts/utils.py,sha256=0VfMrsGUVZPyvO_lA3lXtKZqLCYES5VxJBqoVZdRd9w,4471
98
+ aethergraph/services/auth/dev.py,sha256=KziwuOmHgBPA_ORAIWmDgNYaGFNa7TwQjku8mAblgXw,521
99
+ aethergraph/services/channel/channel_bus.py,sha256=oS612apQdkmWduN8zaAhoFm_vJaPptVPE6suygG2iVo,11997
100
+ aethergraph/services/channel/factory.py,sha256=xrFqfm2FoM1u5LsRpSp5LIOsuR_WnVkAC5E0xanSUaw,1743
101
+ aethergraph/services/channel/session.py,sha256=HwH9G1n7O0uzSIGkuvTDXroruIEfzm3t21rVhLXX80U,18834
102
+ aethergraph/services/channel/wait_helpers.py,sha256=40NbvSZsMPOQGelb6sP4bpF6XeelFVeBaGQ3L5dF6qo,1975
103
+ aethergraph/services/clock/clock.py,sha256=XIt_7NxkpHd_rmbXhHJqWKW3icXu8fdAmmj2rV97bDk,190
104
+ aethergraph/services/container/default_container.py,sha256=usUnPdAQ-4z0pZ_6oHdSOzWE8Hpl8lhk89t8EkF5_cA,10950
105
+ aethergraph/services/continuations/continuation.py,sha256=ExQYImsKCUAQND44Yhu-iYqEY6BxCc5O54ApTAYVAWQ,1851
106
+ aethergraph/services/continuations/factory.py,sha256=fNL0ykF28ahFRKg0Wn_9SAqjaE-S2DLfBkULFMK6v4w,1291
107
+ aethergraph/services/continuations/stores/fs_store.py,sha256=z0bfay6DyAxBNGWJmoN6ibxaUOGFao_DDtVinZ18DSw,10547
108
+ aethergraph/services/continuations/stores/inmem_store.py,sha256=QyRzEK8uQ2fIHHmAlFj9UsBzs8Ub5PUWz15eSDNG4sY,3573
109
+ aethergraph/services/eventbus/inmem.py,sha256=F8C89icPi8ZDcnhb_E4Gt4Q0PEIm7HLLzWGWjJ4aot4,677
110
+ aethergraph/services/features/static.py,sha256=-zefImm-eq_nZNEJzs1N3okgpHGm8cPHVLgjNdSQ-yk,296
111
+ aethergraph/services/kv/ephemeral.py,sha256=_CgycBaLzSzUotH_BLRpKch78WDNmNaZspxWDVQXhG8,3036
112
+ aethergraph/services/kv/factory.py,sha256=V4Q5qUb9Ykhw8tg-UK8QfH1T4E8wybhVOI3dlfZ0J-Q,819
113
+ aethergraph/services/kv/layered.py,sha256=TsUA1pKCeKyxNfTcTFQyobV8vBrsCoH1KyZ40Ge9-Pc,1523
114
+ aethergraph/services/kv/sqlite_kv.py,sha256=PjeRpBDXLXvuioHBbk1JgASDpFCqUtlJL70OEaUYAZA,4796
115
+ aethergraph/services/llm/factory.py,sha256=rfZkGOj7KLNIT_SEJCyTMnA1_GX3JhXZ1ezCDbsYJEU,5546
116
+ aethergraph/services/llm/generic_client.py,sha256=tD26Tn8OAsBHl_glDJHfcQozIt64PxeMm8KIHDHaOCw,20612
117
+ aethergraph/services/llm/providers.py,sha256=PfiAn2OhXEv8FR1jlPaA7kBI60_gWvrw_2SxYXfgMC8,128
118
+ aethergraph/services/llm/service.py,sha256=3uDHQrVTKZc9ptKnLPfZyqiaoN017jVvcrY0Kx6kOHA,3754
119
+ aethergraph/services/logger/base.py,sha256=BuWtFvS0Y9Y_f0_8Do3zfdM58gE70MfIPA6_M1qSI8I,1321
120
+ aethergraph/services/logger/compat.py,sha256=2BSbKv23oWn1ccIQ4NgX079IV94QTg3Z8PlrDfZ6x0c,1838
121
+ aethergraph/services/logger/formatters.py,sha256=2MvYRq5VPWQGwplgokGBtJX9EYULpaHGItDjTTKW2J0,3655
122
+ aethergraph/services/logger/std.py,sha256=EyxbhiHqKR-To3h3Tt9Ff2LVGxemdiCtkbcnTpzftE0,7346
123
+ aethergraph/services/mcp/helpers.py,sha256=lMSViIO3dZD-fHpFMBosr9SdBYgD3GMwd23XswxduOQ,819
124
+ aethergraph/services/mcp/http_client.py,sha256=y8EUZDMwiLVPOheyXiw5eksPp0NoZzjqP3PxXFYAFgo,2311
125
+ aethergraph/services/mcp/mcp_tools.py,sha256=uUXmKvYmVmLvcABIptZ5MzbYC0cDPCgCFppr4O2tKM4,837
126
+ aethergraph/services/mcp/registry.py,sha256=CM8ZfeIHmI0UlPxLITZL_dZv83VXtwPX6ZUb5gZnauM,460
127
+ aethergraph/services/mcp/service.py,sha256=BYvVFqrJnCWwt5rDEKibVoMWgoYpXkrsRf-4hsPLzQY,3637
128
+ aethergraph/services/mcp/stdio_client.py,sha256=nm2tVc4EvJ7MY23S7H9lRpkL-c8G9i3RWBSDYlV4FJI,2728
129
+ aethergraph/services/mcp/ws_client.py,sha256=ctCJzfhVjGXpPbbU2lUQ7ebP5OaqC6GFQm0QbigEDLs,4088
130
+ aethergraph/services/memory/bound.py,sha256=tfsy-RWe4QAAGUDcrzNp54ZRgSZS8g5Irm8hSwmiG9Y,3515
131
+ aethergraph/services/memory/facade.py,sha256=mVycybD27qIJi6gQMneiCp6wsLwKNBZkbOxfqiXJvpM,25079
132
+ aethergraph/services/memory/factory.py,sha256=0FnkMmCAqs4-mgWJiG1lsit9hRh1tI4PIHKEk4BzRHA,2579
133
+ aethergraph/services/memory/hotlog_kv.py,sha256=JVWssYsL-t4asokwq918c1vIa4EVyyi1iyk4uv1Ul1Y,991
134
+ aethergraph/services/memory/indices.py,sha256=Vs1b8JT9xCrHuipTQh6JGlgjFVHiRL4bAuLv2V8vxQc,2799
135
+ aethergraph/services/memory/io_helpers.py,sha256=HOFgVVwoM0erpBu6OtiPlBmjf0L5zHREPm0YtClFz9A,2033
136
+ aethergraph/services/memory/persist_fs.py,sha256=3mPxXfNTObPUzsxdBoPiG4fZ4haLM-GLmjE9oIVhnis,1427
137
+ aethergraph/services/memory/resolver.py,sha256=TiMBJO1ALRO4_7CwafbZ-V70b1ldMLCLHdrn2cN8nuk,5261
138
+ aethergraph/services/memory/distillers/episode.py,sha256=dWsqPGNhMt9KAIKqvNzeCFl4rFCoZ0evR03phVP8kg0,3629
139
+ aethergraph/services/memory/distillers/rolling.py,sha256=vc3Ezecg7hHDYRoCMK3h6UgFC2HsEF1dWzJmiQ-ExTU,2562
140
+ aethergraph/services/metering/noop.py,sha256=d6BJMiRGYpStqMtTv7MPNmVm5z9u9gWCVjUez2Cohss,139
141
+ aethergraph/services/prompts/file_store.py,sha256=z3tyoekJFTs3XVqFjLEC0wmVmdYj8vWDt9L5-GZ_UDg,1429
142
+ aethergraph/services/rag/chunker.py,sha256=WsjlciEUAVn-31nuDJiDcEkM-JtWB6Cp5aYfFC0mpmE,936
143
+ aethergraph/services/rag/facade.py,sha256=8btDrY9405OVKrasBZuzTm5SnANgwI-GMRagCEtvv64,24003
144
+ aethergraph/services/rag/index_factory.py,sha256=jwk7HExXVRxLEkjUjIUwpFFcadQplUup50P6icmD8WY,1741
145
+ aethergraph/services/rag/index/base.py,sha256=814bRi5kO8ZNyPTVo8x1QGEo6hxdmSd4peeUINbfFbg,819
146
+ aethergraph/services/rag/index/faiss_index.py,sha256=9SUNN98fLAkiS-a488sU2zo6_Fn4mxwV6Rz9TmtxErM,4460
147
+ aethergraph/services/rag/index/sqlite_index.py,sha256=anGAgFi_NJqCU71LEsNbEs-un_P4hOEq5LNvO-tFbOM,4524
148
+ aethergraph/services/rag/parsers/md.py,sha256=2rxCBCk0TWQ3CBkOiBSoKUifhNzhaq2JXS6W33uFGM4,196
149
+ aethergraph/services/rag/parsers/pdf.py,sha256=GkNZqz-Yq01iJ6ABTF77wQpI0Y0lHsjdXybKrsnEDiM,375
150
+ aethergraph/services/rag/parsers/txt.py,sha256=2rxCBCk0TWQ3CBkOiBSoKUifhNzhaq2JXS6W33uFGM4,196
151
+ aethergraph/services/rag/utils/hybrid.py,sha256=2as5XZBUWb5EsP_S8YUvvtNZDWyCqSwKd0mjG0SFLj4,1196
152
+ aethergraph/services/rag/utils/make_fs_key.py,sha256=VaJmJUhXIlAckGWfRDPFew07qPBOI_X_NlB75cjP_s4,1658
153
+ aethergraph/services/redactor/simple.py,sha256=uuO7BPHjZ28pncWUjuxRymlN253WWq9lcTRPjkFPybg,505
154
+ aethergraph/services/registry/key_parsing.py,sha256=DeCCrFms2Zx4VO6ONj7M02xPJYv29Ol6gIWAl8bq4js,1334
155
+ aethergraph/services/registry/registry_key.py,sha256=s5ZBdeEyC_3_fkwt44VOiXYacgy9MEITb8qC8Etv8L4,569
156
+ aethergraph/services/registry/unified_registry.py,sha256=nXGmvDJAH0OCYNKDPIC4az5FXLrpI8kUasVPp9v7mhQ,7021
157
+ aethergraph/services/resume/multi_scheduler_resume_bus.py,sha256=ZeQnG1KXKWw2vk4rcgJePYdzPNWOI5m__ZDIHQetibk,2274
158
+ aethergraph/services/resume/router.py,sha256=NYS9uLaq2AB0j5x_VWlEkRRzApxlmlcePigm8vhEqtE,2856
159
+ aethergraph/services/schedulers/registry.py,sha256=tHQKHFqKEzoxzV0e-hTkrPjlGw5ou1BAxk3dzyVMfZY,1200
160
+ aethergraph/services/secrets/base.py,sha256=St9bnXjqNuybq8W2q0IWC-bsboOv8GQDOypGPPsqpNE,204
161
+ aethergraph/services/secrets/env.py,sha256=Zqo-KlyQ_qucZ1Ul2pIUnPheeWqlou4gftWYmhqPIc4,149
162
+ aethergraph/services/state_stores/externalize.py,sha256=jaItE8sOqM7NvjAPka8TOC0c0jhunXBiTJhrROSv3ng,3761
163
+ aethergraph/services/state_stores/graph_observer.py,sha256=OZz81iwqExDlicVHEyGVcAoC7h0QTCPLZSeKABcNvIs,5061
164
+ aethergraph/services/state_stores/json_store.py,sha256=WeoAtCsHdR8Hdewn4zOl_EguvFVSuUXAR5D_85g3mt0,2611
165
+ aethergraph/services/state_stores/resume_policy.py,sha256=_EY8Vvmm7JVyABlKRcI07uMkT4rdzlUKBoWnk_a0UZI,3850
166
+ aethergraph/services/state_stores/serialize.py,sha256=ocTtOovEbSoHKXWy_4qmw83uI-YhV7ewfYyLPRZUn5g,8684
167
+ aethergraph/services/state_stores/utils.py,sha256=OB9OYTYzxFZB75wTKYfCn8QA6gYyfpZ_YAEvx2dHH_8,2761
168
+ aethergraph/services/state_stores/validate.py,sha256=wqaY15P6Gk6CUg9Y3TYPVVmGIojl5UK8D_RiLKGKDsk,2564
169
+ aethergraph/services/tracing/noop.py,sha256=iM_3aVPVj-AK-rRzDIV49PVoq0SF1nkJA0f2SDbMYqE,478
170
+ aethergraph/services/waits/wait_registry.py,sha256=MQJp7AxV7rJE7cEcnleOgK9-4wgMcPPJJkberkICxcQ,3492
171
+ aethergraph/services/wakeup/memory_queue.py,sha256=b2MVBXnpages8kKEy5t3lXhs1GBHDQKv7GLK209PMJM,1956
172
+ aethergraph/services/wakeup/scanner_producer.py,sha256=lkaok9cqeyaxrRjf1YSZd4woz1pOoKeqnL7MZlh1L_s,2047
173
+ aethergraph/services/wakeup/worker.py,sha256=3xbZEaEKPWfaWLWR4KQ6lb_DD34ktK9hDP3VM3UEsdk,1110
174
+ aethergraph/tools/__init__.py,sha256=X6UEYgaxAoB532m40LPo0uMvMierk3gmVvsjM7MA4ow,458
175
+ aethergraph/utils/optdeps.py,sha256=wlIq0e_WBTXBgYGqzYxaCcg_D47vDccqY3sql5zKbW4,285
176
+ aethergraph-0.1.0a1.dist-info/licenses/LICENSE,sha256=JcWMZSXRGzXgAJMkTpqHvmyXtsYoAwRcB0rnNS0cRCE,10034
177
+ aethergraph-0.1.0a1.dist-info/licenses/NOTICE,sha256=10TYfrFmJdzpCWge_f-DYyDtYDzU2MtE5qtQr4Sm8kc,1338
178
+ aethergraph-0.1.0a1.dist-info/METADATA,sha256=ITSvhmv21zKTrLYSvYmta1D8OfAvkDNnQWtWsppuE7E,18759
179
+ aethergraph-0.1.0a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
180
+ aethergraph-0.1.0a1.dist-info/entry_points.txt,sha256=pil9_sSqwRH9PTc06Uk86D_XeQeE5b5o2n2U1Of7XrA,58
181
+ aethergraph-0.1.0a1.dist-info/top_level.txt,sha256=omXbbeG3KmSv0unFePBbnmxe6L0k9E5CSoANPs7FMkY,12
182
+ aethergraph-0.1.0a1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ aethergraph = aethergraph.cli.main:main
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,31 @@
1
+ AetherGraph
2
+ Copyright (c) 2025 AIperture LLC and Contributors
3
+
4
+ This product includes software developed by AIperture LLC (https://aiperture.io)
5
+ and by project contributors (https://github.com/AIperture/aethergraph).
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+
15
+ Attribution Notices
16
+ -------------------
17
+ If you redistribute this software in source or binary form, you must
18
+ include the contents of this NOTICE file within your distribution as
19
+ required by the Apache License 2.0 Section 4(d).
20
+
21
+ Trademarks
22
+ ----------
23
+ "AetherGraph" and the AetherGraph logos are trademarks of AIperture LLC.
24
+ The License does not grant permission to use the trademarks. Use of the
25
+ trademarks is subject to AIperture LLC’s trademark policy.
26
+
27
+ Third-Party Components
28
+ ----------------------
29
+ This project may include or depend on third-party components under their
30
+ own licenses. See THIRD_PARTY_NOTICES.md (if present) or individual files
31
+ for license details.
@@ -0,0 +1 @@
1
+ aethergraph