langbot-plugin 0.4.0__tar.gz → 0.4.1__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.0 → langbot_plugin-0.4.1}/PKG-INFO +1 -1
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/pyproject.toml +1 -1
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/ws/client.py +10 -1
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/test_controllers.py +5 -2
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/.github/workflows/publish-pypi.yaml +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/.github/workflows/test.yml +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/.gitignore +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/.python-version +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/AGENTS.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/CLAUDE.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/LICENSE +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/README.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/data/.env.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/Message.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/PluginPages.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/communication/apis/lb2rt.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/communication/runtime_plugin.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/dependency-management.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/docs/langbot-plugin-social.png +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/abstract/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/abstract/platform/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/abstract/platform/adapter.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/abstract/platform/event_logger.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/base.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/command/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/command/command.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/common/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/common/event_listener.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/knowledge_engine/engine.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/manifest.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/page/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/parser/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/parser/parser.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/tool/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/tool/tool.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/plugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/command/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/command/context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/command/errors.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/pipeline/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/pipeline/query.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/platform/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/platform/entities.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/platform/events.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/platform/logger.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/platform/message.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/provider/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/provider/message.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/provider/prompt.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/provider/session.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/enums.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/errors.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/models.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/resource/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/resource/tool.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/events.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/base.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/event_context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/execute_context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/langbot_api.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/query_based_api.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/langbot-page-sdk.js +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/.env.example.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/.gitignore.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/.vscode/launch.json.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/README.md.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/assets/icon.svg.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/commands/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/event_listener/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/event_listener/default.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/event_listener/default.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/pages/{page_name}.html.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/pages/{page_name}.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/parser/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/tools/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/main.py.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/manifest.yaml.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/requirements.txt.example +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/actions.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/client.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/e2b_backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/errors.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/models.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/nsjail_backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/runtime.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/security.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/server.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/box/skill_store.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/__main__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/buildplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/gencomponent.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/initplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/login.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/logout.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/publish.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/runplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/gen/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/gen/renderer.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/i18n.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/en_US.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/es_ES.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/ja_JP.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/th_TH.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/vi_VN.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/zh_Hans.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/locales/zh_Hant.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/run/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/run/controller.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/run/handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/run/hotreload.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/utils/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/utils/cloudsv.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/utils/form.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/utils/page_components.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/actions/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/actions/enums.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/errors.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/req.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/resp.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/marketplace.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/LICENSE +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/README.md +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/app.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/helper/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/helper/marketplace.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/helper/pkgmgr.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connection.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/stdio.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/ws.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controller.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/stdio/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/stdio/client.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/stdio/server.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/ws/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/ws/server.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/control.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/plugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/plugin/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/plugin/container.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/plugin/mgr.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/settings.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/discover/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/discover/engine.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/importutil.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/log.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/utils/platform.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/version.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/definition/components/test_components.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/definition/test_manifest.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_command_context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_platform_logger.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_provider_message.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_rag_models.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/test_context.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/test_events.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/proxies/test_base.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/proxies/test_langbot_api.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/proxies/test_query_based_api.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_backend_selection.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_client.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_e2b_backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_nsjail_backend.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_runtime.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_server.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/box/test_skill_store.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/run/test_controller.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/run/test_runtime_handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_buildplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_gencomponent.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_i18n_form.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_initplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_login.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_logout_publish.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_page_components.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_renderer.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/cli/test_runplugin.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/entities/io/test_protocol.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/helpers/__init__.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/helpers/protocol.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/helper/test_marketplace.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/helper/test_pkgmgr.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/handlers/test_control_handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/handlers/test_import_contracts.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/handlers/test_plugin_handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/test_connections.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/test_handler.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/plugin/test_container.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/plugin/test_manager.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/test_app.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/test_log.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/test_message.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/utils/test_discovery.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/utils/test_importutil.py +0 -0
- {langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/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.1
|
|
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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/ws/client.py
RENAMED
|
@@ -27,7 +27,16 @@ class WebSocketClientController(Controller):
|
|
|
27
27
|
new_connection_callback: Callable[[Connection], Coroutine[Any, Any, None]],
|
|
28
28
|
):
|
|
29
29
|
try:
|
|
30
|
-
|
|
30
|
+
# ``proxy=None`` disables proxy auto-detection. These WebSocket
|
|
31
|
+
# connections are always to internal control-plane endpoints
|
|
32
|
+
# (the plugin runtime / Box runtime, reached over localhost or a
|
|
33
|
+
# Docker-internal service name). Without this, websockets>=14
|
|
34
|
+
# honours HTTP(S)_PROXY env vars and routes the handshake through
|
|
35
|
+
# an external proxy — which cannot reach the internal host and
|
|
36
|
+
# fails with "did not receive a valid HTTP response". This breaks
|
|
37
|
+
# Docker deployments on hosts that inject a proxy into containers
|
|
38
|
+
# (e.g. Docker Desktop with a configured proxy).
|
|
39
|
+
async with websockets.connect(self.ws_url, open_timeout=10, proxy=None) as websocket:
|
|
31
40
|
connection = ws_connection.WebSocketConnection(websocket)
|
|
32
41
|
await new_connection_callback(connection)
|
|
33
42
|
except Exception as e:
|
|
@@ -111,9 +111,10 @@ async def test_websocket_client_controller_invokes_connection_callback(monkeypat
|
|
|
111
111
|
captured = {}
|
|
112
112
|
websocket = FakeWebSocket()
|
|
113
113
|
|
|
114
|
-
def fake_connect(url, open_timeout):
|
|
114
|
+
def fake_connect(url, open_timeout, proxy="__unset__"):
|
|
115
115
|
captured["url"] = url
|
|
116
116
|
captured["open_timeout"] = open_timeout
|
|
117
|
+
captured["proxy"] = proxy
|
|
117
118
|
return FakeWebSocketConnectContext(websocket)
|
|
118
119
|
|
|
119
120
|
async def callback(connection):
|
|
@@ -129,6 +130,8 @@ async def test_websocket_client_controller_invokes_connection_callback(monkeypat
|
|
|
129
130
|
|
|
130
131
|
assert captured["url"] == "ws://localhost:9000"
|
|
131
132
|
assert captured["open_timeout"] == 10
|
|
133
|
+
# Internal control-plane connections must bypass proxy auto-detection.
|
|
134
|
+
assert captured["proxy"] is None
|
|
132
135
|
assert isinstance(captured["connection"], WebSocketConnection)
|
|
133
136
|
assert "failure" not in captured
|
|
134
137
|
|
|
@@ -137,7 +140,7 @@ async def test_websocket_client_controller_reports_connection_failure(monkeypatc
|
|
|
137
140
|
captured = {}
|
|
138
141
|
error = OSError("network down")
|
|
139
142
|
|
|
140
|
-
def fake_connect(url, open_timeout):
|
|
143
|
+
def fake_connect(url, open_timeout, proxy=None):
|
|
141
144
|
raise error
|
|
142
145
|
|
|
143
146
|
async def callback(connection):
|
|
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.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/abstract/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/definition/components/base.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.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/__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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/enums.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/rag/errors.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/entities/builtin/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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/event_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/execute_context.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/api/proxies/query_based_api.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/.gitignore.example
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/README.md.example
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/assets/templates/main.py.example
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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/buildplugin.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/commands/gencomponent.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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/cli/utils/page_components.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/actions/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/entities/io/actions/enums.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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/helper/marketplace.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/stdio.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/connections/ws.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/controllers/ws/server.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/control.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/io/handlers/plugin.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/src/langbot_plugin/runtime/plugin/container.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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/definition/components/test_components.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_command_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_platform_logger.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/api/entities/builtin/test_provider_message.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
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/handlers/test_control_handler.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/tests/runtime/io/handlers/test_import_contracts.py
RENAMED
|
File without changes
|
{langbot_plugin-0.4.0 → langbot_plugin-0.4.1}/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
|