langbot-plugin 0.4.2b1__tar.gz → 0.4.2b3__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.
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/PKG-INFO +1 -1
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/pyproject.toml +1 -1
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/nsjail_backend.py +39 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_nsjail_backend.py +92 -2
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/.github/workflows/publish-pypi.yaml +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/.github/workflows/test.yml +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/.gitignore +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/.python-version +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/AGENTS.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/CLAUDE.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/LICENSE +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/README.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/data/.env.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/Message.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/PluginPages.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/communication/apis/lb2rt.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/communication/runtime_plugin.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/dependency-management.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/docs/langbot-plugin-social.png +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/abstract/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/abstract/platform/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/abstract/platform/adapter.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/abstract/platform/event_logger.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/base.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/command/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/command/command.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/common/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/common/event_listener.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/knowledge_engine/engine.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/manifest.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/page/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/parser/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/parser/parser.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/tool/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/components/tool/tool.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/plugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/command/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/command/context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/command/errors.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/pipeline/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/pipeline/query.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/platform/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/platform/entities.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/platform/events.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/platform/logger.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/platform/message.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/provider/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/provider/message.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/provider/prompt.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/provider/session.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/rag/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/rag/context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/rag/enums.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/rag/errors.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/rag/models.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/resource/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/builtin/resource/tool.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/events.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/base.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/event_context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/execute_context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/langbot_api.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/query_based_api.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/langbot-page-sdk.js +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/.env.example.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/.gitignore.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/.vscode/launch.json.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/README.md.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/assets/icon.svg.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/commands/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/event_listener/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/event_listener/default.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/event_listener/default.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/pages/{page_name}.html.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/pages/{page_name}.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/parser/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/tools/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/main.py.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/manifest.yaml.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/requirements.txt.example +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/actions.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/backend.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/client.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/e2b_backend.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/errors.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/models.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/runtime.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/security.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/server.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/box/skill_store.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/__main__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/buildplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/gencomponent.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/initplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/login.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/logout.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/publish.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/runplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/gen/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/gen/renderer.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/i18n.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/en_US.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/es_ES.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/ja_JP.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/th_TH.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/vi_VN.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/zh_Hans.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/zh_Hant.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/run/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/run/controller.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/run/handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/run/hotreload.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/utils/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/utils/cloudsv.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/utils/form.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/utils/page_components.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/actions/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/actions/enums.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/errors.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/req.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/resp.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/marketplace.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/LICENSE +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/README.md +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/app.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/marketplace.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/pkgmgr.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connection.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connections/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connections/stdio.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connections/ws.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controller.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/stdio/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/stdio/client.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/stdio/server.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/ws/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/ws/client.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controllers/ws/server.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/control.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/plugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/plugin/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/plugin/container.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/plugin/mgr.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/settings.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/discover/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/discover/engine.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/importutil.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/log.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/platform.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/version.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/definition/components/test_components.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/definition/test_manifest.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_command_context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_platform_logger.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_provider_message.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_rag_models.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/test_context.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/test_events.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/proxies/test_base.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/proxies/test_langbot_api.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/proxies/test_query_based_api.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_backend.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_backend_selection.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_client.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_e2b_backend.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_runtime.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_server.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/box/test_skill_store.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/run/test_controller.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/run/test_runtime_handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_buildplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_gencomponent.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_i18n_form.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_initplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_login.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_logout_publish.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_page_components.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_renderer.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/cli/test_runplugin.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/entities/io/test_protocol.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/helpers/__init__.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/helpers/protocol.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/helper/test_marketplace.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/helper/test_pkgmgr.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_control_handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_import_contracts.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_plugin_handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/test_connections.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/test_controllers.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/test_handler.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/plugin/test_container.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/plugin/test_manager.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/test_app.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/test_log.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/test_message.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/utils/test_discovery.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/utils/test_importutil.py +0 -0
- {langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/utils/test_platform.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langbot-plugin
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2b3
|
|
4
4
|
Summary: This package contains the SDK, CLI for building plugins for LangBot, plus the runtime for hosting LangBot plugins
|
|
5
5
|
Project-URL: Homepage, https://langbot.app
|
|
6
6
|
Project-URL: Repository, https://github.com/langbot-app/langbot-plugin-sdk
|
|
@@ -44,6 +44,23 @@ _READONLY_ETC_ENTRIES: list[str] = [
|
|
|
44
44
|
'/etc/resolv.conf', # needed when network=ON
|
|
45
45
|
]
|
|
46
46
|
|
|
47
|
+
# Essential character devices bind-mounted into the sandbox's /dev.
|
|
48
|
+
# /dev is a fresh empty tmpfs (see _build_args), so these nodes do not exist
|
|
49
|
+
# unless we bind them in from the host. Tooling that shells out for probes
|
|
50
|
+
# relies on them — notably `uv`/`uvx` redirects its glibc/musl detection
|
|
51
|
+
# subprocess to /dev/null; without it uv fails with "Could not detect either
|
|
52
|
+
# glibc version nor musl libc version" and the process exits before it can do
|
|
53
|
+
# anything (e.g. an stdio MCP server dies before the initialize handshake,
|
|
54
|
+
# surfacing as a misleading "Connection closed / please check URL").
|
|
55
|
+
_DEV_NODES: list[str] = [
|
|
56
|
+
'/dev/null',
|
|
57
|
+
'/dev/zero',
|
|
58
|
+
'/dev/full',
|
|
59
|
+
'/dev/random',
|
|
60
|
+
'/dev/urandom',
|
|
61
|
+
'/dev/tty',
|
|
62
|
+
]
|
|
63
|
+
|
|
47
64
|
_DEFAULT_BASE_DIR = '/tmp/langbot-box-nsjail'
|
|
48
65
|
|
|
49
66
|
|
|
@@ -116,6 +133,19 @@ class NsjailBackend(BaseSandboxBackend):
|
|
|
116
133
|
for d in (root_dir, workspace_dir, tmp_dir, home_dir):
|
|
117
134
|
d.mkdir(parents=True, exist_ok=True)
|
|
118
135
|
|
|
136
|
+
# When a host_path is mounted into the sandbox it becomes the nsjail
|
|
137
|
+
# bind-mount source (see _build_mounts). nsjail requires the source to
|
|
138
|
+
# already exist on the host, otherwise the bind-mount fails and the
|
|
139
|
+
# command exits 255 with no stdout/stderr. The per-session loop above
|
|
140
|
+
# never creates host_path (it lives outside session_dir), so ensure it
|
|
141
|
+
# exists here. Read-only mounts intentionally are NOT auto-created: a
|
|
142
|
+
# missing read-only source is a caller error that should surface.
|
|
143
|
+
if (
|
|
144
|
+
spec.host_path is not None
|
|
145
|
+
and spec.host_path_mode == BoxHostMountMode.READ_WRITE
|
|
146
|
+
):
|
|
147
|
+
os.makedirs(spec.host_path, exist_ok=True)
|
|
148
|
+
|
|
119
149
|
# If host_path is specified, we will use it directly instead of the
|
|
120
150
|
# per-session workspace when building nsjail args (see _build_mounts).
|
|
121
151
|
meta = {
|
|
@@ -317,6 +347,15 @@ class NsjailBackend(BaseSandboxBackend):
|
|
|
317
347
|
args.extend(['--mount', 'none:/proc:proc:rw'])
|
|
318
348
|
args.extend(['--mount', 'none:/dev:tmpfs:rw'])
|
|
319
349
|
|
|
350
|
+
# /dev is a fresh empty tmpfs, so bind in the essential character
|
|
351
|
+
# devices. Without /dev/null in particular, uv's glibc/musl detection
|
|
352
|
+
# subprocess fails and any uvx-launched process (e.g. stdio MCP servers)
|
|
353
|
+
# exits before doing useful work. Mounted read-write so writes to
|
|
354
|
+
# /dev/null behave normally.
|
|
355
|
+
for dev in _DEV_NODES:
|
|
356
|
+
if os.path.exists(dev):
|
|
357
|
+
args.extend(['--bindmount', f'{dev}:{dev}'])
|
|
358
|
+
|
|
320
359
|
# Working directory.
|
|
321
360
|
args.extend(['--cwd', spec.workdir])
|
|
322
361
|
|
|
@@ -93,20 +93,62 @@ async def test_start_session_creates_directories(backend, tmp_base):
|
|
|
93
93
|
@pytest.mark.anyio
|
|
94
94
|
async def test_start_session_with_host_path(backend, tmp_base):
|
|
95
95
|
tmp_base.mkdir(parents=True, exist_ok=True)
|
|
96
|
+
host_path = str(tmp_base / 'rw_host')
|
|
96
97
|
spec = BoxSpec(
|
|
97
98
|
session_id='sess2',
|
|
98
99
|
cmd='ls',
|
|
99
|
-
host_path=
|
|
100
|
+
host_path=host_path,
|
|
100
101
|
host_path_mode=BoxHostMountMode.READ_WRITE,
|
|
101
102
|
mount_path='/project',
|
|
102
103
|
)
|
|
103
104
|
|
|
104
105
|
info = await backend.start_session(spec)
|
|
105
|
-
assert info.host_path ==
|
|
106
|
+
assert info.host_path == host_path
|
|
106
107
|
assert info.host_path_mode == BoxHostMountMode.READ_WRITE
|
|
107
108
|
assert info.mount_path == '/project'
|
|
108
109
|
|
|
109
110
|
|
|
111
|
+
@pytest.mark.anyio
|
|
112
|
+
async def test_start_session_creates_missing_rw_host_path(backend, tmp_base):
|
|
113
|
+
"""Regression: a read-write host_path that does not yet exist must be
|
|
114
|
+
created by start_session, otherwise nsjail's --bindmount source is missing
|
|
115
|
+
and the command exits 255 with no output (SaaS MCP shared-workspace bug)."""
|
|
116
|
+
tmp_base.mkdir(parents=True, exist_ok=True)
|
|
117
|
+
host_path = tmp_base / 'never_created' / 'workspace'
|
|
118
|
+
assert not host_path.exists()
|
|
119
|
+
|
|
120
|
+
spec = BoxSpec(
|
|
121
|
+
session_id='sess-mkdir',
|
|
122
|
+
cmd='ls',
|
|
123
|
+
host_path=str(host_path),
|
|
124
|
+
host_path_mode=BoxHostMountMode.READ_WRITE,
|
|
125
|
+
mount_path='/workspace',
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
await backend.start_session(spec)
|
|
129
|
+
assert host_path.is_dir()
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@pytest.mark.anyio
|
|
133
|
+
async def test_start_session_does_not_create_ro_host_path(backend, tmp_base):
|
|
134
|
+
"""A missing read-only host_path is a caller error and must NOT be silently
|
|
135
|
+
created — it should surface rather than mount an empty dir."""
|
|
136
|
+
tmp_base.mkdir(parents=True, exist_ok=True)
|
|
137
|
+
host_path = tmp_base / 'ro_missing'
|
|
138
|
+
assert not host_path.exists()
|
|
139
|
+
|
|
140
|
+
spec = BoxSpec(
|
|
141
|
+
session_id='sess-ro',
|
|
142
|
+
cmd='ls',
|
|
143
|
+
host_path=str(host_path),
|
|
144
|
+
host_path_mode=BoxHostMountMode.READ_ONLY,
|
|
145
|
+
mount_path='/project',
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
await backend.start_session(spec)
|
|
149
|
+
assert not host_path.exists()
|
|
150
|
+
|
|
151
|
+
|
|
110
152
|
# ── stop_session ──────────────────────────────────────────────────────
|
|
111
153
|
|
|
112
154
|
@pytest.mark.anyio
|
|
@@ -173,6 +215,54 @@ def test_build_nsjail_args_basic(backend, tmp_base):
|
|
|
173
215
|
assert (session_dir / 'root' / 'home').is_dir()
|
|
174
216
|
|
|
175
217
|
|
|
218
|
+
def test_build_nsjail_args_binds_essential_dev_nodes(backend, tmp_base):
|
|
219
|
+
"""/dev is a fresh empty tmpfs, so essential character devices must be
|
|
220
|
+
bind-mounted in. Regression: without /dev/null, uv's glibc/musl detection
|
|
221
|
+
subprocess fails ("Could not detect either glibc version nor musl libc
|
|
222
|
+
version") and uvx-launched stdio MCP servers die before the initialize
|
|
223
|
+
handshake, surfacing as a misleading "Connection closed / please check URL".
|
|
224
|
+
"""
|
|
225
|
+
tmp_base.mkdir(parents=True, exist_ok=True)
|
|
226
|
+
session_dir = tmp_base / 'test_dev'
|
|
227
|
+
for d in ('root', 'workspace', 'tmp', 'home'):
|
|
228
|
+
(session_dir / d).mkdir(parents=True)
|
|
229
|
+
|
|
230
|
+
spec = BoxSpec(session_id='s-dev', cmd='echo hi')
|
|
231
|
+
session = BoxSessionInfo(
|
|
232
|
+
session_id='s-dev',
|
|
233
|
+
backend_name='nsjail',
|
|
234
|
+
backend_session_id=str(session_dir),
|
|
235
|
+
image=spec.image,
|
|
236
|
+
network=BoxNetworkMode.OFF,
|
|
237
|
+
created_at='2024-01-01T00:00:00+00:00',
|
|
238
|
+
last_used_at='2024-01-01T00:00:00+00:00',
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
# Pretend every candidate device node exists on the host.
|
|
242
|
+
with mock.patch('os.path.exists', return_value=True):
|
|
243
|
+
args = backend._build_nsjail_args(session, spec, session_dir)
|
|
244
|
+
|
|
245
|
+
# /dev itself is a tmpfs mount.
|
|
246
|
+
mount_specs = [args[i + 1] for i, a in enumerate(args) if a == '--mount']
|
|
247
|
+
assert 'none:/dev:tmpfs:rw' in mount_specs
|
|
248
|
+
|
|
249
|
+
# /dev/null (the critical one for uv) must be bind-mounted read-write,
|
|
250
|
+
# ordered AFTER the /dev tmpfs mount so it lands on the fresh tmpfs.
|
|
251
|
+
rw_binds = [args[i + 1] for i, a in enumerate(args) if a == '--bindmount']
|
|
252
|
+
assert '/dev/null:/dev/null' in rw_binds
|
|
253
|
+
assert '/dev/urandom:/dev/urandom' in rw_binds
|
|
254
|
+
|
|
255
|
+
dev_tmpfs_idx = next(
|
|
256
|
+
i for i, a in enumerate(args)
|
|
257
|
+
if a == '--mount' and args[i + 1] == 'none:/dev:tmpfs:rw'
|
|
258
|
+
)
|
|
259
|
+
dev_null_idx = next(
|
|
260
|
+
i for i, a in enumerate(args)
|
|
261
|
+
if a == '--bindmount' and args[i + 1] == '/dev/null:/dev/null'
|
|
262
|
+
)
|
|
263
|
+
assert dev_tmpfs_idx < dev_null_idx
|
|
264
|
+
|
|
265
|
+
|
|
176
266
|
def test_build_nsjail_args_network_on(backend, tmp_base):
|
|
177
267
|
tmp_base.mkdir(parents=True, exist_ok=True)
|
|
178
268
|
session_dir = tmp_base / 'test_session_net'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/definition/plugin.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/entities/context.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/event_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/execute_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/langbot_api.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/api/proxies/query_based_api.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/langbot-page-sdk.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/assets/templates/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/buildplugin.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/gencomponent.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/initplugin.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/publish.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/commands/runplugin.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/locales/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/cli/utils/page_components.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/actions/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/io/actions/enums.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/entities/marketplace.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/marketplace.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/helper/pkgmgr.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connection.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connections/stdio.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/connections/ws.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/controller.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/control.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/io/handlers/plugin.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/plugin/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/runtime/plugin/container.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/discover/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/src/langbot_plugin/utils/discover/engine.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/definition/components/test_components.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_command_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_platform_logger.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/api/entities/builtin/test_rag_models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_control_handler.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_import_contracts.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.2b1 → langbot_plugin-0.4.2b3}/tests/runtime/io/handlers/test_plugin_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|