mindroot 0.1.0__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.
- mindroot-0.1.0/LICENSE +21 -0
- mindroot-0.1.0/MANIFEST.in +24 -0
- mindroot-0.1.0/PKG-INFO +95 -0
- mindroot-0.1.0/README.md +59 -0
- mindroot-0.1.0/pyproject.toml +60 -0
- mindroot-0.1.0/setup.cfg +4 -0
- mindroot-0.1.0/src/mindroot/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/agent_importer.py +173 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/agent_router.py +163 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/persona_handler.py +62 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/persona_router.py +151 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/plugin_manager.py +215 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/plugin_router.py +36 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/router.py +36 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/server_router.py +148 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/settings_router.py +140 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/admin-custom.css +314 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/dark.css +874 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/default.css +816 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/reset.css +46 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/update.css +164 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/about.txt +6 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/android-chrome-192x192.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/android-chrome-512x512.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/apple-touch-icon.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon-16x16.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon-32x32.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon.ico +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/about.txt +6 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/android-chrome-192x192.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/android-chrome-512x512.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/apple-touch-icon.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon-16x16.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon-32x32.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon.ico +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/site.webmanifest +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/logo.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/site.webmanifest +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-editor.js +156 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-form.js +386 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-list.js +94 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/base.js +49 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/github-import.js +151 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/indexed-agents.js +211 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-core.min.js +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/LICENSE +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/README.md +70 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.js +243 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.js +180 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.js +53 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.js +100 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.js +88 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.js +41 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.js +86 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.js +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.js +19 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.js +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.js +77 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.js +30 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.js +13 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.js +124 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.js +413 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.js +105 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.js +31 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.js +61 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.js +123 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.js +9 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.js +22 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.js +1508 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.js +195 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.js +81 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.js +149 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/async-directive.js +245 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive-helpers.js +178 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive.js +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-append.js +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-replace.js +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/cache.js +91 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/choose.js +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/class-map.js +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/guard.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/if-defined.js +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/join.js +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/keyed.js +42 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/live.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/map.js +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/range.js +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/ref.js +128 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/repeat.js +416 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/style-map.js +108 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/template-content.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/until.js +127 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/when.js +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/is-server.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/lit-html.js +1485 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/polyfill-support.js +186 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/private-ssr-support.js +84 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/static.js +152 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/package.json +629 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html.js +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/model-preferences.js +113 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/persona-editor.js +166 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-advanced-install.js +160 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-base.js +225 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-index-browser.js +184 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-list.js +182 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-manager.js +135 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-toggle.js +163 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/server-control.js +211 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/toggle-switch.js +95 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/static/logo.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/admin/templates/admin.jinja2 +114 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/Assistant/agent.json +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/agent.py +375 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/command_parser.py +267 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/ensure_msg_type.py +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/equivalent_flags.default.json +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/escaping.md +75 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/init_models.py +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/models.default.json +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/preferred_models.default.json +12 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/providers.default.json +62 -0
- mindroot-0.1.0/src/mindroot/coreplugins/agent/system.j2 +158 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/__init__.py +4 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/commands.py +278 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/format_result_msgs.py +2 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/mod.py +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/models.py +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/router.py +95 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/services.py +277 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/assistant.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/admin-custom.css +178 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/budark.css +690 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/dark.css +961 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/dark.css.bak +746 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/default.css +961 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/reset.css +46 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/about.txt +6 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/android-chrome-192x192.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/android-chrome-512x512.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/apple-touch-icon.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon-16x16.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon-32x32.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon.ico +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/about.txt +6 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/android-chrome-192x192.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/android-chrome-512x512.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/apple-touch-icon.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon-16x16.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon-32x32.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon.ico +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/site.webmanifest +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/logo.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/site.webmanifest +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/action.js +151 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/auth.js +30 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/base.js +46 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/baseel.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chat.html +20 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chat.js +162 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chatform.js +52 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chatmessage.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/lit-core.min.js +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/load-styles.js +9 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/shared-styles.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/showaction.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/base.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chat.js +384 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chatform.js +211 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chatmessage.js +46 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/code-copy-button.js +203 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-core.min.js +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/LICENSE +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/README.md +70 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.js +243 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.js +180 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.js +53 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.js +100 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.js +88 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.js +41 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.js +86 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.js +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.js +19 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.js +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.js +77 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.js +30 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.js +13 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.js +124 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.js +413 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.js +105 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.js +31 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.js +61 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.js +123 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.js +9 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.js +22 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.js +1508 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.js +195 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.js +81 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.js +149 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/async-directive.js +245 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive-helpers.js +178 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive.js +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-append.js +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-replace.js +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/cache.js +91 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/choose.js +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/class-map.js +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/guard.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/if-defined.js +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/join.js +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/keyed.js +42 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/live.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/map.js +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/range.js +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/ref.js +128 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/repeat.js +416 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/style-map.js +108 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/template-content.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/until.js +127 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/when.js +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/is-server.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/lit-html.js +1485 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/polyfill-support.js +186 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/private-ssr-support.js +84 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/static.js +152 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/package.json +629 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html.js +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/property-escape.js +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/throttle.js +22 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/unsafe-html.js.1 +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindgen.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindroot_logo.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindroot_logo2.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/neon.css +37 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/site.webmanifest +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/static/user.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/templates/chat.jinja2 +73 -0
- mindroot-0.1.0/src/mindroot/coreplugins/chat/utils.py +2 -0
- mindroot-0.1.0/src/mindroot/coreplugins/events/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/events/mod.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/events/router.py +94 -0
- mindroot-0.1.0/src/mindroot/coreplugins/events/router_backup.py +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/mod.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/router.py +18 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/dark.css +836 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/default.css +776 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/enhanced.css +90 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/home.css +191 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/reset.css +46 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/update.css +164 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/imgs/logo.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/base.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-core.min.js +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/LICENSE +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/README.md +70 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.js +243 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.js +180 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.js +53 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.js +100 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.js +88 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.js +41 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.js +86 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.js +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.js +19 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.js +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.js +77 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.js +30 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.js +13 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.js +124 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.js +413 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.js +105 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.js +31 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.js +61 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.js +123 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.js +9 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.js +22 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.js +1508 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.js +195 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.js +81 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.js +149 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/async-directive.js +245 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive-helpers.js +178 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive.js +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-append.js +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-replace.js +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/cache.js +91 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/choose.js +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/class-map.js +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/guard.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/if-defined.js +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/join.js +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/keyed.js +42 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/live.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/map.js +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/range.js +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/ref.js +128 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/repeat.js +416 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/style-map.js +108 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/template-content.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/until.js +127 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/when.js +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/is-server.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/lit-html.js +1485 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/polyfill-support.js +186 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/private-ssr-support.js +84 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/static.js +152 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/package.json +629 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html.js +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/toggle-switch.js +72 -0
- mindroot-0.1.0/src/mindroot/coreplugins/home/templates/home.jinja2 +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/.gitignore +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/__init__.py +4 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/default.json +70 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/__init__.py +16 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/agent_ops.py +88 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/index_ops.py +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/plugin_ops.py +138 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/publish.py +118 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/index.json +172 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/avatar.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/faceref.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/persona.json +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Dr_Alex_Morgan/persona.json +10 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/inject/admin.jinja2 +12 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/mod.py +16 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/models.py +38 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/router.py +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/css/index-manager.css +271 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/agent-section.js +301 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/base.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/components/publish-button.js +142 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/components/upload-area.js +172 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-list.js +140 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-manager.js +251 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-metadata.js +94 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-core.min.js +29 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/LICENSE +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/README.md +70 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.d.ts +171 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.js +243 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.js +180 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.js +48 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.js +53 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.js +100 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.js +88 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.js +41 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.js +86 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.js +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.js +19 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.js +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.js +77 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.js +30 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.js +13 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.js +124 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.js +413 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.js +105 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.js +31 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.js +61 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.js +123 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.js +9 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.js +22 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.js +1508 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.js +195 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.js +81 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.js +149 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.d.ts +117 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.d.ts +39 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.d.ts +35 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.d.ts +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.d.ts +45 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.d.ts +60 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.d.ts +14 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.d.ts +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.d.ts +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.d.ts +23 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.d.ts +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.d.ts +66 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.d.ts +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.d.ts +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.d.ts +26 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.d.ts +44 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.d.ts +28 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.d.ts +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.d.ts +617 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/async-directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/async-directive.js +245 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/async-directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive-helpers.js +178 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive.js +50 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-append.js +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-replace.js +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/cache.js +91 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/choose.js +43 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/class-map.js +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/guard.js +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/if-defined.js +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/join.js +21 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/keyed.js +42 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/live.js +80 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/map.js +32 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/range.js +15 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/ref.js +128 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/repeat.js +416 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/style-map.js +108 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/template-content.js +34 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/until.js +127 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/when.js +11 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/is-server.js +24 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/lit-html.js +1485 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/polyfill-support.js +186 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/private-ssr-support.js +84 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/static.js +152 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-append.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-append.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-replace.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-replace.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/cache.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/cache.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/choose.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/choose.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/class-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/class-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/guard.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/guard.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/if-defined.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/if-defined.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/join.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/join.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/keyed.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/keyed.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/live.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/live.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/range.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/range.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/ref.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/ref.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/repeat.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/repeat.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/style-map.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/style-map.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/template-content.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/template-content.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/until.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/until.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/when.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/when.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/is-server.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/is-server.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/lit-html.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/lit-html.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/package.json +629 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.d.ts +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.js +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.d.ts +57 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.d.ts +89 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.d.ts.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.js +8 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.js.map +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/plugin-section.js +211 -0
- mindroot-0.1.0/src/mindroot/coreplugins/index/utils.py +56 -0
- mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/__init__.py +2 -0
- mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/middleware.py +104 -0
- mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/mod.py +25 -0
- mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/router.py +27 -0
- mindroot-0.1.0/src/mindroot/coreplugins/login/mod.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/login/router.py +19 -0
- mindroot-0.1.0/src/mindroot/coreplugins/login/templates/login.jinja2 +83 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/avatar.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/faceref.png +0 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/persona.json +7 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/README.md +25 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/init_persona.py +16 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/mod.py +84 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/plugin_info.json +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/persona/pyproject.toml +17 -0
- mindroot-0.1.0/src/mindroot/coreplugins/startup/__init__.py +2 -0
- mindroot-0.1.0/src/mindroot/coreplugins/startup/mod.py +17 -0
- mindroot-0.1.0/src/mindroot/lib/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/lib/chatcontext.py +103 -0
- mindroot-0.1.0/src/mindroot/lib/chatlog.py +102 -0
- mindroot-0.1.0/src/mindroot/lib/db/organize_models.py +112 -0
- mindroot-0.1.0/src/mindroot/lib/db/preferences.py +72 -0
- mindroot-0.1.0/src/mindroot/lib/json_escape.py +37 -0
- mindroot-0.1.0/src/mindroot/lib/json_str_block/__init__.py +1 -0
- mindroot-0.1.0/src/mindroot/lib/json_str_block/json_str_block.py +91 -0
- mindroot-0.1.0/src/mindroot/lib/logging/log_router.py +145 -0
- mindroot-0.1.0/src/mindroot/lib/logging/logfiles.py +86 -0
- mindroot-0.1.0/src/mindroot/lib/model_selector.py +36 -0
- mindroot-0.1.0/src/mindroot/lib/pipelines/pipe.py +15 -0
- mindroot-0.1.0/src/mindroot/lib/pipelines/pipelines.py +61 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/__init__.py +52 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/default_plugin_manifest.json +52 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/installation.py +176 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/loader.py +181 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/manifest.py +113 -0
- mindroot-0.1.0/src/mindroot/lib/plugins/paths.py +109 -0
- mindroot-0.1.0/src/mindroot/lib/plugins.py +60 -0
- mindroot-0.1.0/src/mindroot/lib/plugins_install.py +64 -0
- mindroot-0.1.0/src/mindroot/lib/providers/__init__.py +197 -0
- mindroot-0.1.0/src/mindroot/lib/providers/commands.py +21 -0
- mindroot-0.1.0/src/mindroot/lib/providers/hooks.py +15 -0
- mindroot-0.1.0/src/mindroot/lib/providers/services.py +20 -0
- mindroot-0.1.0/src/mindroot/lib/route_decorators.py +25 -0
- mindroot-0.1.0/src/mindroot/lib/templates.py +285 -0
- mindroot-0.1.0/src/mindroot/lib/utils/check_args.py +22 -0
- mindroot-0.1.0/src/mindroot/lib/utils/dataurl.py +18 -0
- mindroot-0.1.0/src/mindroot/lib/utils/merge_arrays.py +66 -0
- mindroot-0.1.0/src/mindroot/lib/utils/not_working_merge_arrays.py +64 -0
- mindroot-0.1.0/src/mindroot/lib/utils/parse_json_newlines_partial.py +25 -0
- mindroot-0.1.0/src/mindroot/protocols/services/stream_chat.py +6 -0
- mindroot-0.1.0/src/mindroot/registry/__init__.py +5 -0
- mindroot-0.1.0/src/mindroot/registry/component_manager.py +24 -0
- mindroot-0.1.0/src/mindroot/registry/data_access.py +138 -0
- mindroot-0.1.0/src/mindroot/server.py +79 -0
- mindroot-0.1.0/src/mindroot.egg-info/PKG-INFO +95 -0
- mindroot-0.1.0/src/mindroot.egg-info/SOURCES.txt +1689 -0
- mindroot-0.1.0/src/mindroot.egg-info/dependency_links.txt +1 -0
- mindroot-0.1.0/src/mindroot.egg-info/entry_points.txt +2 -0
- mindroot-0.1.0/src/mindroot.egg-info/requires.txt +19 -0
- mindroot-0.1.0/src/mindroot.egg-info/top_level.txt +1 -0
mindroot-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Jason Livesay
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
global-exclude *.py[cod]
|
|
2
|
+
prune src/ah/local
|
|
3
|
+
prune src/ah/data
|
|
4
|
+
prune src/ah/personas
|
|
5
|
+
prune src/ah/static
|
|
6
|
+
prune src/ah/imgs
|
|
7
|
+
prune src/ah/models
|
|
8
|
+
|
|
9
|
+
recursive-include src/mindroot/coreplugins/agent *.j2
|
|
10
|
+
recursive-include src/mindroot/coreplugins/chat/templates *
|
|
11
|
+
recursive-include src/mindroot/coreplugins/chat/static *
|
|
12
|
+
recursive-include src/mindroot/coreplugins/admin/templates *
|
|
13
|
+
recursive-include src/mindroot/coreplugins/admin/static *
|
|
14
|
+
recursive-include src/mindroot/coreplugins/index/static *
|
|
15
|
+
recursive-include src/mindroot/coreplugins/index/templates *
|
|
16
|
+
recursive-include srx/mindroot/coreplugins/index *.json
|
|
17
|
+
recursive-include src/mindroot/coreplugins/home/static *
|
|
18
|
+
recursive-include src/mindroot/coreplugins/home/templates *
|
|
19
|
+
recursive-include src/mindroot/coreplugins/index *
|
|
20
|
+
recursive-include src/mindroot/coreplugins/agent *
|
|
21
|
+
recursive-include src/mindroot/coreplugins/persona *
|
|
22
|
+
recursive-include src/mindroot/coreplugins/login *
|
|
23
|
+
recursive-include src/mindroot/lib/plugins *.json
|
|
24
|
+
|
mindroot-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mindroot
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: An agent framework using LLMs
|
|
5
|
+
Author-email: Jason Livesay <runvnc@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/runvncmindroot
|
|
7
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Requires-Python: >=3.7
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: fastapi
|
|
18
|
+
Requires-Dist: uvicorn
|
|
19
|
+
Requires-Dist: jinja2
|
|
20
|
+
Requires-Dist: nanoid
|
|
21
|
+
Requires-Dist: termcolor
|
|
22
|
+
Requires-Dist: colored
|
|
23
|
+
Requires-Dist: loguru
|
|
24
|
+
Requires-Dist: python-multipart
|
|
25
|
+
Requires-Dist: pytz
|
|
26
|
+
Requires-Dist: PyJWT
|
|
27
|
+
Requires-Dist: pluggy
|
|
28
|
+
Requires-Dist: sse_starlette
|
|
29
|
+
Requires-Dist: partial-json-parser
|
|
30
|
+
Requires-Dist: pydantic
|
|
31
|
+
Requires-Dist: setuptools
|
|
32
|
+
Requires-Dist: requests
|
|
33
|
+
Requires-Dist: aiohttp
|
|
34
|
+
Requires-Dist: Pillow
|
|
35
|
+
Requires-Dist: psutil
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
Mindroot
|
|
39
|
+
|
|
40
|
+
[](https://pypi.org/project/mindroot/)
|
|
41
|
+
|
|
42
|
+
**Note: some of the following is a work in progress and not yet functional. A few of them aren't really started.**
|
|
43
|
+
|
|
44
|
+
Mindroot is a powerful plugin-based Python framework for creating, deploying, and sharing AI agents and related models. It offers a flexible architecture with indices and a public registry (coming soon) for easily sharing and finding plugins, agents, personas, services, knowledgebases, and apps.
|
|
45
|
+
|
|
46
|
+
Installation
|
|
47
|
+
------------
|
|
48
|
+
|
|
49
|
+
You can install Mindroot using pip:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
pip install mindroot
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
For development, you can install the package in editable mode:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
git clone https://github.com/mindroot/mindroot.git
|
|
59
|
+
cd mindroot
|
|
60
|
+
pip install -e .
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
Key Features:
|
|
65
|
+
|
|
66
|
+
- Public registry for sharing and finding plugins, agents, personas, models, and knowledgebases
|
|
67
|
+
- https://registry.agenthost.org (work in progress)
|
|
68
|
+
- Customizable and swappable for user-specific registries
|
|
69
|
+
- Extensible plugin architecture for adding services, commands, and building arbitrary web apps
|
|
70
|
+
- Customizable AI agents with persona definitions
|
|
71
|
+
- Intelligent service management based on agent requirements
|
|
72
|
+
- Flexible service providers for various AI capabilities
|
|
73
|
+
- Plugins can add/use hooks and pipelines such as for modifying prompts, running startup commands, or anything you want
|
|
74
|
+
- Easily customizable UI built on Jinja2 and Lit Web Components
|
|
75
|
+
- Support for both local and remote AI services
|
|
76
|
+
- RAG: easily share, find and use pre-generated embeddings and documents for topic knowledgebases
|
|
77
|
+
|
|
78
|
+
Core Concepts Overview
|
|
79
|
+
----------------------
|
|
80
|
+
|
|
81
|
+
mindroot revolves around several key concepts:
|
|
82
|
+
|
|
83
|
+
1. **Open Public Registry**: A flexible system for indexing and sharing plugins, agents, personas, and potentially models. It can be customized or replaced with user-specific registries.
|
|
84
|
+
|
|
85
|
+
2. **Plugins**: Extend the functionality of mindroot, providing new features, services, or integrations.
|
|
86
|
+
|
|
87
|
+
3. **Agents and Personas**: AI agents with defined capabilities and customizable personalities.
|
|
88
|
+
|
|
89
|
+
4. **Services and Providers**: Backend services that power agent capabilities, with support for swapping between local and remote implementations.
|
|
90
|
+
|
|
91
|
+
5. **Intelligent Service Management**: The system automatically determines and installs required services based on agent definitions.
|
|
92
|
+
|
|
93
|
+
6. **UI Customization**: Easily modifiable user interface through theme overrides and injections.
|
|
94
|
+
|
|
95
|
+
7. **RAG and Knowledgebases**: The community can easily share and search for topic embeddings and document sets rather than everyone rebuilding them per topic.
|
mindroot-0.1.0/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
|
|
2
|
+
Mindroot
|
|
3
|
+
|
|
4
|
+
[](https://pypi.org/project/mindroot/)
|
|
5
|
+
|
|
6
|
+
**Note: some of the following is a work in progress and not yet functional. A few of them aren't really started.**
|
|
7
|
+
|
|
8
|
+
Mindroot is a powerful plugin-based Python framework for creating, deploying, and sharing AI agents and related models. It offers a flexible architecture with indices and a public registry (coming soon) for easily sharing and finding plugins, agents, personas, services, knowledgebases, and apps.
|
|
9
|
+
|
|
10
|
+
Installation
|
|
11
|
+
------------
|
|
12
|
+
|
|
13
|
+
You can install Mindroot using pip:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install mindroot
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
For development, you can install the package in editable mode:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
git clone https://github.com/mindroot/mindroot.git
|
|
23
|
+
cd mindroot
|
|
24
|
+
pip install -e .
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Key Features:
|
|
29
|
+
|
|
30
|
+
- Public registry for sharing and finding plugins, agents, personas, models, and knowledgebases
|
|
31
|
+
- https://registry.agenthost.org (work in progress)
|
|
32
|
+
- Customizable and swappable for user-specific registries
|
|
33
|
+
- Extensible plugin architecture for adding services, commands, and building arbitrary web apps
|
|
34
|
+
- Customizable AI agents with persona definitions
|
|
35
|
+
- Intelligent service management based on agent requirements
|
|
36
|
+
- Flexible service providers for various AI capabilities
|
|
37
|
+
- Plugins can add/use hooks and pipelines such as for modifying prompts, running startup commands, or anything you want
|
|
38
|
+
- Easily customizable UI built on Jinja2 and Lit Web Components
|
|
39
|
+
- Support for both local and remote AI services
|
|
40
|
+
- RAG: easily share, find and use pre-generated embeddings and documents for topic knowledgebases
|
|
41
|
+
|
|
42
|
+
Core Concepts Overview
|
|
43
|
+
----------------------
|
|
44
|
+
|
|
45
|
+
mindroot revolves around several key concepts:
|
|
46
|
+
|
|
47
|
+
1. **Open Public Registry**: A flexible system for indexing and sharing plugins, agents, personas, and potentially models. It can be customized or replaced with user-specific registries.
|
|
48
|
+
|
|
49
|
+
2. **Plugins**: Extend the functionality of mindroot, providing new features, services, or integrations.
|
|
50
|
+
|
|
51
|
+
3. **Agents and Personas**: AI agents with defined capabilities and customizable personalities.
|
|
52
|
+
|
|
53
|
+
4. **Services and Providers**: Backend services that power agent capabilities, with support for swapping between local and remote implementations.
|
|
54
|
+
|
|
55
|
+
5. **Intelligent Service Management**: The system automatically determines and installs required services based on agent definitions.
|
|
56
|
+
|
|
57
|
+
6. **UI Customization**: Easily modifiable user interface through theme overrides and injections.
|
|
58
|
+
|
|
59
|
+
7. **RAG and Knowledgebases**: The community can easily share and search for topic embeddings and document sets rather than everyone rebuilding them per topic.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mindroot"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "An agent framework using LLMs"
|
|
9
|
+
authors = [{name = "Jason Livesay", email = "runvnc@gmail.com"}]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.7"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.7",
|
|
18
|
+
"Programming Language :: Python :: 3.8",
|
|
19
|
+
"Programming Language :: Python :: 3.9",
|
|
20
|
+
]
|
|
21
|
+
dependencies = [
|
|
22
|
+
"fastapi",
|
|
23
|
+
"uvicorn",
|
|
24
|
+
"jinja2",
|
|
25
|
+
"nanoid",
|
|
26
|
+
"termcolor",
|
|
27
|
+
"colored",
|
|
28
|
+
"loguru",
|
|
29
|
+
"python-multipart",
|
|
30
|
+
"pytz",
|
|
31
|
+
"PyJWT",
|
|
32
|
+
"pluggy",
|
|
33
|
+
"sse_starlette",
|
|
34
|
+
"partial-json-parser",
|
|
35
|
+
"pydantic",
|
|
36
|
+
"setuptools",
|
|
37
|
+
"requests",
|
|
38
|
+
"aiohttp", # now ad python image library
|
|
39
|
+
"Pillow",
|
|
40
|
+
"psutil"
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
[project.urls]
|
|
45
|
+
Homepage = "https://github.com/runvncmindroot"
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
[project.scripts]
|
|
49
|
+
mindroot = "mindroot.server:main"
|
|
50
|
+
|
|
51
|
+
[tool.setuptools]
|
|
52
|
+
package-dir = {"" = "src"}
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
[tool.setuptools.packages.find]
|
|
56
|
+
where = ["src"]
|
|
57
|
+
exclude = ["*local*", "*data*", "*personas*", "*static*", "*imgs*", "*models*"]
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
mindroot-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# This file is intentionally left empty to mark the directory as a Python package.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# This file is required to make Python treat the directory as a package.
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
import json
|
|
3
|
+
import shutil
|
|
4
|
+
import logging
|
|
5
|
+
from typing import Dict, List
|
|
6
|
+
import os
|
|
7
|
+
import tempfile
|
|
8
|
+
import requests
|
|
9
|
+
import zipfile
|
|
10
|
+
|
|
11
|
+
# Configure logging
|
|
12
|
+
logging.basicConfig(level=logging.INFO)
|
|
13
|
+
logger = logging.getLogger(__name__)
|
|
14
|
+
|
|
15
|
+
# These should be moved to a config file or environment variables
|
|
16
|
+
AGENT_BASE_DIR = Path('data/agents')
|
|
17
|
+
PERSONA_BASE_DIR = Path('personas')
|
|
18
|
+
|
|
19
|
+
CONFIRM_OVERWRITE_AGENT = os.environ.get('CONFIRM_OVERWRITE_AGENT', 'false')
|
|
20
|
+
if CONFIRM_OVERWRITE_AGENT.lower() in ['true', '1']:
|
|
21
|
+
CONFIRM_OVERWRITE_AGENT = True
|
|
22
|
+
else:
|
|
23
|
+
CONFIRM_OVERWRITE_AGENT = False
|
|
24
|
+
|
|
25
|
+
def download_github_files(repo_path: str, tag: str = None) -> tuple[str, str]:
|
|
26
|
+
"""Download GitHub repo files to temp directory"""
|
|
27
|
+
# Format the download URL
|
|
28
|
+
if tag:
|
|
29
|
+
download_url = f"https://github.com/{repo_path}/archive/refs/tags/{tag}.zip"
|
|
30
|
+
else:
|
|
31
|
+
download_url = f"https://github.com/{repo_path}/archive/refs/heads/main.zip"
|
|
32
|
+
|
|
33
|
+
# Create temp directory
|
|
34
|
+
temp_dir = tempfile.mkdtemp()
|
|
35
|
+
zip_path = os.path.join(temp_dir, 'repo.zip')
|
|
36
|
+
|
|
37
|
+
try:
|
|
38
|
+
# Download the zip file
|
|
39
|
+
response = requests.get(download_url)
|
|
40
|
+
response.raise_for_status()
|
|
41
|
+
|
|
42
|
+
with open(zip_path, 'wb') as f:
|
|
43
|
+
f.write(response.content)
|
|
44
|
+
|
|
45
|
+
# Extract zip
|
|
46
|
+
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
|
|
47
|
+
zip_ref.extractall(temp_dir)
|
|
48
|
+
|
|
49
|
+
return temp_dir, os.path.dirname(zip_path)
|
|
50
|
+
|
|
51
|
+
except Exception as e:
|
|
52
|
+
shutil.rmtree(temp_dir)
|
|
53
|
+
raise e
|
|
54
|
+
|
|
55
|
+
def scan_for_agents(directory: Path) -> Dict[str, Dict]:
|
|
56
|
+
discovered_agents = {}
|
|
57
|
+
for agent_file in directory.rglob('agent.json'):
|
|
58
|
+
try:
|
|
59
|
+
with agent_file.open('r') as f:
|
|
60
|
+
agent_data = json.load(f)
|
|
61
|
+
agent_name = agent_data.get('name')
|
|
62
|
+
if agent_name:
|
|
63
|
+
discovered_agents[agent_name] = {
|
|
64
|
+
'path': agent_file.parent,
|
|
65
|
+
'data': agent_data
|
|
66
|
+
}
|
|
67
|
+
except json.JSONDecodeError:
|
|
68
|
+
logger.error(f"Failed to parse agent file: {agent_file}")
|
|
69
|
+
except PermissionError:
|
|
70
|
+
logger.error(f"Permission denied when reading: {agent_file}")
|
|
71
|
+
return discovered_agents
|
|
72
|
+
|
|
73
|
+
def validate_agent_structure(agent_data: Dict) -> bool:
|
|
74
|
+
required_fields = ['name', 'persona', 'commands']
|
|
75
|
+
return all(field in agent_data for field in required_fields)
|
|
76
|
+
|
|
77
|
+
def import_agent(agent_name: str, agent_info: Dict, scope: str) -> None:
|
|
78
|
+
target_dir = Path(AGENT_BASE_DIR) / scope / agent_name
|
|
79
|
+
if CONFIRM_OVERWRITE_AGENT and target_dir.exists():
|
|
80
|
+
logger.warning(f"Agent {agent_name} already exists in {scope} scope, skipping")
|
|
81
|
+
return
|
|
82
|
+
|
|
83
|
+
if not validate_agent_structure(agent_info['data']):
|
|
84
|
+
logger.error(f"Agent {agent_name} has invalid structure, skipping")
|
|
85
|
+
return
|
|
86
|
+
|
|
87
|
+
try:
|
|
88
|
+
shutil.copytree(agent_info['path'], target_dir, dirs_exist_ok=True)
|
|
89
|
+
logger.info(f"Imported agent {agent_name} to {target_dir}")
|
|
90
|
+
|
|
91
|
+
persona_name = agent_info['data'].get('persona')
|
|
92
|
+
if persona_name:
|
|
93
|
+
persona_dir = os.path.join(agent_info['path'].parent.parent, "personas")
|
|
94
|
+
import_persona(persona_name, persona_dir, scope)
|
|
95
|
+
except PermissionError:
|
|
96
|
+
logger.error(f"Permission denied when copying agent {agent_name}")
|
|
97
|
+
except shutil.Error as e:
|
|
98
|
+
logger.error(f"Error copying agent {agent_name}: {e}")
|
|
99
|
+
|
|
100
|
+
def import_persona(persona_name: str, source_dir: Path, scope: str) -> None:
|
|
101
|
+
persona_source = Path(source_dir) / persona_name
|
|
102
|
+
if not persona_source.exists():
|
|
103
|
+
logger.warning(f"Referenced persona {persona_name} not found in {source_dir}")
|
|
104
|
+
return
|
|
105
|
+
|
|
106
|
+
persona_target = PERSONA_BASE_DIR / scope / persona_name
|
|
107
|
+
if CONFIRM_OVERWRITE_AGENT and persona_target.exists():
|
|
108
|
+
logger.warning(f"Persona {persona_name} already exists, skipping import")
|
|
109
|
+
return
|
|
110
|
+
|
|
111
|
+
try:
|
|
112
|
+
shutil.copytree(persona_source, persona_target, dirs_exist_ok=True)
|
|
113
|
+
logger.info(f"Imported persona {persona_name} to {persona_target}")
|
|
114
|
+
except PermissionError:
|
|
115
|
+
logger.error(f"Permission denied when copying persona {persona_name}")
|
|
116
|
+
except shutil.Error as e:
|
|
117
|
+
logger.error(f"Error copying persona {persona_name}: {e}")
|
|
118
|
+
|
|
119
|
+
def scan_and_import_agents(directory: Path, scope: str) -> Dict[str, List[str]]:
|
|
120
|
+
if not directory.is_dir():
|
|
121
|
+
raise ValueError(f"Invalid directory path: {directory}")
|
|
122
|
+
|
|
123
|
+
if scope not in ['local', 'shared']:
|
|
124
|
+
raise ValueError(f"Invalid scope: {scope}")
|
|
125
|
+
|
|
126
|
+
discovered_agents = scan_for_agents(directory)
|
|
127
|
+
|
|
128
|
+
imported_agents = []
|
|
129
|
+
for agent_name, agent_info in discovered_agents.items():
|
|
130
|
+
try:
|
|
131
|
+
import_agent(agent_name, agent_info, scope)
|
|
132
|
+
imported_agents.append(agent_name)
|
|
133
|
+
except Exception as e:
|
|
134
|
+
logger.error(f"Failed to import agent {agent_name}: {e}")
|
|
135
|
+
|
|
136
|
+
return {
|
|
137
|
+
'imported_agents': imported_agents,
|
|
138
|
+
'total_imported': len(imported_agents),
|
|
139
|
+
'total_discovered': len(discovered_agents)
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
def import_github_agent(repo_path: str, scope: str, tag: str = None) -> Dict[str, any]:
|
|
143
|
+
"""Import an agent from a GitHub repository"""
|
|
144
|
+
try:
|
|
145
|
+
# Download and extract GitHub repository
|
|
146
|
+
temp_dir, extract_path = download_github_files(repo_path, tag)
|
|
147
|
+
|
|
148
|
+
try:
|
|
149
|
+
# Scan the downloaded directory for agents
|
|
150
|
+
discovered = scan_for_agents(Path(temp_dir))
|
|
151
|
+
if not discovered:
|
|
152
|
+
raise ValueError("No valid agents found in repository")
|
|
153
|
+
|
|
154
|
+
# Import each discovered agent
|
|
155
|
+
result = scan_and_import_agents(Path(temp_dir), scope)
|
|
156
|
+
|
|
157
|
+
return {
|
|
158
|
+
'success': True,
|
|
159
|
+
'message': f"Successfully imported {result['total_imported']} agents from GitHub",
|
|
160
|
+
'imported_agents': result['imported_agents']
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
finally:
|
|
164
|
+
# Clean up temp directory
|
|
165
|
+
shutil.rmtree(temp_dir)
|
|
166
|
+
|
|
167
|
+
except Exception as e:
|
|
168
|
+
logger.error(f"Failed to import agent from GitHub: {str(e)}")
|
|
169
|
+
return {
|
|
170
|
+
'success': False,
|
|
171
|
+
'message': f"Failed to import agent: {str(e)}",
|
|
172
|
+
'imported_agents': []
|
|
173
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
from fastapi import APIRouter, HTTPException, UploadFile, File, Form
|
|
2
|
+
from pydantic import BaseModel
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
import json
|
|
5
|
+
from .agent_importer import scan_and_import_agents, import_github_agent
|
|
6
|
+
from .persona_handler import handle_persona_import
|
|
7
|
+
|
|
8
|
+
router = APIRouter()
|
|
9
|
+
|
|
10
|
+
BASE_DIR = Path('data/agents')
|
|
11
|
+
local_dir = BASE_DIR / "local"
|
|
12
|
+
shared_dir = BASE_DIR / "shared"
|
|
13
|
+
local_dir.mkdir(parents=True, exist_ok=True)
|
|
14
|
+
shared_dir.mkdir(parents=True, exist_ok=True)
|
|
15
|
+
|
|
16
|
+
class GitHubImportRequest(BaseModel):
|
|
17
|
+
repo_path: str # Format: "owner/repo"
|
|
18
|
+
scope: str
|
|
19
|
+
tag: str = None
|
|
20
|
+
|
|
21
|
+
async def load_persona_data(persona_name: str) -> dict:
|
|
22
|
+
"""Load persona data from local or shared directory"""
|
|
23
|
+
persona_path = Path('personas/local') / persona_name / 'persona.json'
|
|
24
|
+
if not persona_path.exists():
|
|
25
|
+
persona_path = Path('personas/shared') / persona_name / 'persona.json'
|
|
26
|
+
|
|
27
|
+
if not persona_path.exists():
|
|
28
|
+
return {}
|
|
29
|
+
|
|
30
|
+
with open(persona_path, 'r') as f:
|
|
31
|
+
return json.load(f)
|
|
32
|
+
|
|
33
|
+
async def load_agent_data(agent_name: str) -> dict:
|
|
34
|
+
"""Load agent data from local or shared directory"""
|
|
35
|
+
agent_path = BASE_DIR / 'local' / agent_name / 'agent.json'
|
|
36
|
+
if not agent_path.exists():
|
|
37
|
+
agent_path = BASE_DIR / 'shared' / agent_name / 'agent.json'
|
|
38
|
+
if not agent_path.exists():
|
|
39
|
+
raise FileNotFoundError(f'Agent {agent_name} not found')
|
|
40
|
+
|
|
41
|
+
with open(agent_path, 'r') as f:
|
|
42
|
+
agent_data = json.load(f)
|
|
43
|
+
|
|
44
|
+
# Get the persona data if specified
|
|
45
|
+
if 'persona' in agent_data:
|
|
46
|
+
persona_data = await load_persona_data(agent_data['persona'])
|
|
47
|
+
agent_data['persona'] = persona_data
|
|
48
|
+
|
|
49
|
+
return agent_data
|
|
50
|
+
|
|
51
|
+
@router.get('/agents/full/{scope}/{name}')
|
|
52
|
+
async def get_full_agent_data(scope: str, name: str):
|
|
53
|
+
"""Get complete agent data including persona"""
|
|
54
|
+
if scope not in ['local', 'shared']:
|
|
55
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
56
|
+
|
|
57
|
+
try:
|
|
58
|
+
agent_data = await load_agent_data(name)
|
|
59
|
+
return agent_data
|
|
60
|
+
except FileNotFoundError as e:
|
|
61
|
+
raise HTTPException(status_code=404, detail=str(e))
|
|
62
|
+
except Exception as e:
|
|
63
|
+
raise HTTPException(status_code=500, detail=str(e))
|
|
64
|
+
|
|
65
|
+
@router.get('/agents/{scope}/{name}')
|
|
66
|
+
def read_agent(scope: str, name: str):
|
|
67
|
+
if scope not in ['local', 'shared']:
|
|
68
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
69
|
+
agent_path = BASE_DIR / scope / name / 'agent.json'
|
|
70
|
+
if not agent_path.exists():
|
|
71
|
+
raise HTTPException(status_code=404, detail='Agent not found')
|
|
72
|
+
with open(agent_path, 'r') as f:
|
|
73
|
+
agent = json.load(f)
|
|
74
|
+
return agent
|
|
75
|
+
|
|
76
|
+
@router.get('/agents/{scope}')
|
|
77
|
+
def list_agents(scope: str):
|
|
78
|
+
if scope not in ['local', 'shared']:
|
|
79
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
80
|
+
scope_dir = BASE_DIR / scope
|
|
81
|
+
agents = [p.name for p in scope_dir.iterdir() if p.is_dir()]
|
|
82
|
+
return [{'name': name} for name in agents]
|
|
83
|
+
|
|
84
|
+
@router.post('/agents/{scope}')
|
|
85
|
+
def create_agent(scope: str, agent: str = Form(...)):
|
|
86
|
+
try:
|
|
87
|
+
agent_data = json.loads(agent)
|
|
88
|
+
if scope not in ['local', 'shared']:
|
|
89
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
90
|
+
|
|
91
|
+
agent_name = agent_data.get('name')
|
|
92
|
+
if not agent_name:
|
|
93
|
+
raise HTTPException(status_code=400, detail='Agent name is required')
|
|
94
|
+
|
|
95
|
+
# Handle persona if present
|
|
96
|
+
if 'persona' in agent_data:
|
|
97
|
+
# This will either return the persona name or handle the import
|
|
98
|
+
# and return the name
|
|
99
|
+
persona_name = handle_persona_import(agent_data['persona'], scope)
|
|
100
|
+
agent_data['persona'] = persona_name
|
|
101
|
+
|
|
102
|
+
agent_path = BASE_DIR / scope / agent_name / 'agent.json'
|
|
103
|
+
if agent_path.exists():
|
|
104
|
+
raise HTTPException(status_code=400, detail='Agent already exists')
|
|
105
|
+
|
|
106
|
+
agent_path.parent.mkdir(parents=True, exist_ok=True)
|
|
107
|
+
with open(agent_path, 'w') as f:
|
|
108
|
+
json.dump(agent_data, f, indent=2)
|
|
109
|
+
|
|
110
|
+
return {'status': 'success'}
|
|
111
|
+
except Exception as e:
|
|
112
|
+
raise HTTPException(status_code=500, detail='Internal server error ' + str(e))
|
|
113
|
+
|
|
114
|
+
@router.put('/agents/{scope}/{name}')
|
|
115
|
+
def update_agent(scope: str, name: str, agent: str = Form(...)):
|
|
116
|
+
try:
|
|
117
|
+
agent = json.loads(agent)
|
|
118
|
+
if scope not in ['local', 'shared']:
|
|
119
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
120
|
+
agent_path = BASE_DIR / scope / name / 'agent.json'
|
|
121
|
+
if not agent_path.exists():
|
|
122
|
+
raise HTTPException(status_code=404, detail='Agent not found')
|
|
123
|
+
with open(agent_path, 'w') as f:
|
|
124
|
+
json.dump(agent, f, indent=2)
|
|
125
|
+
return {'status': 'success'}
|
|
126
|
+
except Exception as e:
|
|
127
|
+
raise HTTPException(status_code=500, detail='Internal server error ' + str(e))
|
|
128
|
+
|
|
129
|
+
class ScanDirectoryRequest(BaseModel):
|
|
130
|
+
directory: str
|
|
131
|
+
scope: str
|
|
132
|
+
|
|
133
|
+
@router.post('/scan-and-import-agents')
|
|
134
|
+
def scan_and_import_agents_endpoint(request: ScanDirectoryRequest):
|
|
135
|
+
try:
|
|
136
|
+
result = scan_and_import_agents(Path(request.directory), request.scope)
|
|
137
|
+
return {
|
|
138
|
+
'success': True,
|
|
139
|
+
'message': f"Imported {result['total_imported']} out of {result['total_discovered']} discovered agents",
|
|
140
|
+
'imported_agents': result['imported_agents']
|
|
141
|
+
}
|
|
142
|
+
except ValueError as e:
|
|
143
|
+
raise HTTPException(status_code=400, detail=str(e))
|
|
144
|
+
except Exception as e:
|
|
145
|
+
raise HTTPException(status_code=500, detail=f"Error during import: {str(e)}")
|
|
146
|
+
|
|
147
|
+
@router.post('/import-github-agent')
|
|
148
|
+
def import_github_agent_endpoint(request: GitHubImportRequest):
|
|
149
|
+
try:
|
|
150
|
+
if request.scope not in ['local', 'shared']:
|
|
151
|
+
raise HTTPException(status_code=400, detail='Invalid scope')
|
|
152
|
+
|
|
153
|
+
result = import_github_agent(request.repo_path, request.scope, request.tag)
|
|
154
|
+
|
|
155
|
+
if not result['success']:
|
|
156
|
+
raise HTTPException(status_code=400, detail=result['message'])
|
|
157
|
+
|
|
158
|
+
return result
|
|
159
|
+
|
|
160
|
+
except ValueError as e:
|
|
161
|
+
raise HTTPException(status_code=400, detail=str(e))
|
|
162
|
+
except Exception as e:
|
|
163
|
+
raise HTTPException(status_code=500, detail=f"Error during GitHub import: {str(e)}")
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
import json
|
|
3
|
+
import logging
|
|
4
|
+
from fastapi import HTTPException
|
|
5
|
+
|
|
6
|
+
# Configure logging
|
|
7
|
+
logging.basicConfig(level=logging.INFO)
|
|
8
|
+
logger = logging.getLogger(__name__)
|
|
9
|
+
|
|
10
|
+
def handle_persona_import(persona_data: dict, scope: str) -> str:
|
|
11
|
+
"""Handle importing a persona from embedded data in agent configuration.
|
|
12
|
+
Returns the persona name to be used in agent configuration.
|
|
13
|
+
|
|
14
|
+
Args:
|
|
15
|
+
persona_data: Dictionary containing persona data or string with persona name
|
|
16
|
+
scope: 'local' or 'shared'
|
|
17
|
+
|
|
18
|
+
Returns:
|
|
19
|
+
str: Name of the persona to reference in agent config
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
# If persona_data is already a string, just return it
|
|
23
|
+
if isinstance(persona_data, str):
|
|
24
|
+
return persona_data
|
|
25
|
+
|
|
26
|
+
# Validate persona data
|
|
27
|
+
if not isinstance(persona_data, dict):
|
|
28
|
+
raise HTTPException(
|
|
29
|
+
status_code=400,
|
|
30
|
+
detail='Persona data must be either a string name or a dictionary'
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
persona_name = persona_data.get('name')
|
|
34
|
+
if not persona_name:
|
|
35
|
+
raise HTTPException(
|
|
36
|
+
status_code=400,
|
|
37
|
+
detail='Persona name required in persona data'
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
# Create persona path
|
|
41
|
+
persona_path = Path('personas') / scope / persona_name / 'persona.json'
|
|
42
|
+
|
|
43
|
+
# Check if persona already exists
|
|
44
|
+
if persona_path.exists():
|
|
45
|
+
logger.warning(f"Persona '{persona_name}' already exists in {scope} scope - skipping import")
|
|
46
|
+
return persona_name
|
|
47
|
+
|
|
48
|
+
try:
|
|
49
|
+
# Create persona directory and save data
|
|
50
|
+
persona_path.parent.mkdir(parents=True, exist_ok=True)
|
|
51
|
+
with open(persona_path, 'w') as f:
|
|
52
|
+
json.dump(persona_data, f, indent=2)
|
|
53
|
+
|
|
54
|
+
logger.info(f"Successfully imported persona '{persona_name}' to {scope} scope")
|
|
55
|
+
return persona_name
|
|
56
|
+
|
|
57
|
+
except Exception as e:
|
|
58
|
+
logger.error(f"Failed to import persona '{persona_name}': {str(e)}")
|
|
59
|
+
raise HTTPException(
|
|
60
|
+
status_code=500,
|
|
61
|
+
detail=f"Failed to import persona: {str(e)}"
|
|
62
|
+
)
|