aethergraph 0.1.0a2__tar.gz → 0.1.0a3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (362) hide show
  1. {aethergraph-0.1.0a2/src/aethergraph.egg-info → aethergraph-0.1.0a3}/PKG-INFO +1 -1
  2. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/pyproject.toml +1 -1
  3. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/__main__.py +3 -0
  4. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/app_factory.py +7 -1
  5. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3/src/aethergraph.egg-info}/PKG-INFO +1 -1
  6. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/LICENSE +0 -0
  7. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/MANIFEST.in +0 -0
  8. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/NOTICE +0 -0
  9. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/README.md +0 -0
  10. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/setup.cfg +0 -0
  11. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/__init__.py +0 -0
  12. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/__init__.py +0 -0
  13. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/agents.py +0 -0
  14. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/apps.py +0 -0
  15. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/artifacts.py +0 -0
  16. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/channels.py +0 -0
  17. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/deps.py +0 -0
  18. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/graphs.py +0 -0
  19. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/identity.py +0 -0
  20. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/memory.py +0 -0
  21. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/misc.py +0 -0
  22. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/pagination.py +0 -0
  23. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/runs.py +0 -0
  24. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/schemas.py +0 -0
  25. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/session.py +0 -0
  26. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/stats.py +0 -0
  27. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/api/v1/viz.py +0 -0
  28. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/__init__.py +0 -0
  29. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/config.py +0 -0
  30. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/context.py +0 -0
  31. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/llm.py +0 -0
  32. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/loader.py +0 -0
  33. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/runtime.py +0 -0
  34. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/config/storage.py +0 -0
  35. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/__init__.py +0 -0
  36. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/errors/errors.py +0 -0
  37. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/__init__.py +0 -0
  38. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/artifacts.py +0 -0
  39. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/channel.py +0 -0
  40. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/continuations.py +0 -0
  41. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/eventbus.py +0 -0
  42. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/kv.py +0 -0
  43. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/llm.py +0 -0
  44. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/mcp.py +0 -0
  45. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/memory.py +0 -0
  46. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/metering.py +0 -0
  47. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/resume.py +0 -0
  48. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/runs.py +0 -0
  49. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/sessions.py +0 -0
  50. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/state_stores.py +0 -0
  51. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/viz.py +0 -0
  52. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/services/wakeup.py +0 -0
  53. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/artifact_index.py +0 -0
  54. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/artifact_store.py +0 -0
  55. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/async_kv.py +0 -0
  56. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/blob_store.py +0 -0
  57. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/doc_store.py +0 -0
  58. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/event_log.py +0 -0
  59. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/contracts/storage/vector_index.py +0 -0
  60. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/__init__.py +0 -0
  61. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/base_scheduler.py +0 -0
  62. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/forward_scheduler.py +0 -0
  63. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/global_scheduler.py +0 -0
  64. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/retry_policy.py +0 -0
  65. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/step_forward.py +0 -0
  66. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/step_result.py +0 -0
  67. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/execution/wait_types.py +0 -0
  68. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/__init__.py +0 -0
  69. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_builder.py +0 -0
  70. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_fn.py +0 -0
  71. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_io.py +0 -0
  72. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_refs.py +0 -0
  73. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_spec.py +0 -0
  74. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graph_state.py +0 -0
  75. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/graphify.py +0 -0
  76. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/interpreter.py +0 -0
  77. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/node_handle.py +0 -0
  78. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/node_spec.py +0 -0
  79. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/node_state.py +0 -0
  80. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/task_graph.py +0 -0
  81. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/task_node.py +0 -0
  82. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/utils.py +0 -0
  83. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/graph/visualize.py +0 -0
  84. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/__init__.py +0 -0
  85. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/ad_hoc_context.py +0 -0
  86. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/base_service.py +0 -0
  87. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/bind_adapter.py +0 -0
  88. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/bound_memory.py +0 -0
  89. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/execution_context.py +0 -0
  90. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/graph_runner.py +0 -0
  91. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/lifecycle.py +0 -0
  92. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/node_context.py +0 -0
  93. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/node_services.py +0 -0
  94. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/recovery.py +0 -0
  95. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/run_manager.py +0 -0
  96. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/run_manager_local.py +0 -0
  97. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/run_registration.py +0 -0
  98. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/run_types.py +0 -0
  99. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/runtime_env.py +0 -0
  100. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/runtime_metering.py +0 -0
  101. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/runtime_registry.py +0 -0
  102. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/runtime_services.py +0 -0
  103. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/runtime/wakeup_watcher.py +0 -0
  104. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/tools/__init__.py +0 -0
  105. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/tools/builtins/channel_tools.py +0 -0
  106. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/tools/builtins/toolset.py +0 -0
  107. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/tools/toolkit.py +0 -0
  108. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/core/tools/waitable.py +0 -0
  109. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/agents/default_chat_agent copy.py +0 -0
  110. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/agents/default_chat_agent.py +0 -0
  111. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/agents/shared.py +0 -0
  112. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/__init__.py +0 -0
  113. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/__init__.py +0 -0
  114. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/console.py +0 -0
  115. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/file.py +0 -0
  116. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/slack.py +0 -0
  117. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/telegram.py +0 -0
  118. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/webhook.py +0 -0
  119. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/adapters/webui.py +0 -0
  120. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/routes/__init__.py +0 -0
  121. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/routes/console_routes.py +0 -0
  122. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/routes/slack_routes.py +0 -0
  123. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/routes/telegram_routes.py +0 -0
  124. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/routes/webui_routes.py +0 -0
  125. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/utils/__init__.py +0 -0
  126. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/utils/slack_utils.py +0 -0
  127. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/utils/telegram_utils.py +0 -0
  128. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/websockets/slack_ws.py +0 -0
  129. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/websockets/telegram_polling.py +0 -0
  130. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/channel/websockets/weibui_ws.py +0 -0
  131. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/mcp/fs_server.py +0 -0
  132. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/mcp/http_server.py +0 -0
  133. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/mcp/ws_server.py +0 -0
  134. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/net/http.py +0 -0
  135. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/plugins/utils/data_io.py +0 -0
  136. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/runner/__init__.py +0 -0
  137. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/runtime/__init__.py +0 -0
  138. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/__init__.py +0 -0
  139. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/clients/channel_client.py +0 -0
  140. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/http/channel_http_routes.py +0 -0
  141. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/http/channel_ws_routers.py +0 -0
  142. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/loading.py +0 -0
  143. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/server.py +0 -0
  144. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/server_state.py +0 -0
  145. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/start.py +0 -0
  146. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  147. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  148. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  149. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  150. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  151. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  152. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  153. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  154. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  155. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  156. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  157. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  158. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  159. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  160. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  161. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  162. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  163. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  164. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  165. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  166. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  167. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  168. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  169. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  170. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  171. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  172. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  173. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  174. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  175. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  176. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  177. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  178. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  179. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  180. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  181. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  182. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  183. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  184. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  185. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  186. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  187. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  188. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  189. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  190. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  191. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  192. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  193. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  194. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  195. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  196. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  197. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  198. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  199. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  200. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  201. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  202. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  203. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  204. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  205. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/index-BR5GtXcZ.css +0 -0
  206. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/assets/index-CQ0HZZ83.js +0 -0
  207. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/index.html +0 -0
  208. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/server/ui_static/logo.png +0 -0
  209. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/__init__.py +0 -0
  210. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/artifacts/__init__.py +0 -0
  211. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/artifacts/facade.py +0 -0
  212. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/artifacts/paths.py +0 -0
  213. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/artifacts/utils.py +0 -0
  214. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/auth/authn.py +0 -0
  215. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/auth/authz.py +0 -0
  216. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/__init__.py +0 -0
  217. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/channel_bus.py +0 -0
  218. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/factory.py +0 -0
  219. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/ingress.py +0 -0
  220. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/queue_adapter.py +0 -0
  221. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/session.py +0 -0
  222. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/channel/wait_helpers.py +0 -0
  223. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/clock/clock.py +0 -0
  224. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/container/default_container.py +0 -0
  225. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/continuations/continuation.py +0 -0
  226. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/continuations/factory.py +0 -0
  227. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/continuations/stores/fs_store.py +0 -0
  228. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/continuations/stores/inmem_store.py +0 -0
  229. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/eventbus/inmem.py +0 -0
  230. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/eventhub/event_hub.py +0 -0
  231. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/features/static.py +0 -0
  232. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/kv/__init__.py +0 -0
  233. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/kv/ephemeral.py +0 -0
  234. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/kv/factory.py +0 -0
  235. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/kv/layered.py +0 -0
  236. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/kv/sqlite_kv.py +0 -0
  237. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/__init__.py +0 -0
  238. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/factory.py +0 -0
  239. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/generic_client copy.py +0 -0
  240. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/generic_client.py +0 -0
  241. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/providers.py +0 -0
  242. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/service.py +0 -0
  243. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/types.py +0 -0
  244. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/llm/utils.py +0 -0
  245. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/logger/base.py +0 -0
  246. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/logger/compat.py +0 -0
  247. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/logger/formatters.py +0 -0
  248. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/logger/std.py +0 -0
  249. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/__init__.py +0 -0
  250. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/helpers.py +0 -0
  251. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/http_client.py +0 -0
  252. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/mcp_tools.py +0 -0
  253. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/registry.py +0 -0
  254. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/service.py +0 -0
  255. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/stdio_client.py +0 -0
  256. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/mcp/ws_client.py +0 -0
  257. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/__init__.py +0 -0
  258. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/bound.py +0 -0
  259. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/distillers/llm_long_term.py +0 -0
  260. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/distillers/llm_meta_summary.py +0 -0
  261. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/distillers/long_term.py +0 -0
  262. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/__init__.py +0 -0
  263. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/chat.py +0 -0
  264. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/core.py +0 -0
  265. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/distillation.py +0 -0
  266. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/rag.py +0 -0
  267. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/results.py +0 -0
  268. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/retrieval.py +0 -0
  269. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/types.py +0 -0
  270. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade/utils.py +0 -0
  271. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/facade_dep.py +0 -0
  272. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/factory.py +0 -0
  273. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/io_helpers.py +0 -0
  274. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/resolver.py +0 -0
  275. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/memory/utils.py +0 -0
  276. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/metering/eventlog_metering.py +0 -0
  277. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/metering/noop.py +0 -0
  278. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/prompts/file_store.py +0 -0
  279. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/__init__.py +0 -0
  280. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/chunker.py +0 -0
  281. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/facade.py +0 -0
  282. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/index_factory.py +0 -0
  283. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/node_rag.py +0 -0
  284. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/parsers/md.py +0 -0
  285. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/parsers/pdf.py +0 -0
  286. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/parsers/txt.py +0 -0
  287. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/utils/hybrid.py +0 -0
  288. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rag/utils/make_fs_key.py +0 -0
  289. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/rate_limit/inmem_rate_limit.py +0 -0
  290. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/redactor/simple.py +0 -0
  291. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/registry/__init__.py +0 -0
  292. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/registry/agent_app_meta.py +0 -0
  293. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/registry/key_parsing.py +0 -0
  294. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/registry/registry_key.py +0 -0
  295. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/registry/unified_registry.py +0 -0
  296. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/resume/multi_scheduler_resume_bus.py +0 -0
  297. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/resume/router.py +0 -0
  298. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/schedulers/registry.py +0 -0
  299. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/scope/scope.py +0 -0
  300. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/scope/scope_factory.py +0 -0
  301. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/secrets/base.py +0 -0
  302. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/secrets/env.py +0 -0
  303. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/externalize.py +0 -0
  304. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/graph_observer.py +0 -0
  305. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/json_store.py +0 -0
  306. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/resume_policy.py +0 -0
  307. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/serialize.py +0 -0
  308. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/utils.py +0 -0
  309. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/state_stores/validate.py +0 -0
  310. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/tracing/noop.py +0 -0
  311. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/viz/__init__.py +0 -0
  312. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/viz/facade.py +0 -0
  313. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/viz/viz_service.py +0 -0
  314. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/waits/wait_registry.py +0 -0
  315. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/wakeup/memory_queue.py +0 -0
  316. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/wakeup/scanner_producer.py +0 -0
  317. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/services/wakeup/worker.py +0 -0
  318. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/artifact_index_jsonl.py +0 -0
  319. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/artifact_index_sqlite.py +0 -0
  320. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/cas_store.py +0 -0
  321. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/fs_cas.py +0 -0
  322. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/s3_cas.py +0 -0
  323. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/artifacts/utils.py +0 -0
  324. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/blob/fs_blob.py +0 -0
  325. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/blob/s3_blob.py +0 -0
  326. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/continuation_store/fs_cont.py +0 -0
  327. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/continuation_store/inmem_cont.py +0 -0
  328. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/continuation_store/kvdoc_cont.py +0 -0
  329. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/docstore/fs_doc.py +0 -0
  330. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/docstore/sqlite_doc.py +0 -0
  331. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/docstore/sqlite_doc_sync.py +0 -0
  332. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/eventlog/fs_event.py +0 -0
  333. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/eventlog/sqlite_event.py +0 -0
  334. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/eventlog/sqlite_event_sync.py +0 -0
  335. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/factory.py +0 -0
  336. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/fs_utils.py +0 -0
  337. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/graph_state_store/state_store.py +0 -0
  338. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/kv/inmem_kv.py +0 -0
  339. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/kv/layered_kv.py +0 -0
  340. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/kv/sqlite_kv.py +0 -0
  341. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/kv/sqlite_kv_sync.py +0 -0
  342. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/memory/event_persist.py +0 -0
  343. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/memory/fs_persist.py +0 -0
  344. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/memory/hotlog.py +0 -0
  345. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/memory/indices.py +0 -0
  346. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/metering/meter_event.py +0 -0
  347. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/runs/doc_store.py +0 -0
  348. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/runs/inmen_store.py +0 -0
  349. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/runs/sqlite_run_store.py +0 -0
  350. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/sessions/doc_store.py +0 -0
  351. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/sessions/inmem_store.py +0 -0
  352. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/sessions/sqlite_session_store.py +0 -0
  353. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/vector_index/chroma_index.py +0 -0
  354. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/vector_index/faiss_index.py +0 -0
  355. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/storage/vector_index/sqlite_index.py +0 -0
  356. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/tools/__init__.py +0 -0
  357. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph/utils/optdeps.py +0 -0
  358. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph.egg-info/SOURCES.txt +0 -0
  359. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph.egg-info/dependency_links.txt +0 -0
  360. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph.egg-info/entry_points.txt +0 -0
  361. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph.egg-info/requires.txt +0 -0
  362. {aethergraph-0.1.0a2 → aethergraph-0.1.0a3}/src/aethergraph.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aethergraph
