tsugite-daemon 0.17.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. tsugite_daemon/__init__.py +6 -0
  2. tsugite_daemon/adapters/__init__.py +5 -0
  3. tsugite_daemon/adapters/base.py +1234 -0
  4. tsugite_daemon/adapters/http.py +3056 -0
  5. tsugite_daemon/adapters/scheduler_adapter.py +496 -0
  6. tsugite_daemon/auth.py +169 -0
  7. tsugite_daemon/commands.py +435 -0
  8. tsugite_daemon/compaction_scheduler.py +182 -0
  9. tsugite_daemon/config.py +274 -0
  10. tsugite_daemon/gateway.py +606 -0
  11. tsugite_daemon/job_store.py +246 -0
  12. tsugite_daemon/jobs_orchestrator.py +1482 -0
  13. tsugite_daemon/memory.py +543 -0
  14. tsugite_daemon/push.py +102 -0
  15. tsugite_daemon/scheduler.py +622 -0
  16. tsugite_daemon/session_runner.py +360 -0
  17. tsugite_daemon/session_store.py +1449 -0
  18. tsugite_daemon/web/css/console.css +1704 -0
  19. tsugite_daemon/web/css/job-flows.css +91 -0
  20. tsugite_daemon/web/css/jobs-tab.css +158 -0
  21. tsugite_daemon/web/css/jobs.css +203 -0
  22. tsugite_daemon/web/css/responsive.css +145 -0
  23. tsugite_daemon/web/css/styles.css +177 -0
  24. tsugite_daemon/web/css/terminal.css +335 -0
  25. tsugite_daemon/web/css/theme.css +71 -0
  26. tsugite_daemon/web/css/tsu-modal.css +298 -0
  27. tsugite_daemon/web/icons/icon-192.png +0 -0
  28. tsugite_daemon/web/icons/icon-512-maskable.png +0 -0
  29. tsugite_daemon/web/icons/icon-512.png +0 -0
  30. tsugite_daemon/web/icons/screenshot-narrow.png +0 -0
  31. tsugite_daemon/web/icons/screenshot-wide.png +0 -0
  32. tsugite_daemon/web/index.html +2659 -0
  33. tsugite_daemon/web/js/api.js +105 -0
  34. tsugite_daemon/web/js/app.js +326 -0
  35. tsugite_daemon/web/js/utils/tsu-modal.js +66 -0
  36. tsugite_daemon/web/js/utils/xterm-loader.js +183 -0
  37. tsugite_daemon/web/js/utils.js +148 -0
  38. tsugite_daemon/web/js/vendor/marked.LICENSE.md +44 -0
  39. tsugite_daemon/web/js/vendor/marked.esm.min.js +9 -0
  40. tsugite_daemon/web/js/views/conversation/attachments.js +95 -0
  41. tsugite_daemon/web/js/views/conversation/event_types.js +71 -0
  42. tsugite_daemon/web/js/views/conversation/history.js +558 -0
  43. tsugite_daemon/web/js/views/conversation/input.js +243 -0
  44. tsugite_daemon/web/js/views/conversation/sessions.js +594 -0
  45. tsugite_daemon/web/js/views/conversation/streaming.js +357 -0
  46. tsugite_daemon/web/js/views/conversations.js +1106 -0
  47. tsugite_daemon/web/js/views/file-editor.js +86 -0
  48. tsugite_daemon/web/js/views/jobs.js +372 -0
  49. tsugite_daemon/web/js/views/schedules.js +205 -0
  50. tsugite_daemon/web/js/views/terminals.js +740 -0
  51. tsugite_daemon/web/js/views/usage.js +67 -0
  52. tsugite_daemon/web/js/views/webhooks.js +71 -0
  53. tsugite_daemon/web/js/views/workspace.js +136 -0
  54. tsugite_daemon/web/manifest.json +19 -0
  55. tsugite_daemon/web/sw.js +31 -0
  56. tsugite_daemon/webhook_store.py +74 -0
  57. tsugite_daemon-0.17.0.dist-info/METADATA +14 -0
  58. tsugite_daemon-0.17.0.dist-info/RECORD +59 -0
  59. tsugite_daemon-0.17.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,6 @@
1
+ """Tsugite daemon - orchestrator for persistent bots."""
2
+
3
+ from tsugite_daemon.config import DaemonConfig, load_daemon_config
4
+ from tsugite_daemon.gateway import Gateway
5
+
6
+ __all__ = ["DaemonConfig", "load_daemon_config", "Gateway"]
@@ -0,0 +1,5 @@
1
+ """Platform adapters for daemon."""
2
+
3
+ from tsugite_daemon.adapters.base import BaseAdapter
4
+
5
+ __all__ = ["BaseAdapter"]