langbot-plugin 0.3.3__tar.gz → 0.3.4__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.3.3 → langbot_plugin-0.3.4}/PKG-INFO +1 -1
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/pyproject.toml +1 -1
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/langbot_api.py +69 -8
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/runplugin.py +2 -6
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/actions/enums.py +5 -1
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/app.py +3 -7
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/plugin.py +17 -0
- langbot_plugin-0.3.4/src/langbot_plugin/utils/log.py +32 -0
- langbot_plugin-0.3.4/src/langbot_plugin/version.py +1 -0
- langbot_plugin-0.3.4/tests/test_log.py +29 -0
- langbot_plugin-0.3.3/src/langbot_plugin/version.py +0 -1
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/.github/workflows/publish-pypi.yaml +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/.gitignore +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/.python-version +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/AGENTS.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/CLAUDE.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/LICENSE +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/README.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/data/.env.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/docs/Message.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/docs/communication/apis/lb2rt.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/docs/communication/runtime_plugin.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/docs/dependency-management.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/docs/langbot-plugin-social.png +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/abstract/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/abstract/platform/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/abstract/platform/adapter.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/abstract/platform/event_logger.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/base.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/command/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/command/command.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/common/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/common/event_listener.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/knowledge_engine/engine.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/manifest.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/parser/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/parser/parser.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/tool/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/components/tool/tool.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/definition/plugin.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/command/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/command/context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/command/errors.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/pipeline/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/pipeline/query.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/platform/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/platform/entities.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/platform/events.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/platform/logger.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/platform/message.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/provider/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/provider/message.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/provider/prompt.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/provider/session.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/enums.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/errors.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/models.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/resource/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/resource/tool.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/events.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/base.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/event_context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/execute_context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/query_based_api.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/.env.example.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/.gitignore.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/.vscode/launch.json.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/README.md.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/assets/icon.svg.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/commands/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/commands/{cmd_name}.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/event_listener/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/event_listener/default.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/event_listener/default.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/knowledge_engine/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/knowledge_engine/{knowledge_engine_name}.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/parser/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/parser/{parser_name}.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/tools/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/components/tools/{tool_name}.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/main.py.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/manifest.yaml.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/requirements.txt.example +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/__main__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/buildplugin.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/gencomponent.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/initplugin.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/login.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/logout.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/publish.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/gen/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/gen/renderer.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/i18n.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/locales/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/locales/en_US.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/locales/ja_JP.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/locales/zh_Hans.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/locales/zh_Hant.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/run/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/run/controller.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/run/handler.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/run/hotreload.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/utils/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/utils/cloudsv.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/utils/form.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/actions/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/errors.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/req.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/resp.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/marketplace.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/LICENSE +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/README.md +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/context.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/helper/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/helper/marketplace.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/helper/pkgmgr.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connection.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/stdio.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/ws.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controller.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/stdio/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/stdio/client.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/stdio/server.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/ws/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/ws/client.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/ws/server.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handler.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/control.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/plugin/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/plugin/container.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/plugin/mgr.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/settings.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/utils/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/utils/discover/__init__.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/utils/discover/engine.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/utils/importutil.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/utils/platform.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/tests/api/entities/test_events.py +0 -0
- {langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/tests/test_message.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langbot-plugin
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
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
|
|
@@ -264,6 +264,7 @@ class LangBotAPIProxy:
|
|
|
264
264
|
filters: dict[str, Any] | None = None,
|
|
265
265
|
search_type: str = "vector",
|
|
266
266
|
query_text: str = "",
|
|
267
|
+
vector_weight: float | None = None,
|
|
267
268
|
) -> list[dict[str, Any]]:
|
|
268
269
|
"""Search similar vectors in Host's vector store.
|
|
269
270
|
|
|
@@ -274,23 +275,27 @@ class LangBotAPIProxy:
|
|
|
274
275
|
filters: Optional metadata filters.
|
|
275
276
|
search_type: One of 'vector', 'full_text', 'hybrid'.
|
|
276
277
|
query_text: Raw query text, used for full_text and hybrid search.
|
|
278
|
+
vector_weight: Weight for vector search in hybrid mode (0.0–1.0).
|
|
279
|
+
``None`` means use equal weights (backward compatible).
|
|
277
280
|
|
|
278
281
|
Returns:
|
|
279
282
|
List of search results (dict with id, distance, metadata).
|
|
280
283
|
Some hosts may also include an optional score field, but distance
|
|
281
284
|
is the stable field and lower values mean more similar results.
|
|
282
285
|
"""
|
|
286
|
+
data = {
|
|
287
|
+
"collection_id": collection_id,
|
|
288
|
+
"query_vector": query_vector,
|
|
289
|
+
"top_k": top_k,
|
|
290
|
+
"filters": filters,
|
|
291
|
+
"search_type": search_type,
|
|
292
|
+
"query_text": query_text,
|
|
293
|
+
"vector_weight": vector_weight,
|
|
294
|
+
}
|
|
283
295
|
return (
|
|
284
296
|
await self.plugin_runtime_handler.call_action(
|
|
285
297
|
PluginToRuntimeAction.VECTOR_SEARCH,
|
|
286
|
-
|
|
287
|
-
"collection_id": collection_id,
|
|
288
|
-
"query_vector": query_vector,
|
|
289
|
-
"top_k": top_k,
|
|
290
|
-
"filters": filters,
|
|
291
|
-
"search_type": search_type,
|
|
292
|
-
"query_text": query_text,
|
|
293
|
-
},
|
|
298
|
+
data,
|
|
294
299
|
timeout=30,
|
|
295
300
|
)
|
|
296
301
|
)["results"]
|
|
@@ -372,6 +377,62 @@ class LangBotAPIProxy:
|
|
|
372
377
|
await self.plugin_runtime_handler.delete_local_file(file_key)
|
|
373
378
|
return file_bytes
|
|
374
379
|
|
|
380
|
+
# ================= Knowledge Base APIs =================
|
|
381
|
+
|
|
382
|
+
async def list_knowledge_bases(self) -> list[dict[str, Any]]:
|
|
383
|
+
"""List all knowledge bases available in the LangBot instance.
|
|
384
|
+
|
|
385
|
+
Unlike query-based ``list_pipeline_knowledge_bases``, this API is
|
|
386
|
+
globally available and not restricted to a specific pipeline's
|
|
387
|
+
configured knowledge bases.
|
|
388
|
+
|
|
389
|
+
Returns:
|
|
390
|
+
List of dicts, each containing:
|
|
391
|
+
- uuid: Knowledge base UUID
|
|
392
|
+
- name: Knowledge base name
|
|
393
|
+
- description: Knowledge base description
|
|
394
|
+
"""
|
|
395
|
+
return (
|
|
396
|
+
await self.plugin_runtime_handler.call_action(
|
|
397
|
+
PluginToRuntimeAction.LIST_KNOWLEDGE_BASES, {}
|
|
398
|
+
)
|
|
399
|
+
)["knowledge_bases"]
|
|
400
|
+
|
|
401
|
+
async def retrieve_knowledge(
|
|
402
|
+
self,
|
|
403
|
+
kb_id: str,
|
|
404
|
+
query_text: str,
|
|
405
|
+
top_k: int = 5,
|
|
406
|
+
filters: dict[str, Any] | None = None,
|
|
407
|
+
) -> list[dict[str, Any]]:
|
|
408
|
+
"""Retrieve relevant documents from any knowledge base.
|
|
409
|
+
|
|
410
|
+
Unlike query-based ``retrieve_knowledge``, this API is globally
|
|
411
|
+
available and can access any knowledge base without pipeline
|
|
412
|
+
restrictions.
|
|
413
|
+
|
|
414
|
+
Args:
|
|
415
|
+
kb_id: Knowledge base UUID
|
|
416
|
+
query_text: Search query text
|
|
417
|
+
top_k: Number of results to return (default: 5)
|
|
418
|
+
filters: Optional metadata filters for retrieval
|
|
419
|
+
|
|
420
|
+
Returns:
|
|
421
|
+
List of retrieval result entries.
|
|
422
|
+
"""
|
|
423
|
+
return (
|
|
424
|
+
await self.plugin_runtime_handler.call_action(
|
|
425
|
+
PluginToRuntimeAction.RETRIEVE_KNOWLEDGE,
|
|
426
|
+
{
|
|
427
|
+
"kb_id": kb_id,
|
|
428
|
+
"query_text": query_text,
|
|
429
|
+
"top_k": top_k,
|
|
430
|
+
"filters": filters or {},
|
|
431
|
+
},
|
|
432
|
+
timeout=30,
|
|
433
|
+
)
|
|
434
|
+
)["results"]
|
|
435
|
+
|
|
375
436
|
# ================= Parser Capability APIs =================
|
|
376
437
|
|
|
377
438
|
async def list_parsers(self, mime_type: str | None = None) -> list[dict[str, Any]]:
|
|
@@ -6,6 +6,7 @@ import dotenv
|
|
|
6
6
|
import logging
|
|
7
7
|
|
|
8
8
|
from langbot_plugin.utils.discover.engine import ComponentDiscoveryEngine
|
|
9
|
+
from langbot_plugin.utils.log import configure_process_logging
|
|
9
10
|
from langbot_plugin.cli.run.controller import PluginRuntimeController
|
|
10
11
|
from langbot_plugin.cli.i18n import cli_print
|
|
11
12
|
|
|
@@ -66,12 +67,7 @@ async def arun_plugin_process(stdio: bool = False, prod_mode: bool = False, plug
|
|
|
66
67
|
|
|
67
68
|
|
|
68
69
|
def run_plugin_process(stdio: bool = False, prod_mode: bool = False, plugin_debug_key: str = "") -> None:
|
|
69
|
-
|
|
70
|
-
logging.basicConfig(
|
|
71
|
-
level=logging.INFO,
|
|
72
|
-
format='[%(asctime)s.%(msecs)03d] (PluginProcess) %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s',
|
|
73
|
-
datefmt='%Y-%m-%d %H:%M:%S'
|
|
74
|
-
)
|
|
70
|
+
configure_process_logging()
|
|
75
71
|
|
|
76
72
|
try:
|
|
77
73
|
asyncio.run(arun_plugin_process(stdio, prod_mode, plugin_debug_key))
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/actions/enums.py
RENAMED
|
@@ -68,7 +68,11 @@ class PluginToRuntimeAction(ActionType):
|
|
|
68
68
|
LIST_PARSERS = "list_parsers"
|
|
69
69
|
INVOKE_PARSER = "invoke_parser"
|
|
70
70
|
|
|
71
|
-
"""Knowledge Base
|
|
71
|
+
"""Knowledge Base APIs (global, unrestricted)"""
|
|
72
|
+
LIST_KNOWLEDGE_BASES = "list_knowledge_bases"
|
|
73
|
+
RETRIEVE_KNOWLEDGE = "retrieve_knowledge"
|
|
74
|
+
|
|
75
|
+
"""Knowledge Base Query APIs (query-based, pipeline-scoped)"""
|
|
72
76
|
LIST_PIPELINE_KNOWLEDGE_BASES = "list_pipeline_knowledge_bases"
|
|
73
77
|
RETRIEVE_KNOWLEDGE_BASE = "retrieve_knowledge_base"
|
|
74
78
|
|
|
@@ -17,6 +17,7 @@ from langbot_plugin.runtime.io.connection import Connection
|
|
|
17
17
|
from langbot_plugin.runtime.plugin import mgr as plugin_mgr_cls
|
|
18
18
|
from langbot_plugin.runtime import context
|
|
19
19
|
from langbot_plugin.runtime.settings import settings
|
|
20
|
+
from langbot_plugin.utils.log import configure_process_logging
|
|
20
21
|
|
|
21
22
|
logger = logging.getLogger(__name__)
|
|
22
23
|
|
|
@@ -125,13 +126,8 @@ class RuntimeApplication:
|
|
|
125
126
|
|
|
126
127
|
|
|
127
128
|
def main(args: argparse.Namespace):
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
level=logging.INFO,
|
|
131
|
-
format='[%(asctime)s.%(msecs)03d] %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s',
|
|
132
|
-
datefmt='%Y-%m-%d %H:%M:%S'
|
|
133
|
-
)
|
|
134
|
-
|
|
129
|
+
configure_process_logging()
|
|
130
|
+
|
|
135
131
|
app = RuntimeApplication(args)
|
|
136
132
|
|
|
137
133
|
try:
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/plugin.py
RENAMED
|
@@ -301,6 +301,23 @@ class PluginConnectionHandler(handler.Handler):
|
|
|
301
301
|
|
|
302
302
|
# ================= Knowledge Base Query Handlers (Plugin -> Runtime -> Host) =================
|
|
303
303
|
|
|
304
|
+
@self.action(PluginToRuntimeAction.LIST_KNOWLEDGE_BASES)
|
|
305
|
+
async def list_knowledge_bases(data: dict[str, Any]) -> handler.ActionResponse:
|
|
306
|
+
result = await self.context.control_handler.call_action(
|
|
307
|
+
PluginToRuntimeAction.LIST_KNOWLEDGE_BASES,
|
|
308
|
+
data,
|
|
309
|
+
)
|
|
310
|
+
return handler.ActionResponse.success(result)
|
|
311
|
+
|
|
312
|
+
@self.action(PluginToRuntimeAction.RETRIEVE_KNOWLEDGE)
|
|
313
|
+
async def retrieve_knowledge(data: dict[str, Any]) -> handler.ActionResponse:
|
|
314
|
+
result = await self.context.control_handler.call_action(
|
|
315
|
+
PluginToRuntimeAction.RETRIEVE_KNOWLEDGE,
|
|
316
|
+
data,
|
|
317
|
+
timeout=30,
|
|
318
|
+
)
|
|
319
|
+
return handler.ActionResponse.success(result)
|
|
320
|
+
|
|
304
321
|
@self.action(PluginToRuntimeAction.LIST_PIPELINE_KNOWLEDGE_BASES)
|
|
305
322
|
async def list_pipeline_knowledge_bases(data: dict[str, Any]) -> handler.ActionResponse:
|
|
306
323
|
result = await self.context.control_handler.call_action(
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import logging
|
|
4
|
+
from typing import TextIO
|
|
5
|
+
|
|
6
|
+
DEFAULT_LOG_DATEFMT = "%m-%d %H:%M:%S"
|
|
7
|
+
_BASE_LOG_FORMAT = "[%(asctime)s.%(msecs)03d] %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s"
|
|
8
|
+
_PREFIXED_LOG_FORMAT = (
|
|
9
|
+
"[%(asctime)s.%(msecs)03d] ({process_name}) %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s"
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def build_process_log_format(process_name: str | None = None) -> str:
|
|
14
|
+
if process_name:
|
|
15
|
+
return _PREFIXED_LOG_FORMAT.format(process_name=process_name)
|
|
16
|
+
return _BASE_LOG_FORMAT
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def configure_process_logging(
|
|
20
|
+
*,
|
|
21
|
+
level: int = logging.INFO,
|
|
22
|
+
process_name: str | None = None,
|
|
23
|
+
stream: TextIO | None = None,
|
|
24
|
+
) -> None:
|
|
25
|
+
"""Configure a consistent log format for standalone SDK entrypoints."""
|
|
26
|
+
logging.basicConfig(
|
|
27
|
+
level=level,
|
|
28
|
+
format=build_process_log_format(process_name),
|
|
29
|
+
datefmt=DEFAULT_LOG_DATEFMT,
|
|
30
|
+
stream=stream,
|
|
31
|
+
force=True,
|
|
32
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.4"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import io
|
|
4
|
+
import logging
|
|
5
|
+
import re
|
|
6
|
+
|
|
7
|
+
from langbot_plugin.utils.log import build_process_log_format, configure_process_logging
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def test_build_process_log_format_supports_optional_prefix():
|
|
11
|
+
assert build_process_log_format() == "[%(asctime)s.%(msecs)03d] %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s"
|
|
12
|
+
assert (
|
|
13
|
+
build_process_log_format("BoxRuntime")
|
|
14
|
+
== "[%(asctime)s.%(msecs)03d] (BoxRuntime) %(filename)s (%(lineno)d) - [%(levelname)s] : %(message)s"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def test_configure_process_logging_uses_unified_formatter():
|
|
19
|
+
stream = io.StringIO()
|
|
20
|
+
logger = logging.getLogger("langbot_plugin.tests.log")
|
|
21
|
+
|
|
22
|
+
configure_process_logging(stream=stream)
|
|
23
|
+
logger.info("hello logging")
|
|
24
|
+
|
|
25
|
+
output = stream.getvalue().strip()
|
|
26
|
+
assert re.match(
|
|
27
|
+
r"^\[\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{3}\] test_log\.py \(\d+\) - \[INFO\] : hello logging$",
|
|
28
|
+
output,
|
|
29
|
+
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.3.3"
|
|
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.3.3 → langbot_plugin-0.3.4}/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.3.3 → langbot_plugin-0.3.4}/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
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/enums.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/entities/builtin/rag/errors.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/event_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/execute_context.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/api/proxies/query_based_api.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/.gitignore.example
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/assets/templates/README.md.example
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/cli/commands/buildplugin.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/entities/io/actions/__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
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/helper/marketplace.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/stdio.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/connections/ws.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/ws/client.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/controllers/ws/server.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/__init__.py
RENAMED
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/src/langbot_plugin/runtime/io/handlers/control.py
RENAMED
|
File without changes
|
|
File without changes
|
{langbot_plugin-0.3.3 → langbot_plugin-0.3.4}/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
|