3
- Version: 0.1.0a2
3
+ Version: 0.1.0a3
4
4
  Summary: Python-first agentic DAG execution framework
5
5
  Author-email: Zhaocheng Liu <zhaocheng@aiperture.io>
6
6
  License: Apache License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aethergraph"
7
- version = "0.1.0a2"
7
+ version = "0.1.0a3"
8
8
  description = "Python-first agentic DAG execution framework"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -191,6 +191,9 @@ def main(argv: list[str] | None = None) -> int:
191
191
 
192
192
  # Export them to environment so the worker factory can read them
193
193
  os.environ["AETHERGRAPH_WORKSPACE"] = args.workspace
194
+ os.environ.setdefault(
195
+ "AETHERGRAPH_ROOT", args.workspace
196
+ ) # AETHERGRAPH_ROOT is the workspace root in env
194
197
  os.environ["AETHERGRAPH_PROJECT_ROOT"] = str(project_root)
195
198
  os.environ["AETHERGRAPH_LOAD_MODULES"] = ",".join(modules)
196
199
  os.environ["AETHERGRAPH_LOAD_PATHS"] = os.pathsep.join(paths)
@@ -24,6 +24,8 @@ from aethergraph.api.v1.viz import router as vis_router
24
24
 
25
25
  # include apis
