mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 20:14:36 +00:00
Resolve conflicts in: - .github/workflows/run-tests.yml: keep master's src/langbot/** paths plus feat/** push branch - src/langbot/pkg/plugin/connector.py: keep both branches' marketplace MCP/skill install logic (HEAD) and runtime/wait helpers (master); add missing return in _inspect_plugin_package so LOCAL/GITHUB install paths get author/name back - tests/unit_tests/pipeline/test_n8nsvapi.py: keep HEAD's try/finally sys.modules save/restore pattern - web/src/app/home/components/dynamic-form/DynamicFormComponent.tsx: union imports + keep HEAD's disable_if/tooltip support and master's QrCodeLoginDialog - web/src/i18n/locales/*: union of disjoint top-level keys from both branches - web/src/app/home/market/page.tsx: accept our deletion (unified extensions page) - uv.lock: regenerate via uv sync --dev
22 lines
762 B
HTML
22 lines
762 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>LangBot Embed Widget Test</title>
|
|
<style>
|
|
body { font-family: sans-serif; padding: 40px; background: #f5f5f5; }
|
|
h1 { margin-bottom: 10px; }
|
|
p { color: #666; }
|
|
code { background: #e0e0e0; padding: 2px 6px; border-radius: 3px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>LangBot Embed Widget Test Page</h1>
|
|
<p>If the widget loaded correctly, you should see a blue chat bubble in the bottom-right corner.</p>
|
|
<p>Replace the <code>BOT_UUID</code> below with your actual bot UUID.</p>
|
|
|
|
<!-- Replace BOT_UUID with your real bot UUID -->
|
|
<script data-title="LangBot" src="http://localhost:5300/api/v1/embed/a0ab80e7-742a-445f-bd0e-7d9758f1cfa7/widget.js"></script>
|
|
</body>
|
|
</html>
|