26
26
  from aethergraph.config.config import AppSettings
27
+ from aethergraph.config.context import set_current_settings
28
+ from aethergraph.config.loader import load_settings
27
29
  from aethergraph.core.runtime.runtime_services import install_services
28
30
 
29
31
  # import built-in agents and plugins to register them
@@ -227,6 +229,10 @@ def create_app_from_env() -> FastAPI:
227
229
  workspace = os.environ.get("AETHERGRAPH_WORKSPACE", "./aethergraph_data")
228
230
  log_level = os.environ.get("AETHERGRAPH_LOG_LEVEL", "warning")
229
231
 
232
+ # 0) Load settings from env like `start_server` and CLI would (__main__.py)
233
+ cfg = load_settings()
234
+ set_current_settings(cfg)
235
+
230
236
  # 1) Load user graphs in *this* process
231
237
  _load_user_graphs_from_env()
232
238
 
@@ -234,7 +240,7 @@ def create_app_from_env() -> FastAPI:
234
240
  # If you have a config system, wire it here
235
241
  app = create_app(
236
242
  workspace=workspace,
237
- cfg=None, # or AppSettings.from_env(), etc.
243
+ cfg=cfg,
238
244
  log_level=log_level,
239
245
  )
240
246
  return app
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aethergraph
3
- Version: 0.1.0a2
3
+ Version: 0.1.0a3
4
4
  Summary: Python-first agentic DAG execution framework
5
5
  Author-email: Zhaocheng Liu <zhaocheng@aiperture.io>
6
6
  License: Apache License
File without changes
File without changes
File without changes
File without changes
File without changes