Compare commits
44 Commits
batch-inst
...
openwebui-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fbd68ad042 | ||
|
|
b6ce354034 | ||
|
|
df042e471e | ||
|
|
b9f32e72d0 | ||
|
|
bfc2743f3a | ||
|
|
751e255894 | ||
|
|
9deb942208 | ||
|
|
38787351a0 | ||
|
|
ff44d324eb | ||
|
|
f30d3ed12c | ||
|
|
6b5c7f102b | ||
|
|
bef614838d | ||
|
|
b3cbe0783a | ||
|
|
fd1097e1b2 | ||
|
|
38430b4b56 | ||
|
|
0cf1447a1f | ||
|
|
a406aa0556 | ||
|
|
2da254c6f4 | ||
|
|
1f9a5ac029 | ||
|
|
e6f22b0f82 | ||
|
|
2fae50a39f | ||
|
|
4d7aef1da2 | ||
|
|
22f69b7b9e | ||
|
|
20e3a33ed2 | ||
|
|
eb8545430f | ||
|
|
8b3f44b8e0 | ||
|
|
c520a6fd45 | ||
|
|
318e3951ff | ||
|
|
85c58f1a3d | ||
|
|
9f2e7a9658 | ||
|
|
c87e80379b | ||
|
|
4c9b5d1c7c | ||
|
|
afac25c14c | ||
|
|
a8581119fe | ||
|
|
2508eec590 | ||
|
|
121b1db732 | ||
|
|
ad04a3e50e | ||
|
|
a5b968676d | ||
|
|
894584330c | ||
|
|
6f8c871658 | ||
|
|
bf3ba97b9a | ||
|
|
31496a191e | ||
|
|
c6171be0d1 | ||
|
|
6b8cb9630a |
@@ -44,3 +44,6 @@ Edge cases or caveats to watch out for.
|
||||
| [openwebui-tool-injection.md](./openwebui-tool-injection.md) | How OpenWebUI injects parameters into Tool functions, and what the Pipe must provide |
|
||||
| [openwebui-mock-request.md](./openwebui-mock-request.md) | How to build a valid Mock Request for calling OpenWebUI-internal APIs from a Pipe |
|
||||
| [copilot-plan-mode-prompt-parity.md](./copilot-plan-mode-prompt-parity.md) | Why Plan Mode prompt logic must be shared between fresh-session and resume-session injection |
|
||||
| [richui-default-actions-optout.md](./richui-default-actions-optout.md) | How static RichUI widgets opt out of fallback prompt/link action injection |
|
||||
| [richui-declarative-priority.md](./richui-declarative-priority.md) | How RichUI resolves priority between declarative actions and inline click handlers |
|
||||
| [richui-interaction-api.md](./richui-interaction-api.md) | Recommended 4-action RichUI interaction contract for chat continuation, prefill, submit, and links |
|
||||
|
||||
72
.agent/learnings/github-copilot-sdk-hang-analysis.md
Normal file
72
.agent/learnings/github-copilot-sdk-hang-analysis.md
Normal file
@@ -0,0 +1,72 @@
|
||||
# GitHub Copilot SDK 卡顿/悬停问题深度源码分析报告
|
||||
|
||||
## 📌 问题现象
|
||||
|
||||
用户反馈在 agent 处理过程中(工具调用、思考、内容输出),`github_copilot_sdk.py` 管道偶尔会卡住(界面转圈不停)。
|
||||
|
||||
## 🔍 事件流架构(SDK 源码分析)
|
||||
|
||||
通过阅读 `copilot-sdk` 源码 (`jsonrpc.py`, `client.py`, `session.py`),事件流路径如下:
|
||||
|
||||
```
|
||||
Copilot CLI (subprocess)
|
||||
└─ stdout (JSON-RPC over stdio)
|
||||
└─ JsonRpcClient._read_loop() [daemon thread]
|
||||
└─ _handle_message()
|
||||
└─ notification_handler("session.event", params) [线程安全调度到 event loop]
|
||||
└─ CopilotSession._dispatch_event(event)
|
||||
└─ plugin handler(event) → queue.put_nowait(chunk)
|
||||
└─ main loop: await queue.get() → yield chunk
|
||||
```
|
||||
|
||||
## 🚨 已确认的三个卡顿根因
|
||||
|
||||
### 根因 1: Stall 检测豁免盲区
|
||||
|
||||
原始代码的防卡死检测仅在 `content_sent=False` 且 `thinking_started=False` 且 `running_tool_calls` 为空时才触发。一旦 agent 开始处理(输出内容/调用工具),所有豁免条件为真,防卡死机制永久失效。
|
||||
|
||||
### 根因 2: 工具调用状态泄漏
|
||||
|
||||
`running_tool_calls.add(tool_call_id)` 在 `tool.execution_start` 时添加,但如果 SDK 连接断开导致 `tool.execution_complete` 事件丢失,集合永远不为空,直接阻塞 Stall 检测。
|
||||
|
||||
### 根因 3: `session.abort()` 自身可能卡住(SDK 源码确认)
|
||||
|
||||
**SDK 源码关键证据** (`jsonrpc.py:107-148`):
|
||||
|
||||
```python
|
||||
async def request(self, method, params=None, timeout=None):
|
||||
...
|
||||
if timeout is not None:
|
||||
return await asyncio.wait_for(future, timeout=timeout)
|
||||
return await future # ← 无 timeout,永久等待!
|
||||
```
|
||||
|
||||
`session.abort()` 底层调用 `self._client.request("session.abort", ...)` **没有传 timeout**。
|
||||
当 CLI 进程挂死但 `_read_loop` 尚未检测到断流(例如 TCP 半开连接),`abort()` RPC 自身会无限等待响应,造成**修复代码自身也卡住**。
|
||||
|
||||
## ✅ 修复记录 (2026-03-18)
|
||||
|
||||
### 修复 1: `assistant.turn_end` / `session.error` 兜底清理
|
||||
|
||||
`running_tool_calls.clear()` — 即时清除孤儿工具状态。
|
||||
|
||||
### 修复 2: 绝对不活跃保护 (Absolute Inactivity Guard)
|
||||
|
||||
当距最后一个事件超过 `min(TIMEOUT, 90) × 2 = 180s` 且无任何新事件时,**无条件**推送错误并结束流。不受 `content_sent` / `thinking_started` / `running_tool_calls` 任何豁免条件限制。
|
||||
|
||||
### 修复 3: `session.abort()` 超时保护
|
||||
|
||||
所有 `session.abort()` 调用使用 `asyncio.wait_for(..., timeout=5.0)` 包裹。即使 abort RPC 自身卡住也不会阻塞主循环。
|
||||
|
||||
## 📊 修复后超时时间线
|
||||
|
||||
| 场景 | 保护机制 | 触发时间 |
|
||||
|------|----------|----------|
|
||||
| Turn 开始后完全无事件 | Primary Stall Detection | 90 秒 |
|
||||
| Agent 处理中突然断流 | Absolute Inactivity Guard | 180 秒 |
|
||||
| abort() 调用本身卡住 | asyncio.wait_for timeout | 5 秒 |
|
||||
| Turn 结束/Session 错误 | 兜底 running_tool_calls.clear() | 即时 |
|
||||
|
||||
---
|
||||
|
||||
*Created by Antigravity using Source-Code-Analyzer skill on 2026-03-18.*
|
||||
25
.agent/learnings/github-copilot-sdk-stream-finalization.md
Normal file
25
.agent/learnings/github-copilot-sdk-stream-finalization.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# GitHub Copilot SDK Stream Finalization
|
||||
|
||||
> Discovered: 2026-03-20
|
||||
|
||||
## Context
|
||||
Applies to `plugins/pipes/github-copilot-sdk/github_copilot_sdk.py` when streaming assistant output, handling `pending_embeds`, and waiting for `session.idle`.
|
||||
|
||||
## Finding
|
||||
Two non-obvious issues can make the pipe feel permanently stuck even when useful work already finished:
|
||||
|
||||
1. If the main `queue.get()` wait uses the full user-configured `TIMEOUT` (for example 300s), watchdog logic, "still working" status updates, and synthetic finalization checks only wake up at that same coarse interval.
|
||||
2. If `pending_embeds` are flushed only in the `session.idle` branch, any timeout/error/missing-idle path can lose already-prepared embeds even though file publishing itself succeeded.
|
||||
|
||||
## Solution / Pattern
|
||||
- Keep the *inactivity limit* controlled by `TIMEOUT`, but poll the local stream queue on a short fixed cadence (for example max 5s) so watchdogs and fallback finalization stay responsive.
|
||||
- Track `assistant.turn_end`; if `session.idle` does not arrive shortly afterward, synthesize finalization instead of waiting for the full inactivity timeout.
|
||||
- Flush `pending_embeds` exactly once via a shared helper that can run from both normal idle finalization and error/timeout finalization paths.
|
||||
- For streamed text/reasoning, use conservative overlap trimming: only strip an overlapping prefix when the incoming chunk still contains new suffix content. Do not drop fully repeated chunks blindly, or legitimate repeated text can be corrupted.
|
||||
|
||||
## Gotchas
|
||||
- RichUI embed success and streamed-text success are separate paths; a file can be published correctly while chat output still hangs or duplicates.
|
||||
- If `assistant.reasoning_delta` is streamed, the later complete `assistant.reasoning` event must be suppressed just like `assistant.message`, or the thinking block can duplicate.
|
||||
|
||||
## 🛠️ Update 2026-03-21
|
||||
- **Fixed Stream Duplication**: Fixed text stream overlays (e.g., `🎉 删 🎉 删除成功`) when resuming conversation session. Strictly applied `_dedupe_stream_chunk(delta, "message_stream_tail")` inside `assistant.message_delta` event handler to prevent concurrent history re-play or multiple stream delivery bug overlays, solving previous gaps in the deployment pipeline.
|
||||
27
.agent/learnings/richui-declarative-priority.md
Normal file
27
.agent/learnings/richui-declarative-priority.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# RichUI Declarative Priority
|
||||
|
||||
> Discovered: 2026-03-16
|
||||
|
||||
## Context
|
||||
This applies to the RichUI bridge embedded by `plugins/pipes/github-copilot-sdk/github_copilot_sdk.py` when HTML pages mix declarative `data-openwebui-prompt` / `data-prompt` actions with inline `onclick` handlers.
|
||||
|
||||
## Finding
|
||||
Mixing declarative prompt/link attributes with inline click handlers can cause duplicate prompt submission paths, especially when both the page and the bridge react to the same click.
|
||||
|
||||
## Solution / Pattern
|
||||
The bridge now treats inline `onclick` as the default owner of click behavior. Declarative prompt/link dispatch is skipped when an element already has inline click logic.
|
||||
|
||||
If a page intentionally wants declarative bridge handling even with inline handlers present, mark the element explicitly:
|
||||
|
||||
```html
|
||||
<button
|
||||
onclick="trackClick()"
|
||||
data-openwebui-prompt="Explain this chart"
|
||||
data-openwebui-force-declarative="1"
|
||||
>
|
||||
```
|
||||
|
||||
## Gotchas
|
||||
Without the explicit override, keyboard/click dispatch for declarative actions will yield to inline `onclick`.
|
||||
|
||||
The bridge also keeps a short same-prompt dedupe window in `sendPrompt()` as a safety net, but the preferred fix is still to avoid mixed ownership unless you opt in deliberately.
|
||||
23
.agent/learnings/richui-default-actions-optout.md
Normal file
23
.agent/learnings/richui-default-actions-optout.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# RichUI Default Action Opt-Out
|
||||
|
||||
> Discovered: 2026-03-16
|
||||
|
||||
## Context
|
||||
This applies to RichUI embeds generated by `plugins/pipes/github-copilot-sdk/github_copilot_sdk.py`, especially when a specific embed should render state without fallback prompt or link actions.
|
||||
|
||||
## Finding
|
||||
The RichUI bridge can add fallback action buttons based on declarative prompt/link metadata. Static embeds can explicitly opt out when their HTML includes `data-openwebui-no-default-actions="1"` or `data-openwebui-static-widget="1"`.
|
||||
|
||||
## Solution / Pattern
|
||||
Mark the embed root with both attributes and keep the embed wrapped through `_prepare_richui_embed_html(...)` when you explicitly want to suppress fallback actions.
|
||||
|
||||
Example:
|
||||
|
||||
```html
|
||||
<div class="w" data-openwebui-no-default-actions="1" data-openwebui-static-widget="1">
|
||||
```
|
||||
|
||||
## Gotchas
|
||||
If the opt-out markers are missing, RichUI fallback actions can reappear even after interactive row handlers have been removed from the widget itself.
|
||||
|
||||
This opt-out only suppresses fallback prompt/link injection. It does not affect the SQL-driven TODO refresh path, which still re-emits the widget through `type: embeds` after `todos` or `todo_deps` updates.
|
||||
89
.agent/learnings/richui-interaction-api.md
Normal file
89
.agent/learnings/richui-interaction-api.md
Normal file
@@ -0,0 +1,89 @@
|
||||
# RichUI Interaction API
|
||||
|
||||
> Discovered: 2026-03-16
|
||||
|
||||
## Context
|
||||
This applies to RichUI HTML embeds generated by `plugins/pipes/github-copilot-sdk/github_copilot_sdk.py` when the page needs to talk back to the OpenWebUI chat UI.
|
||||
|
||||
## Finding
|
||||
The most reliable design is a small recommended interaction surface with only four primary actions:
|
||||
|
||||
1. continue chat now
|
||||
2. prefill chat input without sending
|
||||
3. submit the current chat input
|
||||
4. open an external link
|
||||
|
||||
Keeping the recommended API this small reduces LLM choice overload and makes multilingual HTML generation more consistent.
|
||||
|
||||
Advanced capabilities still exist, but they are intentionally treated as opt-in patterns rather than the default contract:
|
||||
|
||||
- copy text to clipboard
|
||||
- structured selection state
|
||||
- template-based prompt/copy actions driven by current selections
|
||||
|
||||
## Solution / Pattern
|
||||
Prefer declarative attributes first:
|
||||
|
||||
```html
|
||||
<!-- 1. Continue chat immediately -->
|
||||
<button data-openwebui-prompt="Explain this workflow step by step">Explain</button>
|
||||
|
||||
<!-- 2. Prefill the chat input only -->
|
||||
<button
|
||||
data-openwebui-prompt="Draft a rollout checklist for this design"
|
||||
data-openwebui-action="fill"
|
||||
>
|
||||
Draft in input
|
||||
</button>
|
||||
|
||||
<!-- 3. Submit the current chat input -->
|
||||
<button data-openwebui-action="submit">Send current draft</button>
|
||||
|
||||
<!-- 4. Open a real URL -->
|
||||
<a data-openwebui-link="https://docs.example.com">Docs</a>
|
||||
```
|
||||
|
||||
When JavaScript is genuinely needed, prefer the object methods:
|
||||
|
||||
```javascript
|
||||
window.OpenWebUIBridge.prompt(text);
|
||||
window.OpenWebUIBridge.fill(text);
|
||||
window.OpenWebUIBridge.submit();
|
||||
window.OpenWebUIBridge.openLink(url);
|
||||
window.OpenWebUIBridge.reportHeight();
|
||||
```
|
||||
|
||||
Use advanced patterns only when the page genuinely needs them:
|
||||
|
||||
```html
|
||||
<!-- Copy -->
|
||||
<button data-openwebui-copy="npm run build && npm test">Copy command</button>
|
||||
|
||||
<!-- Pick a structured selection -->
|
||||
<button data-openwebui-select="role" data-openwebui-value="reviewer">
|
||||
Reviewer
|
||||
</button>
|
||||
|
||||
<!-- Use the current selection in a follow-up action -->
|
||||
<button data-openwebui-prompt-template="Explain the responsibilities of {{role}}">
|
||||
Explain selected role
|
||||
</button>
|
||||
```
|
||||
|
||||
### Quick decision guide
|
||||
|
||||
- Need an immediate answer now → `data-openwebui-prompt`
|
||||
- Need the user to review/edit first → `data-openwebui-action="fill"`
|
||||
- Need to send what is already in chat input → `data-openwebui-action="submit"`
|
||||
- Need to open an external resource → `data-openwebui-link`
|
||||
- Need copy UX → `data-openwebui-copy`
|
||||
- Need pick-then-act UX → `data-openwebui-select` + template placeholder
|
||||
|
||||
For most pages, keep to one dominant interaction style and only 2-4 visible actions.
|
||||
|
||||
## Gotchas
|
||||
Inline `onclick` owns click behavior by default. If an element mixes inline click code with declarative prompt/link attributes, declarative handling is skipped unless `data-openwebui-force-declarative="1"` is present.
|
||||
|
||||
Legacy aliases such as `sendPrompt(...)` still work for compatibility, but new generated pages should prefer the smaller object-method API or the declarative contract above.
|
||||
|
||||
The bridge still keeps a short same-prompt dedupe window as a safety net, but the preferred design is to avoid mixed ownership in the first place.
|
||||
30
.agent/learnings/richui-theme-source-separation.md
Normal file
30
.agent/learnings/richui-theme-source-separation.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# RichUI Theme Source Separation
|
||||
|
||||
> Discovered: 2026-03-20
|
||||
|
||||
## Context
|
||||
Applies to the RichUI bridge in `plugins/pipes/github-copilot-sdk/github_copilot_sdk.py` when syncing iframe or standalone HTML theme with OpenWebUI.
|
||||
|
||||
## Finding
|
||||
Theme detection must not read back bridge-applied local theme markers as if they were the upstream source of truth.
|
||||
|
||||
If the bridge writes `html[data-theme]` or `html.dark` in standalone/current-document mode and then also reads those same markers during detection, the theme can self-latch and stop following real source changes such as `meta[name="theme-color"]` updates or `prefers-color-scheme` changes.
|
||||
|
||||
## Solution / Pattern
|
||||
Keep theme **detection** and theme **application** separate.
|
||||
|
||||
When embedded in OpenWebUI, follow the same stable detection order used by `smart-mind-map`:
|
||||
|
||||
1. `parent document` `meta[name="theme-color"]`
|
||||
2. `parent document` `html/body` class or `html[data-theme]`
|
||||
3. `prefers-color-scheme`
|
||||
|
||||
Only if there is no accessible parent document should the bridge fall back to the current document's `meta[name="theme-color"]` and `html/body` theme signals.
|
||||
|
||||
- Always write the resolved theme to a dedicated bridge marker such as `data-openwebui-applied-theme`.
|
||||
- Only mirror generic `html[data-theme]` / `html.dark` markers when a real parent document exists, so standalone fallback does not pollute its own detection source.
|
||||
- If internal widget CSS needs dark-mode styling in standalone mode, target the dedicated marker too (for example `html[data-openwebui-applied-theme="dark"]`).
|
||||
|
||||
## Gotchas
|
||||
- Watching `style` mutations is unnecessary once detection no longer reads computed style or inline color-scheme.
|
||||
- If standalone mode needs to honor page-owned `html.dark` or `html[data-theme]`, do not overwrite those markers just to style the bridge itself; use the dedicated bridge marker instead.
|
||||
@@ -18,16 +18,18 @@ All plugins MUST follow the standard README template.
|
||||
|
||||
### Metadata Requirements
|
||||
|
||||
The metadata line must follow this format:
|
||||
`**Author:** [Name](Link) | **Version:** [X.Y.Z] | **Project:** [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions) | **License:** MIT`
|
||||
Follow the header table used in the template:
|
||||
`| By [Fu-Jie](https://github.com/Fu-Jie) · vX.Y.Z | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |`
|
||||
|
||||
### Structure Checklist
|
||||
|
||||
1. **Title & Description**
|
||||
2. **Metadata Line** (Author, Version, Project, License)
|
||||
3. **Preview** (Screenshots/GIFs)
|
||||
4. **What's New** (Keep last 3 versions)
|
||||
5. **Key Features**
|
||||
6. **How to Use**
|
||||
7. **Configuration (Valves)**
|
||||
8. **Troubleshooting** (Must include link to GitHub Issues)
|
||||
2. **Header Metadata Table** (Author, version, repo star link)
|
||||
3. **Preview** (Screenshot, GIF, or a short note if preview is not ready)
|
||||
4. **Install with Batch Install Plugins** (Include the fixed prompt block)
|
||||
Use the generic prompt `Install plugin from Fu-Jie/openwebui-extensions` instead of hard-coding the plugin name.
|
||||
5. **What's New** (Keep last 1-3 versions)
|
||||
6. **Key Features**
|
||||
7. **How to Use**
|
||||
8. **Configuration (Valves)**
|
||||
9. **Troubleshooting** (Must include link to GitHub Issues and mention official-version conflict if relevant)
|
||||
|
||||
173
.continues-handoff.md
Normal file
173
.continues-handoff.md
Normal file
@@ -0,0 +1,173 @@
|
||||
# Session Handoff Context
|
||||
|
||||
|
||||
## Session Overview
|
||||
|
||||
| Field | Value |
|
||||
|-------|-------|
|
||||
| **Source** | GitHub Copilot CLI |
|
||||
| **Session ID** | `231b2651-f3bf-4a24-8680-5ad9d2cdcd22` |
|
||||
| **Working Directory** | `/Users/fujie/app/python/oui/openwebui-extensions` |
|
||||
| **Session File** | `~/.copilot/session-state/231b2651-f3bf-4a24-8680-5ad9d2cdcd22` |
|
||||
| **Repository** | Fu-Jie/openwebui-extensions @ `main` |
|
||||
| **Last Active** | 2026-03-16 14:08 |
|
||||
| **Files Modified** | 0 |
|
||||
| **Messages** | 1 |
|
||||
|
||||
|
||||
## Summary
|
||||
|
||||
> Implement RichUI Embed Bridge
|
||||
|
||||
|
||||
## Tool Activity
|
||||
|
||||
### Shell (17 calls)
|
||||
|
||||
> `$ cd /Users/fujie/app/python/oui/openwebui-extensions && git status --short && echo "---" && git log --oneline -3`
|
||||
|
||||
> `$ q`
|
||||
|
||||
> `$ cd /Users/fujie/app/python/oui/openwebui-extensions && git --no-pager status --short --branch`
|
||||
|
||||
> `$ cd /Users/fujie/app/python/oui/openwebui-extensions && diff -u --label main/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py plugins/pipes/github-copilot-sdk/github_copilot_sdk.py --label worktree/.git-worktrees/github-copilot-sdk-richui/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py .git-worktrees/github-copilot-sdk-richui/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py | sed -n '1,260p'`
|
||||
|
||||
> `$ python3 - <<'PY'
|
||||
from pathlib import Path
|
||||
src = Path('/Users/fujie/app/python/oui/openwebui-extensions/.git-worktrees/github-copilot-sdk-richui/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py')
|
||||
dst = Path('/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py')
|
||||
dst.write_text(src.read_text(encoding='utf-8'), encoding='utf-8')
|
||||
print(f'copied {src} -> {dst}')
|
||||
PY
|
||||
cd /Users/fujie/app/python/oui/openwebui-extensions && git --no-pager diff --stat -- plugins/pipes/github-copilot-sdk/github_copilot_sdk.py`
|
||||
|
||||
*...and 12 more shell calls (all exit 0)*
|
||||
|
||||
|
||||
### Edit (10 calls)
|
||||
|
||||
> **``**
|
||||
|
||||
> **``**
|
||||
|
||||
> **``**
|
||||
|
||||
> **``**
|
||||
|
||||
> **``**
|
||||
|
||||
*...and 5 more edits*
|
||||
|
||||
|
||||
### Glob (7 calls)
|
||||
|
||||
- `plan.md`
|
||||
- `**/example.py`
|
||||
- `**/test*github*copilot*sdk*.py`
|
||||
- `**/*github*copilot*sdk*.py`
|
||||
- `plugins/pipes/github-copilot-sdk/tests/**/*.py`
|
||||
- *...and 2 more glob calls*
|
||||
|
||||
|
||||
### MCP (51 calls)
|
||||
|
||||
- `view({"path":"/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk"})`
|
||||
- `view({"path":"/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/github_co)`
|
||||
- `view({"path":"/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/example.p)`
|
||||
- `view({"path":"/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/github_co)`
|
||||
- `view({"path":"/Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/github_co)`
|
||||
- *...and 46 more*
|
||||
|
||||
|
||||
### MCP (20 calls)
|
||||
|
||||
- `report_intent({"intent":"Reviewing RichUI fix"})`
|
||||
- `report_intent({"intent":"Syncing RichUI changes"})`
|
||||
- `report_intent({"intent":"Planning sync work"})`
|
||||
- `report_intent({"intent":"Syncing SDK file"})`
|
||||
- `report_intent({"intent":"Verifying SDK sync"})`
|
||||
- *...and 15 more*
|
||||
|
||||
|
||||
### MCP (1 calls)
|
||||
|
||||
- `stop_bash({"shellId":"0"})`
|
||||
|
||||
|
||||
### MCP (40 calls)
|
||||
|
||||
- `rg({"pattern":"_build_todo_widget_html|_prepare_richui_embed_html|input:prompt:submit|data-prompt|ready)`
|
||||
- `rg({"pattern":"def _prepare_richui_embed_html|def _build_todo_widget_html|def _emit_todo_widget_if_chan)`
|
||||
- `rg({"pattern":"def _prepare_richui_embed_html|RICHUI_BRIDGE_MARKER|RICHUI_BRIDGE_STYLE|RICHUI_BRIDGE_SC)`
|
||||
- `rg({"pattern":"pending_embeds|type\": \"embeds\"|Content-Disposition|inline|richui|_write_todo_widget_h)`
|
||||
- `rg({"pattern":"_emit_todo_widget_if_changed\\(","path":"/Users/fujie/app/python/oui/openwebui-extension)`
|
||||
- *...and 35 more*
|
||||
|
||||
|
||||
### MCP (18 calls)
|
||||
|
||||
- `sql({"description":"Create sync todos","query":"INSERT OR REPLACE INTO todos (id, title, description, st)`
|
||||
- `sql({"description":"Keep compare todo active","query":"UPDATE todos SET status = 'in_progress' WHERE id )`
|
||||
- `sql({"description":"Advance sync todos","query":"UPDATE todos SET status = 'done' WHERE id = 'compare-wo)`
|
||||
- `sql({"description":"Advance verify todo","query":"UPDATE todos SET status = 'done' WHERE id = 'apply-ric)`
|
||||
- `sql({"description":"Complete verification todo","query":"UPDATE todos SET status = 'done' WHERE id = 've)`
|
||||
- *...and 13 more*
|
||||
|
||||
|
||||
### MCP (4 calls)
|
||||
|
||||
- `store_memory({"subject":"richui widgets","fact":"Static RichUI widgets should set data-openwebui-no-default-actio)`
|
||||
- `store_memory({"subject":"richui widgets","fact":"github_copilot_sdk RichUI opt-out markers are optional; fallback)`
|
||||
- `store_memory({"subject":"richui interactions","fact":"RichUI bridge now lets inline onclick own click behavior by)`
|
||||
- `store_memory({"subject":"richui api","fact":"Recommended RichUI interaction contract is 4 actions: data-openwebui)`
|
||||
|
||||
|
||||
### MCP (6 calls)
|
||||
|
||||
- `ide-get_diagnostics({"uri":"file:///Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/git)`
|
||||
- `ide-get_diagnostics({"uri":"file:///Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/git)`
|
||||
- `ide-get_diagnostics({"uri":"file:///Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/git)`
|
||||
- `ide-get_diagnostics({"uri":"file:///Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/git)`
|
||||
- `ide-get_diagnostics({"uri":"file:///Users/fujie/app/python/oui/openwebui-extensions/plugins/pipes/github-copilot-sdk/git)`
|
||||
- *...and 1 more*
|
||||
|
||||
|
||||
|
||||
## Recent Conversation
|
||||
|
||||
### Assistant
|
||||
|
||||
已优化,而且我把交互协议收敛成了 **4 个推荐动作**,专门减少大模型选择困难。
|
||||
|
||||
推荐写法现在是:
|
||||
|
||||
- `data-openwebui-prompt="..."`:立即继续对话
|
||||
- `data-openwebui-prompt="..." data-openwebui-action="fill"`:只填输入框,不发送
|
||||
- `data-openwebui-action="submit"`:提交当前输入框
|
||||
- `data-openwebui-link="https://..."`:打开链接
|
||||
|
||||
JS 推荐也同步收敛为:
|
||||
|
||||
- `window.OpenWebUIBridge.prompt(text)`
|
||||
- `window.OpenWebUIBridge.fill(text)`
|
||||
- `window.OpenWebUIBridge.submit()`
|
||||
- `window.OpenWebUIBridge.openLink(url)`
|
||||
- `window.OpenWebUIBridge.reportHeight()`
|
||||
|
||||
另外我做了两点稳定性优化:
|
||||
|
||||
- `onclick` 默认优先,避免和 de…
|
||||
|
||||
|
||||
## Session Origin
|
||||
|
||||
This session was extracted from **GitHub Copilot CLI** session data.
|
||||
- **Session file**: `~/.copilot/session-state/231b2651-f3bf-4a24-8680-5ad9d2cdcd22`
|
||||
- **Session ID**: `231b2651-f3bf-4a24-8680-5ad9d2cdcd22`
|
||||
- **Project directory**: `/Users/fujie/app/python/oui/openwebui-extensions`
|
||||
|
||||
> To access the raw session data, inspect the file path above.
|
||||
|
||||
---
|
||||
|
||||
**You are continuing this session. Pick up exactly where it left off — review the conversation above, check pending tasks, and keep going.**
|
||||
@@ -133,6 +133,7 @@ Must update ALL of these or the PR check fails:
|
||||
2. **Supported Languages**: en-US, zh-CN, zh-HK, zh-TW, ko-KR, ja-JP, fr-FR, de-DE, es-ES, it-IT, vi-VN, id-ID.
|
||||
3. **Fallback Map**: Must include variant redirects (e.g., `es-MX` -> `es-ES`, `fr-CA` -> `fr-FR`).
|
||||
4. **Tooltips**: All `description` fields in `Valves` must be **English only** to maintain clean UI.
|
||||
5. **Language Consistency**: All authored system prompts and templates MUST enforce that the Agent response language matches the exact same language as the user's input content (e.g., if concept/task input is in Chinese, provide response in Chinese).
|
||||
|
||||
---
|
||||
|
||||
@@ -148,6 +149,10 @@ type(scope): brief English description
|
||||
Types: `feat` / `fix` / `docs` / `refactor` / `chore`
|
||||
Scope: plugin folder name (e.g., `github-copilot-sdk`)
|
||||
|
||||
> [!IMPORTANT]
|
||||
> **Issue Association**:
|
||||
> If the changes are related to or fix a GitHub Issue/PR, **MUST** explicitly link and associate it in both Release Notes docs (`v1.x.md`) and Commit Messages Body/Footers (e.g. `(fixes #123)`). Sync those references on GitHub Releases Page bodies when publishing.
|
||||
|
||||
---
|
||||
|
||||
## Full Reference
|
||||
|
||||
34
README.md
34
README.md
@@ -23,12 +23,12 @@ A collection of enhancements, plugins, and prompts for [open-webui](https://gith
|
||||
### 🔥 Top 6 Popular Plugins
|
||||
| Rank | Plugin | Version | Downloads | Views | 📅 Updated |
|
||||
| :---: | :--- | :---: | :---: | :---: | :---: |
|
||||
| 🥇 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) |  |  |  |  |
|
||||
| 🥈 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) |  |  |  |  |
|
||||
| 🥉 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) |  |  |  |  |
|
||||
| 4️⃣ | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) |  |  |  |  |
|
||||
| 5️⃣ | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) |  |  |  |  |
|
||||
| 6️⃣ | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) |  |  |  |  |
|
||||
| 🥇 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) |  |  |  |  |
|
||||
| 🥈 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) |  |  |  |  |
|
||||
| 🥉 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) |  |  |  |  |
|
||||
| 4️⃣ | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) |  |  |  |  |
|
||||
| 5️⃣ | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) |  |  |  |  |
|
||||
| 6️⃣ | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) |  |  |  |  |
|
||||
|
||||
### 📈 Total Downloads Trend
|
||||

|
||||
@@ -38,21 +38,17 @@ A collection of enhancements, plugins, and prompts for [open-webui](https://gith
|
||||
|
||||
## 🌟 Star Features
|
||||
|
||||
### 1. [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4)    
|
||||
### 1. [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4)    
|
||||
|
||||
**The ultimate autonomous Agent integration for OpenWebUI.** Deeply bridging GitHub Copilot SDK with your OpenWebUI ecosystem. It enables the Agent to autonomously perform **intent recognition**, **web search**, and **context compaction** while reusing your existing tools, skills, and configurations for a professional, full-featured experience.
|
||||
|
||||
> [!TIP]
|
||||
> **No GitHub Copilot subscription required!** Supports **BYOK (Bring Your Own Key)** mode using your own OpenAI/Anthropic API keys.
|
||||
|
||||
#### 🚀 Key Leap (v0.10.0)
|
||||
#### 🚀 Key Leap (v0.12.1)
|
||||
|
||||
- **⌨️ Prompt Enhancement**: Restored native Copilot CLI **Plan Mode** for complex tasks and integrated native SQLite-backed session management for robust state persistence.
|
||||
- **📋 Live TODO Widget**: Added a compact real-time task tracking widget synchronized with `session.db`, keeping in-progress work visible without cluttering the chat history.
|
||||
- **🔌 Seamless Ecosystem Integration**: Automatically injects and reuses your OpenWebUI **Tools**, **MCP**, **OpenAPI Servers**, and **Skills**, significantly enhancing the Agent's capabilities through your existing setup.
|
||||
- **🌐 Language Consistency**: System prompts mandate that Agent output language remains strictly consistent with user input.
|
||||
- **🧩 Skills Revolution**: Native support for **SKILL directories** and a **Bidirectional Bridge** to OpenWebUI Workspace Skills.
|
||||
- **🛡️ Secure Isolation**: Strict user/session-level **Workspace Sandboxing** with persistent configuration.
|
||||
- **🛡️ Disable Terminal Tools for AI**: Terminal server tools are now filtered out at the pipe level, preventing AI from calling them while keeping terminal functionality available to users.
|
||||
- **🎨 RichUI Theme-Aware CSS Variables**: Added CSS custom properties that automatically adapt to light/dark themes for better text contrast.
|
||||
- **📊 Interactive Delivery**: Full support for **HTML Artifacts** and **RichUI** rendering, providing instant interactive previews and persistent downloadable results.
|
||||
- **🛠️ Deterministic Toolchain**: Built-in specialized tools for skill lifecycles (`manage_skills`) and system optimization.
|
||||
|
||||
@@ -78,10 +74,14 @@ A collection of enhancements, plugins, and prompts for [open-webui](https://gith
|
||||
|
||||
**Experience interactive thinking.** Seamlessly transforms complex chat sessions into structured, clickable mind maps for better visual modeling and rapid idea extraction.
|
||||
|
||||

|
||||
|
||||
### 3. [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f)
|
||||
|
||||
**Professional data storytelling.** Converts raw information into sleek, boardroom-ready infographics powered by AntV, perfect for summarizing long-form content instantly.
|
||||
|
||||

|
||||
|
||||
### 4. [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315)
|
||||
|
||||
**High-fidelity reporting.** Export conversation history into professionally formatted Word documents with preserved headers, code blocks, and math formulas.
|
||||
@@ -131,11 +131,11 @@ Located in the `plugins/` directory, containing Python-based enhancements:
|
||||
|
||||
### Pipes
|
||||
|
||||
- **GitHub Copilot SDK** (`github-copilot-sdk`): Official GitHub Copilot SDK integration. Supports dynamic models (GPT-4o, Claude 3.5, o1), multi-turn conversation, streaming, and infinite sessions.
|
||||
- **GitHub Copilot SDK** (`github-copilot-sdk`): Official GitHub Copilot SDK integration (v0.12.0). Supports dynamic models (GPT-4o, Claude 3.7, o1), multi-turn conversation, and high-performance process pooling.
|
||||
|
||||
### Pipelines
|
||||
|
||||
- **MoE Prompt Refiner** (`moe_prompt_refiner`): Refines prompts for Mixture of Experts (MoE) summary requests to generate high-quality comprehensive reports.
|
||||
- **Wisdom Synthesizer** (`wisdom_synthesizer`): An external pipeline filter that refactors aggregate requests with collective wisdom to output structured expert reports.
|
||||
|
||||
</details>
|
||||
<!-- markdownlint-enable MD033 -->
|
||||
@@ -159,6 +159,8 @@ Standalone frontend extensions to supercharge your Open WebUI:
|
||||
|
||||
[](https://openwebui.com/blog/newsletter-january-28-2026): An all-in-one prompt management suite featuring AI-powered prompt generation, spotlight-style quick search, and advanced category organization.
|
||||
|
||||

|
||||
|
||||
## 📖 Documentation
|
||||
|
||||
Located in the `docs/en/` directory:
|
||||
|
||||
34
README_CN.md
34
README_CN.md
@@ -20,12 +20,12 @@ OpenWebUI 增强功能集合。包含个人开发与收集的插件、提示词
|
||||
### 🔥 热门插件 Top 6
|
||||
| 排名 | 插件 | 版本 | 下载 | 浏览 | 📅 更新 |
|
||||
| :---: | :--- | :---: | :---: | :---: | :---: |
|
||||
| 🥇 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) |  |  |  |  |
|
||||
| 🥈 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) |  |  |  |  |
|
||||
| 🥉 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) |  |  |  |  |
|
||||
| 4️⃣ | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) |  |  |  |  |
|
||||
| 5️⃣ | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) |  |  |  |  |
|
||||
| 6️⃣ | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) |  |  |  |  |
|
||||
| 🥇 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) |  |  |  |  |
|
||||
| 🥈 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) |  |  |  |  |
|
||||
| 🥉 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) |  |  |  |  |
|
||||
| 4️⃣ | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) |  |  |  |  |
|
||||
| 5️⃣ | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) |  |  |  |  |
|
||||
| 6️⃣ | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) |  |  |  |  |
|
||||
|
||||
### 📈 总下载量累计趋势
|
||||

|
||||
@@ -42,16 +42,10 @@ OpenWebUI 增强功能集合。包含个人开发与收集的插件、提示词
|
||||
> [!TIP]
|
||||
> **无需 GitHub Copilot 订阅!** 支持 **BYOK (Bring Your Own Key)** 模式,使用你自己的 OpenAI/Anthropic API Key。
|
||||
|
||||
#### 🚀 核心进化 (v0.10.1)
|
||||
#### 🚀 核心进化 (v0.12.1)
|
||||
|
||||
- **⌨️ 提示词增强**:恢复了原生 Copilot CLI **原生计划模式 (Native Plan Mode)**,并集成了基于 SQLite 的原生会话持久化管理,确保复杂任务编排与状态追踪的稳定性。
|
||||
- **📋 Live TODO 小组件**:新增基于 `session.db` 实时任务状态的紧凑型嵌入式 TODO 小组件,任务进度常驻可见,无需在正文中重复显示全部待办列表。
|
||||
- **🔌 生态深度注入**: 自动读取并复用 OpenWebUI **工具 (Tools)**、**MCP**、**OpenAPI Server** 与 **技能 (Skills)**,显著增强 Agent 的实战能力。
|
||||
- **🧩 技能革命**: 原生支持 **SKILL 目录**,并实现与 OpenWebUI **工作区 > Skills** 的深度双向桥接。
|
||||
- **🛡️ 安全沙箱**: 严格的用户/会话级 **工作区隔离** 与持久化配置环境。
|
||||
- **📊 交互交付**: 完整支持 **HTML Artifacts** 与 **RichUI** 渲染,提供即时预览交互式应用程序与持久化结果下载。
|
||||
- **🛠️ 确定性工具链**: 内置 `manage_skills` 等专业工具,赋予 Agent 完整的技能生命周期管理能力。
|
||||
- **🌐 语言一致性**: 提示词强制要求 Agent 输出语言与用户输入保持一致,确保国际化体验。
|
||||
- **🛡️ 禁用终端工具 AI 调用**: 终端服务器工具已在管道层面被过滤,AI 无法调用这些工具,但用户仍可通过界面使用终端功能。
|
||||
- **🎨 RichUI 主题感知 CSS 变量**: 新增 CSS 自定义属性,自动适配浅色/深色主题,改善文字对比度。
|
||||
|
||||
> [!TIP]
|
||||
> **💡 进阶实战建议**
|
||||
@@ -75,10 +69,14 @@ OpenWebUI 增强功能集合。包含个人开发与收集的插件、提示词
|
||||
|
||||
**体验浸入式思维。** 将复杂的对话瞬间转化为结构化、可点击的交互式思维导图,助力知识建模与逻辑提取。
|
||||
|
||||

|
||||
|
||||
### 3. [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) [](https://openwebui.com/posts/smart_infographic_ad6f0c7f)
|
||||
|
||||
**专业数据叙事。** 将零散信息转化为精美的信息图表(由 AntV 驱动),一键生成学术/汇报级的可视化总结。
|
||||
|
||||

|
||||
|
||||
### 4. [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) [](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315)
|
||||
|
||||
**高保真文档导出。** 将对话历史导出为格式完美的 Word 文档,完美保留标题、代码块、LaTeX 公式及 Mermaid 流程图。
|
||||
@@ -128,11 +126,11 @@ OpenWebUI 增强功能集合。包含个人开发与收集的插件、提示词
|
||||
|
||||
### Pipes (模型管道)
|
||||
|
||||
- **GitHub Copilot SDK** (`github-copilot-sdk`): 深度集成 GitHub Copilot SDK 的强大 Agent。支持智能意图识别、自主网页搜索与上下文压缩,并能够无缝复用 OpenWebUI 的工具 (Tools)、MCP 与 OpenAPI Server。
|
||||
- **GitHub Copilot SDK** (`github-copilot-sdk`): 深度集成 GitHub Copilot SDK 的强大 Agent (v0.12.1)。支持高性能进程池优化、纯 BYOK 模式、智能意图识别、自主网页搜索与上下文压缩。
|
||||
|
||||
### Pipelines (工作流管道)
|
||||
|
||||
- **MoE Prompt Refiner** (`moe_prompt_refiner`): 优化多模型 (MoE) 汇总请求的提示词,生成高质量的综合报告。
|
||||
- **Wisdom Synthesizer** (`wisdom_synthesizer`): 智能拦截并重塑多模型汇总请求,发挥集体智慧(Collective Wisdom),将常规汇总熔炼为专家级对比报告。
|
||||
|
||||
</details>
|
||||
<!-- markdownlint-enable MD033 -->
|
||||
@@ -154,6 +152,8 @@ Open WebUI 的前端增强扩展:
|
||||
|
||||
- **[Open WebUI Prompt Plus](https://github.com/Fu-Jie/open-webui-prompt-plus)** [](https://openwebui.com/blog/newsletter-january-28-2026):一站式提示词管理套件,支持 AI 提示词生成、Spotlight 风格快速搜索及高级分类管理。
|
||||
|
||||

|
||||
|
||||
## 📖 开发文档
|
||||
|
||||
<!-- markdownlint-disable MD033 -->
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<!--
|
||||
NOTE: This template is for the English version (README.md).
|
||||
The Chinese version (README_CN.md) MUST be translated based on this English version to ensure consistency in structure and content.
|
||||
The Chinese version (README_CN.md) MUST be translated from this file so both versions keep the same structure and installation guidance.
|
||||
-->
|
||||
# [Plugin Name] [Optional Emoji]
|
||||
# [Plugin Name]
|
||||
|
||||
[Brief description of what the plugin does. Keep it concise and engaging.]
|
||||
[One-sentence summary of what the plugin does and why it is useful.]
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.0.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
@@ -12,46 +12,65 @@ The Chinese version (README_CN.md) MUST be translated based on this English vers
|
||||
|  |  |  |  |  |  |  |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
|
||||
## Preview
|
||||
|
||||
<!-- Add a screenshot or description here -->
|
||||
<!-- If you have a screenshot, add it as:  -->
|
||||
<!-- If you do not have a screenshot yet, replace with one short sentence explaining what users will see. -->
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New
|
||||
|
||||
<!-- Keep only the latest update here. Remove this section for the initial release. -->
|
||||
<!-- Keep only the latest 1-3 versions here. Remove this section for the initial release. -->
|
||||
|
||||
### v1.0.0
|
||||
|
||||
- **Initial Release**: Released the first version of the plugin.
|
||||
- **[Feature Name]**: [Brief description of the feature].
|
||||
|
||||
## Key Features 🔑
|
||||
## Key Features
|
||||
|
||||
- **[Feature 1]**: [Description of feature 1].
|
||||
- **[Feature 2]**: [Description of feature 2].
|
||||
- **[Feature 3]**: [Description of feature 3].
|
||||
|
||||
## How to Use 🛠️
|
||||
## How to Use
|
||||
|
||||
1. **Install**: Add the plugin to your OpenWebUI instance.
|
||||
2. **Configure**: Adjust settings in the Valves menu (optional).
|
||||
3. **[Action Step]**: Describe how to trigger or use the plugin.
|
||||
4. **[Result Step]**: Describe the expected outcome.
|
||||
1. **Install**: Add the plugin to your OpenWebUI instance from the marketplace, or use the Batch Install prompt above.
|
||||
2. **Configure**: Adjust settings in the Valves menu if needed.
|
||||
3. **Use**: Describe how to trigger or run the plugin.
|
||||
4. **Result**: Describe what users should expect to see.
|
||||
|
||||
## Configuration (Valves) ⚙️
|
||||
## Configuration (Valves)
|
||||
|
||||
| Valve | Default | Description |
|
||||
|-------|---------|-------------|
|
||||
| --- | --- | --- |
|
||||
| `VALVE_NAME` | `Default Value` | Description of what this setting does. |
|
||||
| `ANOTHER_VALVE` | `True` | Another setting description. |
|
||||
|
||||
## ⭐ Support
|
||||
## Troubleshooting
|
||||
|
||||
- **Plugin not working?**: Check if the filter, action, pipe, or tool is enabled in the relevant OpenWebUI settings.
|
||||
- **Debug Logs**: Enable the debug valve if available and check the browser console (F12) or backend logs.
|
||||
- **Official version conflict**: If installation fails because the same plugin already exists from the official marketplace, remove the old version first and try again.
|
||||
- **Submit an Issue**: If the problem continues, report it here: [OpenWebUI Extensions Issues](https://github.com/Fu-Jie/openwebui-extensions/issues)
|
||||
|
||||
## Support
|
||||
|
||||
If this plugin has been useful, a star on [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions) is a big motivation for me. Thank you for the support.
|
||||
|
||||
## Troubleshooting ❓
|
||||
|
||||
- **Plugin not working?**: Check if the filter/action is enabled in the model settings.
|
||||
- **Debug Logs**: Enable `SHOW_DEBUG_LOG` in Valves and check the browser console (F12) for detailed logs.
|
||||
- **Error Messages**: If you see an error, please copy the full error message and report it.
|
||||
- **Submit an Issue**: If you encounter any problems, please submit an issue on GitHub: [OpenWebUI Extensions Issues](https://github.com/Fu-Jie/openwebui-extensions/issues)
|
||||
|
||||
## Changelog
|
||||
|
||||
See the full history on GitHub: [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "contributions",
|
||||
"message": "21",
|
||||
"message": "22",
|
||||
"color": "green"
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "downloads",
|
||||
"message": "9.5k",
|
||||
"message": "11.0k",
|
||||
"color": "blue",
|
||||
"namedLogo": "openwebui"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "followers",
|
||||
"message": "367",
|
||||
"message": "426",
|
||||
"color": "blue"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "plugins",
|
||||
"message": "28",
|
||||
"message": "30",
|
||||
"color": "green"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "points",
|
||||
"message": "378",
|
||||
"message": "408",
|
||||
"color": "orange"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "saves",
|
||||
"message": "428",
|
||||
"message": "469",
|
||||
"color": "lightgrey"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "upvotes",
|
||||
"message": "315",
|
||||
"message": "350",
|
||||
"color": "brightgreen"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"label": "views",
|
||||
"message": "99.8k",
|
||||
"message": "118.4k",
|
||||
"color": "blueviolet"
|
||||
}
|
||||
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"total_posts": 28,
|
||||
"total_downloads": 9491,
|
||||
"total_views": 99759,
|
||||
"total_upvotes": 315,
|
||||
"total_downvotes": 4,
|
||||
"total_saves": 428,
|
||||
"total_comments": 79,
|
||||
"plugin_contributions": 21,
|
||||
"total_posts": 30,
|
||||
"total_downloads": 10953,
|
||||
"total_views": 118430,
|
||||
"total_upvotes": 350,
|
||||
"total_downvotes": 16,
|
||||
"total_saves": 469,
|
||||
"total_comments": 98,
|
||||
"plugin_contributions": 22,
|
||||
"by_type": {
|
||||
"action": 13,
|
||||
"tool": 2,
|
||||
"tool": 3,
|
||||
"pipe": 1,
|
||||
"filter": 4,
|
||||
"prompt": 1
|
||||
"action": 12,
|
||||
"prompt": 2
|
||||
},
|
||||
"posts": [
|
||||
{
|
||||
@@ -22,31 +22,31 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Intelligently analyzes text content and generates interactive mind maps to help users structure and visualize knowledge.",
|
||||
"downloads": 1852,
|
||||
"views": 15897,
|
||||
"upvotes": 32,
|
||||
"saves": 77,
|
||||
"downloads": 2068,
|
||||
"views": 18359,
|
||||
"upvotes": 35,
|
||||
"saves": 82,
|
||||
"comments": 23,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a"
|
||||
},
|
||||
{
|
||||
"title": "Smart Infographic",
|
||||
"slug": "smart_infographic_ad6f0c7f",
|
||||
"type": "action",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.1",
|
||||
"author": "Fu-Jie",
|
||||
"description": "AI-powered infographic generator based on AntV Infographic. Supports professional templates, auto-icon matching, and SVG/PNG downloads.",
|
||||
"downloads": 1392,
|
||||
"views": 13891,
|
||||
"upvotes": 28,
|
||||
"saves": 54,
|
||||
"downloads": 1537,
|
||||
"views": 15674,
|
||||
"upvotes": 30,
|
||||
"saves": 61,
|
||||
"comments": 12,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/smart_infographic_ad6f0c7f"
|
||||
},
|
||||
{
|
||||
@@ -56,31 +56,31 @@
|
||||
"version": "1.2.8",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A content normalizer filter that fixes common Markdown formatting issues in LLM outputs, such as broken code blocks, LaTeX formulas, and list formatting. Including LaTeX command protection.",
|
||||
"downloads": 871,
|
||||
"views": 8976,
|
||||
"upvotes": 21,
|
||||
"saves": 47,
|
||||
"comments": 5,
|
||||
"downloads": 983,
|
||||
"views": 10070,
|
||||
"upvotes": 27,
|
||||
"saves": 52,
|
||||
"comments": 6,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-12",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/markdown_normalizer_baaa8732"
|
||||
},
|
||||
{
|
||||
"title": "Async Context Compression",
|
||||
"slug": "async_context_compression_b1655bc8",
|
||||
"type": "filter",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Reduces token consumption in long conversations while maintaining coherence through intelligent summarization and message compression.",
|
||||
"downloads": 842,
|
||||
"views": 7568,
|
||||
"upvotes": 18,
|
||||
"saves": 55,
|
||||
"downloads": 964,
|
||||
"views": 8804,
|
||||
"upvotes": 22,
|
||||
"saves": 57,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-11-08",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/async_context_compression_b1655bc8"
|
||||
},
|
||||
{
|
||||
@@ -90,14 +90,14 @@
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Export current conversation from Markdown to Word (.docx) with Mermaid diagrams rendered client-side (Mermaid.js, SVG+PNG), LaTeX math, real hyperlinks, improved tables, syntax highlighting, and blockquote support.",
|
||||
"downloads": 822,
|
||||
"views": 6340,
|
||||
"upvotes": 21,
|
||||
"saves": 42,
|
||||
"comments": 5,
|
||||
"downloads": 940,
|
||||
"views": 7413,
|
||||
"upvotes": 22,
|
||||
"saves": 41,
|
||||
"comments": 8,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-03",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315"
|
||||
},
|
||||
{
|
||||
@@ -107,33 +107,16 @@
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 740,
|
||||
"views": 8152,
|
||||
"upvotes": 10,
|
||||
"saves": 23,
|
||||
"downloads": 874,
|
||||
"views": 9652,
|
||||
"upvotes": 11,
|
||||
"saves": 28,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-28",
|
||||
"updated_at": "2026-01-28",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37"
|
||||
},
|
||||
{
|
||||
"title": "Export to Excel",
|
||||
"slug": "export_mulit_table_to_excel_244b8f9d",
|
||||
"type": "action",
|
||||
"version": "0.3.7",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Extracts tables from chat messages and exports them to Excel (.xlsx) files with smart formatting.",
|
||||
"downloads": 626,
|
||||
"views": 3609,
|
||||
"upvotes": 12,
|
||||
"saves": 13,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-05-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"url": "https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d"
|
||||
},
|
||||
{
|
||||
"title": "OpenWebUI Skills Manager Tool",
|
||||
"slug": "openwebui_skills_manager_tool_b4bce8e4",
|
||||
@@ -141,31 +124,48 @@
|
||||
"version": "0.3.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Standalone OpenWebUI tool for managing native Workspace Skills (list/show/install/create/update/delete) for any model.",
|
||||
"downloads": 543,
|
||||
"views": 6549,
|
||||
"upvotes": 8,
|
||||
"saves": 27,
|
||||
"downloads": 699,
|
||||
"views": 8430,
|
||||
"upvotes": 10,
|
||||
"saves": 31,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-02-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4"
|
||||
},
|
||||
{
|
||||
"title": "Export to Excel",
|
||||
"slug": "export_mulit_table_to_excel_244b8f9d",
|
||||
"type": "action",
|
||||
"version": "0.3.7",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Extracts tables from chat messages and exports them to Excel (.xlsx) files with smart formatting.",
|
||||
"downloads": 685,
|
||||
"views": 4194,
|
||||
"upvotes": 13,
|
||||
"saves": 13,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-05-30",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d"
|
||||
},
|
||||
{
|
||||
"title": "GitHub Copilot Official SDK Pipe",
|
||||
"slug": "github_copilot_official_sdk_pipe_ce96f7b4",
|
||||
"type": "pipe",
|
||||
"version": "0.10.1",
|
||||
"version": "0.12.1",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A powerful Agent SDK integration for OpenWebUI. It deeply bridges GitHub Copilot SDK with OpenWebUI's ecosystem, enabling the Agent to autonomously perform intent recognition, web search, and context compaction. It seamlessly reuses your existing Tools, MCP servers, OpenAPI servers, and Skills for a professional, full-featured experience.",
|
||||
"downloads": 410,
|
||||
"views": 5867,
|
||||
"upvotes": 16,
|
||||
"downloads": 465,
|
||||
"views": 6732,
|
||||
"upvotes": 17,
|
||||
"saves": 12,
|
||||
"comments": 8,
|
||||
"comments": 19,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-26",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4"
|
||||
},
|
||||
{
|
||||
@@ -175,14 +175,14 @@
|
||||
"version": "0.2.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Quickly generates beautiful flashcards from text, extracting key points and categories.",
|
||||
"downloads": 340,
|
||||
"views": 4824,
|
||||
"downloads": 368,
|
||||
"views": 5224,
|
||||
"upvotes": 13,
|
||||
"saves": 23,
|
||||
"comments": 2,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/flash_card_65a2ea8f"
|
||||
},
|
||||
{
|
||||
@@ -192,33 +192,16 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A comprehensive thinking lens that dives deep into any content - from context to logic, insights, and action paths.",
|
||||
"downloads": 240,
|
||||
"views": 1943,
|
||||
"downloads": 264,
|
||||
"views": 2166,
|
||||
"upvotes": 7,
|
||||
"saves": 15,
|
||||
"saves": 17,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-08",
|
||||
"updated_at": "2026-01-08",
|
||||
"url": "https://openwebui.com/posts/deep_dive_c0b846e4"
|
||||
},
|
||||
{
|
||||
"title": "导出为Word增强版",
|
||||
"slug": "导出为_word_支持公式流程图表格和代码块_8a6306c0",
|
||||
"type": "action",
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "将对话导出为 Word (.docx),支持 Mermaid 图表 (客户端渲染 SVG+PNG)、LaTeX 数学公式、真实超链接、增强表格格式、代码高亮和引用块。",
|
||||
"downloads": 173,
|
||||
"views": 3088,
|
||||
"upvotes": 14,
|
||||
"saves": 7,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-04",
|
||||
"updated_at": "2026-03-15",
|
||||
"url": "https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0"
|
||||
},
|
||||
{
|
||||
"title": "🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs",
|
||||
"slug": "smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d",
|
||||
@@ -226,16 +209,50 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Intelligently analyzes text content and generates interactive mind maps to help users structure and visualize knowledge.",
|
||||
"downloads": 141,
|
||||
"views": 2607,
|
||||
"upvotes": 6,
|
||||
"saves": 6,
|
||||
"downloads": 224,
|
||||
"views": 3392,
|
||||
"upvotes": 7,
|
||||
"saves": 10,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-04",
|
||||
"updated_at": "2026-03-05",
|
||||
"url": "https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d"
|
||||
},
|
||||
{
|
||||
"title": "Batch Install Plugins from GitHub",
|
||||
"slug": "batch_install_plugins_install_popular_plugins_in_s_c9fd6e80",
|
||||
"type": "tool",
|
||||
"version": "1.1.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "One-click batch install plugins from one or more GitHub repositories to your OpenWebUI instance. If a user mentions multiple repositories in one request, combine them into a single tool call.",
|
||||
"downloads": 188,
|
||||
"views": 4143,
|
||||
"upvotes": 9,
|
||||
"saves": 8,
|
||||
"comments": 6,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80"
|
||||
},
|
||||
{
|
||||
"title": "导出为Word增强版",
|
||||
"slug": "导出为_word_支持公式流程图表格和代码块_8a6306c0",
|
||||
"type": "action",
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "将对话导出为 Word (.docx),支持 Mermaid 图表 (客户端渲染 SVG+PNG)、LaTeX 数学公式、真实超链接、增强表格格式、代码高亮和引用块。",
|
||||
"downloads": 181,
|
||||
"views": 3300,
|
||||
"upvotes": 14,
|
||||
"saves": 7,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-04",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0"
|
||||
},
|
||||
{
|
||||
"title": "📂 Folder Memory – Auto-Evolving Project Context",
|
||||
"slug": "folder_memory_auto_evolving_project_context_4a9875b2",
|
||||
@@ -243,10 +260,10 @@
|
||||
"version": "0.1.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Automatically extracts project rules from conversations and injects them into the folder's system prompt.",
|
||||
"downloads": 133,
|
||||
"views": 2215,
|
||||
"downloads": 143,
|
||||
"views": 2404,
|
||||
"upvotes": 7,
|
||||
"saves": 13,
|
||||
"saves": 15,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-20",
|
||||
@@ -260,14 +277,14 @@
|
||||
"version": "0.1.3",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A specialized filter to bypass OpenWebUI's default RAG for GitHub Copilot SDK models. It moves uploaded files to a safe location ('copilot_files') so the Copilot Pipe can process them natively without interference.",
|
||||
"downloads": 96,
|
||||
"views": 2505,
|
||||
"upvotes": 4,
|
||||
"downloads": 102,
|
||||
"views": 2649,
|
||||
"upvotes": 5,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-02-09",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee"
|
||||
},
|
||||
{
|
||||
@@ -277,14 +294,14 @@
|
||||
"version": "1.5.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "基于 AntV Infographic 的智能信息图生成插件。支持多种专业模板,自动图标匹配,并提供 SVG/PNG 下载功能。",
|
||||
"downloads": 72,
|
||||
"views": 1605,
|
||||
"downloads": 75,
|
||||
"views": 1756,
|
||||
"upvotes": 10,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/智能信息图_e04a48ff"
|
||||
},
|
||||
{
|
||||
@@ -294,8 +311,8 @@
|
||||
"version": "0.9.2",
|
||||
"author": "Fu-Jie",
|
||||
"description": "智能分析文本内容,生成交互式思维导图,帮助用户结构化和可视化知识。",
|
||||
"downloads": 57,
|
||||
"views": 835,
|
||||
"downloads": 60,
|
||||
"views": 878,
|
||||
"upvotes": 6,
|
||||
"saves": 2,
|
||||
"comments": 0,
|
||||
@@ -311,8 +328,8 @@
|
||||
"version": "1.2.2",
|
||||
"author": "Fu-Jie",
|
||||
"description": "通过智能摘要和消息压缩,降低长对话的 token 消耗,同时保持对话连贯性。",
|
||||
"downloads": 44,
|
||||
"views": 918,
|
||||
"downloads": 49,
|
||||
"views": 966,
|
||||
"upvotes": 7,
|
||||
"saves": 5,
|
||||
"comments": 0,
|
||||
@@ -328,8 +345,8 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "全方位的思维透镜 —— 从背景全景到逻辑脉络,从深度洞察到行动路径。",
|
||||
"downloads": 38,
|
||||
"views": 724,
|
||||
"downloads": 39,
|
||||
"views": 753,
|
||||
"upvotes": 5,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
@@ -345,32 +362,49 @@
|
||||
"version": "0.2.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "快速将文本提炼为精美的学习记忆卡片,支持核心要点提取与分类。",
|
||||
"downloads": 34,
|
||||
"views": 949,
|
||||
"downloads": 37,
|
||||
"views": 1038,
|
||||
"upvotes": 7,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/闪记卡生成插件_4a31eac3"
|
||||
},
|
||||
{
|
||||
"title": "Batch Install Plugins from GitHub",
|
||||
"slug": "batch_install_plugins_install_popular_plugins_in_s_c9fd6e80",
|
||||
"type": "action",
|
||||
"version": "1.1.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "One-click batch install plugins from GitHub repositories to your OpenWebUI instance.",
|
||||
"downloads": 25,
|
||||
"views": 697,
|
||||
"upvotes": 4,
|
||||
"saves": 3,
|
||||
"comments": 2,
|
||||
"title": "🔍 One-Sentence Concept Explainer",
|
||||
"slug": "one_sentence_concept_explainer_79be55d3",
|
||||
"type": "prompt",
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 8,
|
||||
"views": 433,
|
||||
"upvotes": 1,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-15",
|
||||
"updated_at": "2026-03-16",
|
||||
"url": "https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80"
|
||||
"created_at": "2026-03-22",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/one_sentence_concept_explainer_79be55d3"
|
||||
},
|
||||
{
|
||||
"title": "🧠 Wisdom Synthesizer (Collective Wisdom Synthesizer)",
|
||||
"slug": "wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe",
|
||||
"type": "action",
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 442,
|
||||
"upvotes": 1,
|
||||
"saves": 2,
|
||||
"comments": 0,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-03-22",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe"
|
||||
},
|
||||
{
|
||||
"title": "An Unconventional Use of Open Terminal ⚡",
|
||||
@@ -380,9 +414,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 3490,
|
||||
"upvotes": 7,
|
||||
"saves": 1,
|
||||
"views": 3828,
|
||||
"upvotes": 8,
|
||||
"saves": 3,
|
||||
"comments": 2,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-03-06",
|
||||
@@ -397,8 +431,8 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 1850,
|
||||
"upvotes": 5,
|
||||
"views": 1902,
|
||||
"upvotes": 6,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": false,
|
||||
@@ -414,8 +448,8 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2827,
|
||||
"upvotes": 8,
|
||||
"views": 2917,
|
||||
"upvotes": 9,
|
||||
"saves": 4,
|
||||
"comments": 1,
|
||||
"is_published_plugin": false,
|
||||
@@ -431,7 +465,7 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2454,
|
||||
"views": 2472,
|
||||
"upvotes": 7,
|
||||
"saves": 5,
|
||||
"comments": 0,
|
||||
@@ -448,9 +482,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2042,
|
||||
"upvotes": 14,
|
||||
"saves": 24,
|
||||
"views": 2165,
|
||||
"upvotes": 15,
|
||||
"saves": 27,
|
||||
"comments": 9,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-01-25",
|
||||
@@ -465,7 +499,7 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 273,
|
||||
"views": 279,
|
||||
"upvotes": 2,
|
||||
"saves": 0,
|
||||
"comments": 0,
|
||||
@@ -482,9 +516,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 1599,
|
||||
"upvotes": 16,
|
||||
"saves": 13,
|
||||
"views": 1640,
|
||||
"upvotes": 17,
|
||||
"saves": 14,
|
||||
"comments": 2,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-01-10",
|
||||
@@ -497,11 +531,11 @@
|
||||
"name": "Fu-Jie",
|
||||
"profile_url": "https://openwebui.com/u/Fu-Jie",
|
||||
"profile_image": "https://community.s3.openwebui.com/uploads/users/b15d1348-4347-42b4-b815-e053342d6cb0/profile_d9510745-4bd4-4f8f-a997-4a21847d9300.webp",
|
||||
"followers": 367,
|
||||
"following": 7,
|
||||
"total_points": 378,
|
||||
"post_points": 314,
|
||||
"comment_points": 64,
|
||||
"contributions": 76
|
||||
"followers": 426,
|
||||
"following": 9,
|
||||
"total_points": 408,
|
||||
"post_points": 337,
|
||||
"comment_points": 71,
|
||||
"contributions": 89
|
||||
}
|
||||
}
|
||||
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"total_posts": 28,
|
||||
"total_downloads": 9409,
|
||||
"total_views": 98746,
|
||||
"total_upvotes": 312,
|
||||
"total_downvotes": 4,
|
||||
"total_saves": 424,
|
||||
"total_comments": 78,
|
||||
"plugin_contributions": 21,
|
||||
"total_posts": 30,
|
||||
"total_downloads": 10945,
|
||||
"total_views": 118210,
|
||||
"total_upvotes": 350,
|
||||
"total_downvotes": 16,
|
||||
"total_saves": 469,
|
||||
"total_comments": 98,
|
||||
"plugin_contributions": 22,
|
||||
"by_type": {
|
||||
"tool": 3,
|
||||
"pipe": 1,
|
||||
"action": 12,
|
||||
"filter": 4,
|
||||
"prompt": 1
|
||||
"action": 12,
|
||||
"prompt": 2,
|
||||
"pipe": 1
|
||||
},
|
||||
"posts": [
|
||||
{
|
||||
@@ -22,31 +22,31 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Intelligently analyzes text content and generates interactive mind maps to help users structure and visualize knowledge.",
|
||||
"downloads": 1841,
|
||||
"views": 15798,
|
||||
"upvotes": 32,
|
||||
"saves": 76,
|
||||
"downloads": 2064,
|
||||
"views": 18332,
|
||||
"upvotes": 35,
|
||||
"saves": 82,
|
||||
"comments": 23,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a"
|
||||
},
|
||||
{
|
||||
"title": "Smart Infographic",
|
||||
"slug": "smart_infographic_ad6f0c7f",
|
||||
"type": "action",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.1",
|
||||
"author": "Fu-Jie",
|
||||
"description": "AI-powered infographic generator based on AntV Infographic. Supports professional templates, auto-icon matching, and SVG/PNG downloads.",
|
||||
"downloads": 1383,
|
||||
"views": 13816,
|
||||
"upvotes": 28,
|
||||
"saves": 54,
|
||||
"downloads": 1535,
|
||||
"views": 15655,
|
||||
"upvotes": 30,
|
||||
"saves": 61,
|
||||
"comments": 12,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/smart_infographic_ad6f0c7f"
|
||||
},
|
||||
{
|
||||
@@ -56,31 +56,31 @@
|
||||
"version": "1.2.8",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A content normalizer filter that fixes common Markdown formatting issues in LLM outputs, such as broken code blocks, LaTeX formulas, and list formatting. Including LaTeX command protection.",
|
||||
"downloads": 867,
|
||||
"views": 8939,
|
||||
"upvotes": 21,
|
||||
"saves": 47,
|
||||
"comments": 5,
|
||||
"downloads": 983,
|
||||
"views": 10060,
|
||||
"upvotes": 27,
|
||||
"saves": 52,
|
||||
"comments": 6,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-12",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/markdown_normalizer_baaa8732"
|
||||
},
|
||||
{
|
||||
"title": "Async Context Compression",
|
||||
"slug": "async_context_compression_b1655bc8",
|
||||
"type": "filter",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Reduces token consumption in long conversations while maintaining coherence through intelligent summarization and message compression.",
|
||||
"downloads": 835,
|
||||
"views": 7511,
|
||||
"upvotes": 18,
|
||||
"saves": 55,
|
||||
"downloads": 964,
|
||||
"views": 8791,
|
||||
"upvotes": 22,
|
||||
"saves": 57,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-11-08",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/async_context_compression_b1655bc8"
|
||||
},
|
||||
{
|
||||
@@ -90,14 +90,14 @@
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Export current conversation from Markdown to Word (.docx) with Mermaid diagrams rendered client-side (Mermaid.js, SVG+PNG), LaTeX math, real hyperlinks, improved tables, syntax highlighting, and blockquote support.",
|
||||
"downloads": 819,
|
||||
"views": 6315,
|
||||
"upvotes": 21,
|
||||
"saves": 42,
|
||||
"comments": 5,
|
||||
"downloads": 940,
|
||||
"views": 7395,
|
||||
"upvotes": 22,
|
||||
"saves": 41,
|
||||
"comments": 8,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-03",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315"
|
||||
},
|
||||
{
|
||||
@@ -107,33 +107,16 @@
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 730,
|
||||
"views": 8094,
|
||||
"upvotes": 10,
|
||||
"saves": 23,
|
||||
"downloads": 874,
|
||||
"views": 9646,
|
||||
"upvotes": 11,
|
||||
"saves": 28,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-28",
|
||||
"updated_at": "2026-01-28",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37"
|
||||
},
|
||||
{
|
||||
"title": "Export to Excel",
|
||||
"slug": "export_mulit_table_to_excel_244b8f9d",
|
||||
"type": "action",
|
||||
"version": "0.3.7",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Extracts tables from chat messages and exports them to Excel (.xlsx) files with smart formatting.",
|
||||
"downloads": 625,
|
||||
"views": 3591,
|
||||
"upvotes": 12,
|
||||
"saves": 13,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-05-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"url": "https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d"
|
||||
},
|
||||
{
|
||||
"title": "OpenWebUI Skills Manager Tool",
|
||||
"slug": "openwebui_skills_manager_tool_b4bce8e4",
|
||||
@@ -141,31 +124,48 @@
|
||||
"version": "0.3.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Standalone OpenWebUI tool for managing native Workspace Skills (list/show/install/create/update/delete) for any model.",
|
||||
"downloads": 535,
|
||||
"views": 6465,
|
||||
"upvotes": 8,
|
||||
"saves": 26,
|
||||
"downloads": 698,
|
||||
"views": 8399,
|
||||
"upvotes": 10,
|
||||
"saves": 31,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-02-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4"
|
||||
},
|
||||
{
|
||||
"title": "Export to Excel",
|
||||
"slug": "export_mulit_table_to_excel_244b8f9d",
|
||||
"type": "action",
|
||||
"version": "0.3.7",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Extracts tables from chat messages and exports them to Excel (.xlsx) files with smart formatting.",
|
||||
"downloads": 685,
|
||||
"views": 4184,
|
||||
"upvotes": 13,
|
||||
"saves": 13,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-05-30",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d"
|
||||
},
|
||||
{
|
||||
"title": "GitHub Copilot Official SDK Pipe",
|
||||
"slug": "github_copilot_official_sdk_pipe_ce96f7b4",
|
||||
"type": "pipe",
|
||||
"version": "0.10.1",
|
||||
"version": "0.12.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A powerful Agent SDK integration for OpenWebUI. It deeply bridges GitHub Copilot SDK with OpenWebUI's ecosystem, enabling the Agent to autonomously perform intent recognition, web search, and context compaction. It seamlessly reuses your existing Tools, MCP servers, OpenAPI servers, and Skills for a professional, full-featured experience.",
|
||||
"downloads": 407,
|
||||
"views": 5825,
|
||||
"upvotes": 16,
|
||||
"downloads": 465,
|
||||
"views": 6718,
|
||||
"upvotes": 17,
|
||||
"saves": 12,
|
||||
"comments": 8,
|
||||
"comments": 19,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-26",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4"
|
||||
},
|
||||
{
|
||||
@@ -175,14 +175,14 @@
|
||||
"version": "0.2.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Quickly generates beautiful flashcards from text, extracting key points and categories.",
|
||||
"downloads": 339,
|
||||
"views": 4807,
|
||||
"downloads": 368,
|
||||
"views": 5217,
|
||||
"upvotes": 13,
|
||||
"saves": 23,
|
||||
"comments": 2,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/flash_card_65a2ea8f"
|
||||
},
|
||||
{
|
||||
@@ -192,33 +192,16 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A comprehensive thinking lens that dives deep into any content - from context to logic, insights, and action paths.",
|
||||
"downloads": 236,
|
||||
"views": 1926,
|
||||
"upvotes": 6,
|
||||
"saves": 15,
|
||||
"downloads": 264,
|
||||
"views": 2166,
|
||||
"upvotes": 7,
|
||||
"saves": 17,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-08",
|
||||
"updated_at": "2026-01-08",
|
||||
"url": "https://openwebui.com/posts/deep_dive_c0b846e4"
|
||||
},
|
||||
{
|
||||
"title": "导出为Word增强版",
|
||||
"slug": "导出为_word_支持公式流程图表格和代码块_8a6306c0",
|
||||
"type": "action",
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "将对话导出为 Word (.docx),支持 Mermaid 图表 (客户端渲染 SVG+PNG)、LaTeX 数学公式、真实超链接、增强表格格式、代码高亮和引用块。",
|
||||
"downloads": 173,
|
||||
"views": 3084,
|
||||
"upvotes": 14,
|
||||
"saves": 7,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-04",
|
||||
"updated_at": "2026-03-15",
|
||||
"url": "https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0"
|
||||
},
|
||||
{
|
||||
"title": "🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs",
|
||||
"slug": "smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d",
|
||||
@@ -226,16 +209,50 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Intelligently analyzes text content and generates interactive mind maps to help users structure and visualize knowledge.",
|
||||
"downloads": 135,
|
||||
"views": 2549,
|
||||
"upvotes": 6,
|
||||
"saves": 5,
|
||||
"downloads": 224,
|
||||
"views": 3392,
|
||||
"upvotes": 7,
|
||||
"saves": 10,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-04",
|
||||
"updated_at": "2026-03-05",
|
||||
"url": "https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d"
|
||||
},
|
||||
{
|
||||
"title": "Batch Install Plugins from GitHub",
|
||||
"slug": "batch_install_plugins_install_popular_plugins_in_s_c9fd6e80",
|
||||
"type": "tool",
|
||||
"version": "1.1.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "One-click batch install plugins from one or more GitHub repositories to your OpenWebUI instance. If a user mentions multiple repositories in one request, combine them into a single tool call.",
|
||||
"downloads": 187,
|
||||
"views": 4118,
|
||||
"upvotes": 9,
|
||||
"saves": 8,
|
||||
"comments": 6,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-15",
|
||||
"updated_at": "2026-03-23",
|
||||
"url": "https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80"
|
||||
},
|
||||
{
|
||||
"title": "导出为Word增强版",
|
||||
"slug": "导出为_word_支持公式流程图表格和代码块_8a6306c0",
|
||||
"type": "action",
|
||||
"version": "0.4.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "将对话导出为 Word (.docx),支持 Mermaid 图表 (客户端渲染 SVG+PNG)、LaTeX 数学公式、真实超链接、增强表格格式、代码高亮和引用块。",
|
||||
"downloads": 181,
|
||||
"views": 3293,
|
||||
"upvotes": 14,
|
||||
"saves": 7,
|
||||
"comments": 4,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-04",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0"
|
||||
},
|
||||
{
|
||||
"title": "📂 Folder Memory – Auto-Evolving Project Context",
|
||||
"slug": "folder_memory_auto_evolving_project_context_4a9875b2",
|
||||
@@ -243,10 +260,10 @@
|
||||
"version": "0.1.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "Automatically extracts project rules from conversations and injects them into the folder's system prompt.",
|
||||
"downloads": 132,
|
||||
"views": 2206,
|
||||
"downloads": 143,
|
||||
"views": 2404,
|
||||
"upvotes": 7,
|
||||
"saves": 13,
|
||||
"saves": 15,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-01-20",
|
||||
@@ -260,14 +277,14 @@
|
||||
"version": "0.1.3",
|
||||
"author": "Fu-Jie",
|
||||
"description": "A specialized filter to bypass OpenWebUI's default RAG for GitHub Copilot SDK models. It moves uploaded files to a safe location ('copilot_files') so the Copilot Pipe can process them natively without interference.",
|
||||
"downloads": 94,
|
||||
"views": 2497,
|
||||
"upvotes": 4,
|
||||
"downloads": 102,
|
||||
"views": 2641,
|
||||
"upvotes": 5,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-02-09",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee"
|
||||
},
|
||||
{
|
||||
@@ -277,14 +294,14 @@
|
||||
"version": "1.5.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "基于 AntV Infographic 的智能信息图生成插件。支持多种专业模板,自动图标匹配,并提供 SVG/PNG 下载功能。",
|
||||
"downloads": 72,
|
||||
"views": 1604,
|
||||
"downloads": 75,
|
||||
"views": 1753,
|
||||
"upvotes": 10,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-28",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/智能信息图_e04a48ff"
|
||||
},
|
||||
{
|
||||
@@ -294,8 +311,8 @@
|
||||
"version": "0.9.2",
|
||||
"author": "Fu-Jie",
|
||||
"description": "智能分析文本内容,生成交互式思维导图,帮助用户结构化和可视化知识。",
|
||||
"downloads": 57,
|
||||
"views": 831,
|
||||
"downloads": 60,
|
||||
"views": 878,
|
||||
"upvotes": 6,
|
||||
"saves": 2,
|
||||
"comments": 0,
|
||||
@@ -311,8 +328,8 @@
|
||||
"version": "1.2.2",
|
||||
"author": "Fu-Jie",
|
||||
"description": "通过智能摘要和消息压缩,降低长对话的 token 消耗,同时保持对话连贯性。",
|
||||
"downloads": 44,
|
||||
"views": 918,
|
||||
"downloads": 49,
|
||||
"views": 965,
|
||||
"upvotes": 7,
|
||||
"saves": 5,
|
||||
"comments": 0,
|
||||
@@ -328,8 +345,8 @@
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "全方位的思维透镜 —— 从背景全景到逻辑脉络,从深度洞察到行动路径。",
|
||||
"downloads": 38,
|
||||
"views": 722,
|
||||
"downloads": 39,
|
||||
"views": 753,
|
||||
"upvotes": 5,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
@@ -345,32 +362,49 @@
|
||||
"version": "0.2.4",
|
||||
"author": "Fu-Jie",
|
||||
"description": "快速将文本提炼为精美的学习记忆卡片,支持核心要点提取与分类。",
|
||||
"downloads": 34,
|
||||
"views": 947,
|
||||
"downloads": 37,
|
||||
"views": 1031,
|
||||
"upvotes": 7,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2025-12-30",
|
||||
"updated_at": "2026-03-15",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/闪记卡生成插件_4a31eac3"
|
||||
},
|
||||
{
|
||||
"title": "🚀 Batch Install Plugins - Install Popular Plugins in Seconds",
|
||||
"slug": "batch_install_plugins_install_popular_plugins_in_s_c9fd6e80",
|
||||
"type": "tool",
|
||||
"version": "1.0.0",
|
||||
"author": "Fu-Jie",
|
||||
"description": "One-click batch install plugins from GitHub repositories to your OpenWebUI instance.",
|
||||
"downloads": 13,
|
||||
"views": 301,
|
||||
"upvotes": 2,
|
||||
"saves": 2,
|
||||
"comments": 1,
|
||||
"title": "🔍 One-Sentence Concept Explainer",
|
||||
"slug": "one_sentence_concept_explainer_79be55d3",
|
||||
"type": "prompt",
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 8,
|
||||
"views": 419,
|
||||
"upvotes": 1,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": true,
|
||||
"created_at": "2026-03-15",
|
||||
"updated_at": "2026-03-15",
|
||||
"url": "https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80"
|
||||
"created_at": "2026-03-22",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/one_sentence_concept_explainer_79be55d3"
|
||||
},
|
||||
{
|
||||
"title": "🧠 Wisdom Synthesizer (Collective Wisdom Synthesizer)",
|
||||
"slug": "wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe",
|
||||
"type": "action",
|
||||
"version": "",
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 427,
|
||||
"upvotes": 1,
|
||||
"saves": 2,
|
||||
"comments": 0,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-03-22",
|
||||
"updated_at": "2026-03-22",
|
||||
"url": "https://openwebui.com/posts/wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe"
|
||||
},
|
||||
{
|
||||
"title": "An Unconventional Use of Open Terminal ⚡",
|
||||
@@ -380,9 +414,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 3468,
|
||||
"upvotes": 7,
|
||||
"saves": 1,
|
||||
"views": 3828,
|
||||
"upvotes": 8,
|
||||
"saves": 3,
|
||||
"comments": 2,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-03-06",
|
||||
@@ -397,8 +431,8 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 1840,
|
||||
"upvotes": 5,
|
||||
"views": 1902,
|
||||
"upvotes": 6,
|
||||
"saves": 1,
|
||||
"comments": 0,
|
||||
"is_published_plugin": false,
|
||||
@@ -414,8 +448,8 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2816,
|
||||
"upvotes": 8,
|
||||
"views": 2917,
|
||||
"upvotes": 9,
|
||||
"saves": 4,
|
||||
"comments": 1,
|
||||
"is_published_plugin": false,
|
||||
@@ -431,7 +465,7 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2444,
|
||||
"views": 2472,
|
||||
"upvotes": 7,
|
||||
"saves": 5,
|
||||
"comments": 0,
|
||||
@@ -448,9 +482,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 2035,
|
||||
"upvotes": 14,
|
||||
"saves": 24,
|
||||
"views": 2160,
|
||||
"upvotes": 15,
|
||||
"saves": 27,
|
||||
"comments": 9,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-01-25",
|
||||
@@ -465,7 +499,7 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 273,
|
||||
"views": 279,
|
||||
"upvotes": 2,
|
||||
"saves": 0,
|
||||
"comments": 0,
|
||||
@@ -482,9 +516,9 @@
|
||||
"author": "",
|
||||
"description": "",
|
||||
"downloads": 0,
|
||||
"views": 1599,
|
||||
"upvotes": 16,
|
||||
"saves": 13,
|
||||
"views": 1640,
|
||||
"upvotes": 17,
|
||||
"saves": 14,
|
||||
"comments": 2,
|
||||
"is_published_plugin": false,
|
||||
"created_at": "2026-01-10",
|
||||
@@ -497,11 +531,11 @@
|
||||
"name": "Fu-Jie",
|
||||
"profile_url": "https://openwebui.com/u/Fu-Jie",
|
||||
"profile_image": "https://community.s3.openwebui.com/uploads/users/b15d1348-4347-42b4-b815-e053342d6cb0/profile_d9510745-4bd4-4f8f-a997-4a21847d9300.webp",
|
||||
"followers": 367,
|
||||
"following": 7,
|
||||
"total_points": 375,
|
||||
"post_points": 311,
|
||||
"comment_points": 64,
|
||||
"contributions": 76
|
||||
"followers": 425,
|
||||
"following": 9,
|
||||
"total_points": 408,
|
||||
"post_points": 337,
|
||||
"comment_points": 71,
|
||||
"contributions": 89
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@
|
||||
> *Blue: Downloads | Purple: Views (Real-time dynamic)*
|
||||
|
||||
### 📂 Content Distribution
|
||||

|
||||

|
||||
|
||||
|
||||
## 📈 Overview
|
||||
@@ -26,41 +26,43 @@
|
||||
|
||||
## 📂 By Type
|
||||
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
|
||||
## 📋 Posts List
|
||||
|
||||
| Rank | Title | Type | Version | Downloads | Views | Upvotes | Saves | Updated |
|
||||
|:---:|------|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
||||
| 1 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 2 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 3 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 4 | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 5 | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 6 | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) | prompt |  |  |  |  |  | 2026-01-28 |
|
||||
| 7 | [Export to Excel](https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 8 | [OpenWebUI Skills Manager Tool](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4) | tool |  |  |  |  |  | 2026-03-15 |
|
||||
| 9 | [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4) | pipe |  |  |  |  |  | 2026-03-15 |
|
||||
| 10 | [Flash Card](https://openwebui.com/posts/flash_card_65a2ea8f) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 1 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 2 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) | action |  |  |  |  |  | 2026-03-23 |
|
||||
| 3 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) | filter |  |  |  |  |  | 2026-03-22 |
|
||||
| 4 | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) | filter |  |  |  |  |  | 2026-03-23 |
|
||||
| 5 | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 6 | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) | prompt |  |  |  |  |  | 2026-03-22 |
|
||||
| 7 | [OpenWebUI Skills Manager Tool](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4) | tool |  |  |  |  |  | 2026-03-23 |
|
||||
| 8 | [Export to Excel](https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 9 | [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4) | pipe |  |  |  |  |  | 2026-03-23 |
|
||||
| 10 | [Flash Card](https://openwebui.com/posts/flash_card_65a2ea8f) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 11 | [Deep Dive](https://openwebui.com/posts/deep_dive_c0b846e4) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 12 | [导出为Word增强版](https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 13 | [🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs](https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d) | tool |  |  |  |  |  | 2026-03-05 |
|
||||
| 14 | [📂 Folder Memory – Auto-Evolving Project Context](https://openwebui.com/posts/folder_memory_auto_evolving_project_context_4a9875b2) | filter |  |  |  |  |  | 2026-01-20 |
|
||||
| 15 | [GitHub Copilot SDK Files Filter](https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 16 | [智能信息图](https://openwebui.com/posts/智能信息图_e04a48ff) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 17 | [思维导图](https://openwebui.com/posts/智能生成交互式思维导图帮助用户可视化知识_8d4b097b) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 18 | [异步上下文压缩](https://openwebui.com/posts/异步上下文压缩_5c0617cb) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 19 | [精读](https://openwebui.com/posts/精读_99830b0f) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 20 | [闪记卡 (Flash Card)](https://openwebui.com/posts/闪记卡生成插件_4a31eac3) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 21 | [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) | action |  |  |  |  |  | 2026-03-16 |
|
||||
| 22 | [An Unconventional Use of Open Terminal ⚡](https://openwebui.com/posts/an_unconventional_use_of_open_terminal_35498f8f) | action |  |  |  |  |  | 2026-03-07 |
|
||||
| 23 | [🚀 GitHub Copilot SDK Pipe v0.9.0: Skills & RichUI](https://openwebui.com/posts/github_copilot_sdk_pipe_v090_copilot_sdk_skills_co_99a42452) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 24 | [🚀 GitHub Copilot SDK Pipe v0.7.0: Skills & Rich UI 🛠️](https://openwebui.com/posts/github_copilot_sdk_pipe_v070_native_tool_ui_zero_c_4af38131) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 25 | [🚀 GitHub Copilot SDK Pipe: AI That Executes, Not Just Talks](https://openwebui.com/posts/github_copilot_sdk_for_openwebui_elevate_your_ai_t_a140f293) | pipe |  |  |  |  |  | 2026-02-10 |
|
||||
| 26 | [🚀 Open WebUI Prompt Plus: AI-Powered Prompt Manager](https://openwebui.com/posts/open_webui_prompt_plus_ai_powered_prompt_manager_s_15fa060e) | action |  |  |  |  |  | 2026-01-28 |
|
||||
| 27 | [Review of Claude Haiku 4.5](https://openwebui.com/posts/review_of_claude_haiku_45_41b0db39) | review |  |  |  |  |  | 2026-01-14 |
|
||||
| 28 | [ 🛠️ Debug Open WebUI Plugins in Your Browser](https://openwebui.com/posts/debug_open_webui_plugins_in_your_browser_81bf7960) | action |  |  |  |  |  | 2026-01-10 |
|
||||
| 12 | [🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs](https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d) | tool |  |  |  |  |  | 2026-03-05 |
|
||||
| 13 | [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) | tool |  |  |  |  |  | 2026-03-23 |
|
||||
| 14 | [导出为Word增强版](https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 15 | [📂 Folder Memory – Auto-Evolving Project Context](https://openwebui.com/posts/folder_memory_auto_evolving_project_context_4a9875b2) | filter |  |  |  |  |  | 2026-01-20 |
|
||||
| 16 | [GitHub Copilot SDK Files Filter](https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee) | filter |  |  |  |  |  | 2026-03-22 |
|
||||
| 17 | [智能信息图](https://openwebui.com/posts/智能信息图_e04a48ff) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 18 | [思维导图](https://openwebui.com/posts/智能生成交互式思维导图帮助用户可视化知识_8d4b097b) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 19 | [异步上下文压缩](https://openwebui.com/posts/异步上下文压缩_5c0617cb) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 20 | [精读](https://openwebui.com/posts/精读_99830b0f) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 21 | [闪记卡 (Flash Card)](https://openwebui.com/posts/闪记卡生成插件_4a31eac3) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 22 | [🔍 One-Sentence Concept Explainer](https://openwebui.com/posts/one_sentence_concept_explainer_79be55d3) | prompt |  |  |  |  |  | 2026-03-22 |
|
||||
| 23 | [🧠 Wisdom Synthesizer (Collective Wisdom Synthesizer)](https://openwebui.com/posts/wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 24 | [An Unconventional Use of Open Terminal ⚡](https://openwebui.com/posts/an_unconventional_use_of_open_terminal_35498f8f) | action |  |  |  |  |  | 2026-03-07 |
|
||||
| 25 | [🚀 GitHub Copilot SDK Pipe v0.9.0: Skills & RichUI](https://openwebui.com/posts/github_copilot_sdk_pipe_v090_copilot_sdk_skills_co_99a42452) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 26 | [🚀 GitHub Copilot SDK Pipe v0.7.0: Skills & Rich UI 🛠️](https://openwebui.com/posts/github_copilot_sdk_pipe_v070_native_tool_ui_zero_c_4af38131) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 27 | [🚀 GitHub Copilot SDK Pipe: AI That Executes, Not Just Talks](https://openwebui.com/posts/github_copilot_sdk_for_openwebui_elevate_your_ai_t_a140f293) | pipe |  |  |  |  |  | 2026-02-10 |
|
||||
| 28 | [🚀 Open WebUI Prompt Plus: AI-Powered Prompt Manager](https://openwebui.com/posts/open_webui_prompt_plus_ai_powered_prompt_manager_s_15fa060e) | action |  |  |  |  |  | 2026-01-28 |
|
||||
| 29 | [Review of Claude Haiku 4.5](https://openwebui.com/posts/review_of_claude_haiku_45_41b0db39) | review |  |  |  |  |  | 2026-01-14 |
|
||||
| 30 | [ 🛠️ Debug Open WebUI Plugins in Your Browser](https://openwebui.com/posts/debug_open_webui_plugins_in_your_browser_81bf7960) | action |  |  |  |  |  | 2026-01-10 |
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
> *蓝色: 总下载量 | 紫色: 总浏览量 (实时动态生成)*
|
||||
|
||||
### 📂 内容分类占比 (Distribution)
|
||||

|
||||

|
||||
|
||||
|
||||
## 📈 总览
|
||||
@@ -26,41 +26,43 @@
|
||||
|
||||
## 📂 按类型分类
|
||||
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
- 
|
||||
|
||||
## 📋 发布列表
|
||||
|
||||
| 排名 | 标题 | 类型 | 版本 | 下载 | 浏览 | 点赞 | 收藏 | 更新日期 |
|
||||
|:---:|------|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
||||
| 1 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 2 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 3 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 4 | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 5 | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 6 | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) | prompt |  |  |  |  |  | 2026-01-28 |
|
||||
| 7 | [Export to Excel](https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 8 | [OpenWebUI Skills Manager Tool](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4) | tool |  |  |  |  |  | 2026-03-15 |
|
||||
| 9 | [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4) | pipe |  |  |  |  |  | 2026-03-15 |
|
||||
| 10 | [Flash Card](https://openwebui.com/posts/flash_card_65a2ea8f) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 1 | [Smart Mind Map](https://openwebui.com/posts/turn_any_text_into_beautiful_mind_maps_3094c59a) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 2 | [Smart Infographic](https://openwebui.com/posts/smart_infographic_ad6f0c7f) | action |  |  |  |  |  | 2026-03-23 |
|
||||
| 3 | [Markdown Normalizer](https://openwebui.com/posts/markdown_normalizer_baaa8732) | filter |  |  |  |  |  | 2026-03-22 |
|
||||
| 4 | [Async Context Compression](https://openwebui.com/posts/async_context_compression_b1655bc8) | filter |  |  |  |  |  | 2026-03-23 |
|
||||
| 5 | [Export to Word Enhanced](https://openwebui.com/posts/export_to_word_enhanced_formatting_fca6a315) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 6 | [AI Task Instruction Generator](https://openwebui.com/posts/ai_task_instruction_generator_9bab8b37) | prompt |  |  |  |  |  | 2026-03-22 |
|
||||
| 7 | [OpenWebUI Skills Manager Tool](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4) | tool |  |  |  |  |  | 2026-03-23 |
|
||||
| 8 | [Export to Excel](https://openwebui.com/posts/export_mulit_table_to_excel_244b8f9d) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 9 | [GitHub Copilot Official SDK Pipe](https://openwebui.com/posts/github_copilot_official_sdk_pipe_ce96f7b4) | pipe |  |  |  |  |  | 2026-03-23 |
|
||||
| 10 | [Flash Card](https://openwebui.com/posts/flash_card_65a2ea8f) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 11 | [Deep Dive](https://openwebui.com/posts/deep_dive_c0b846e4) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 12 | [导出为Word增强版](https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 13 | [🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs](https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d) | tool |  |  |  |  |  | 2026-03-05 |
|
||||
| 14 | [📂 Folder Memory – Auto-Evolving Project Context](https://openwebui.com/posts/folder_memory_auto_evolving_project_context_4a9875b2) | filter |  |  |  |  |  | 2026-01-20 |
|
||||
| 15 | [GitHub Copilot SDK Files Filter](https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee) | filter |  |  |  |  |  | 2026-03-15 |
|
||||
| 16 | [智能信息图](https://openwebui.com/posts/智能信息图_e04a48ff) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 17 | [思维导图](https://openwebui.com/posts/智能生成交互式思维导图帮助用户可视化知识_8d4b097b) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 18 | [异步上下文压缩](https://openwebui.com/posts/异步上下文压缩_5c0617cb) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 19 | [精读](https://openwebui.com/posts/精读_99830b0f) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 20 | [闪记卡 (Flash Card)](https://openwebui.com/posts/闪记卡生成插件_4a31eac3) | action |  |  |  |  |  | 2026-03-15 |
|
||||
| 21 | [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) | action |  |  |  |  |  | 2026-03-16 |
|
||||
| 22 | [An Unconventional Use of Open Terminal ⚡](https://openwebui.com/posts/an_unconventional_use_of_open_terminal_35498f8f) | action |  |  |  |  |  | 2026-03-07 |
|
||||
| 23 | [🚀 GitHub Copilot SDK Pipe v0.9.0: Skills & RichUI](https://openwebui.com/posts/github_copilot_sdk_pipe_v090_copilot_sdk_skills_co_99a42452) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 24 | [🚀 GitHub Copilot SDK Pipe v0.7.0: Skills & Rich UI 🛠️](https://openwebui.com/posts/github_copilot_sdk_pipe_v070_native_tool_ui_zero_c_4af38131) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 25 | [🚀 GitHub Copilot SDK Pipe: AI That Executes, Not Just Talks](https://openwebui.com/posts/github_copilot_sdk_for_openwebui_elevate_your_ai_t_a140f293) | pipe |  |  |  |  |  | 2026-02-10 |
|
||||
| 26 | [🚀 Open WebUI Prompt Plus: AI-Powered Prompt Manager](https://openwebui.com/posts/open_webui_prompt_plus_ai_powered_prompt_manager_s_15fa060e) | action |  |  |  |  |  | 2026-01-28 |
|
||||
| 27 | [Review of Claude Haiku 4.5](https://openwebui.com/posts/review_of_claude_haiku_45_41b0db39) | review |  |  |  |  |  | 2026-01-14 |
|
||||
| 28 | [ 🛠️ Debug Open WebUI Plugins in Your Browser](https://openwebui.com/posts/debug_open_webui_plugins_in_your_browser_81bf7960) | action |  |  |  |  |  | 2026-01-10 |
|
||||
| 12 | [🧠 Smart Mind Map Tool: Auto-Generate Interactive Knowledge Graphs](https://openwebui.com/posts/smart_mind_map_tool_auto_generate_interactive_know_d25f4e3d) | tool |  |  |  |  |  | 2026-03-05 |
|
||||
| 13 | [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) | tool |  |  |  |  |  | 2026-03-23 |
|
||||
| 14 | [导出为Word增强版](https://openwebui.com/posts/导出为_word_支持公式流程图表格和代码块_8a6306c0) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 15 | [📂 Folder Memory – Auto-Evolving Project Context](https://openwebui.com/posts/folder_memory_auto_evolving_project_context_4a9875b2) | filter |  |  |  |  |  | 2026-01-20 |
|
||||
| 16 | [GitHub Copilot SDK Files Filter](https://openwebui.com/posts/github_copilot_sdk_files_filter_403a62ee) | filter |  |  |  |  |  | 2026-03-22 |
|
||||
| 17 | [智能信息图](https://openwebui.com/posts/智能信息图_e04a48ff) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 18 | [思维导图](https://openwebui.com/posts/智能生成交互式思维导图帮助用户可视化知识_8d4b097b) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 19 | [异步上下文压缩](https://openwebui.com/posts/异步上下文压缩_5c0617cb) | action |  |  |  |  |  | 2026-02-13 |
|
||||
| 20 | [精读](https://openwebui.com/posts/精读_99830b0f) | action |  |  |  |  |  | 2026-01-08 |
|
||||
| 21 | [闪记卡 (Flash Card)](https://openwebui.com/posts/闪记卡生成插件_4a31eac3) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 22 | [🔍 One-Sentence Concept Explainer](https://openwebui.com/posts/one_sentence_concept_explainer_79be55d3) | prompt |  |  |  |  |  | 2026-03-22 |
|
||||
| 23 | [🧠 Wisdom Synthesizer (Collective Wisdom Synthesizer)](https://openwebui.com/posts/wisdom_synthesizer_collective_wisdom_synthesizer_f7c0d0fe) | action |  |  |  |  |  | 2026-03-22 |
|
||||
| 24 | [An Unconventional Use of Open Terminal ⚡](https://openwebui.com/posts/an_unconventional_use_of_open_terminal_35498f8f) | action |  |  |  |  |  | 2026-03-07 |
|
||||
| 25 | [🚀 GitHub Copilot SDK Pipe v0.9.0: Skills & RichUI](https://openwebui.com/posts/github_copilot_sdk_pipe_v090_copilot_sdk_skills_co_99a42452) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 26 | [🚀 GitHub Copilot SDK Pipe v0.7.0: Skills & Rich UI 🛠️](https://openwebui.com/posts/github_copilot_sdk_pipe_v070_native_tool_ui_zero_c_4af38131) | pipe |  |  |  |  |  | 2026-02-28 |
|
||||
| 27 | [🚀 GitHub Copilot SDK Pipe: AI That Executes, Not Just Talks](https://openwebui.com/posts/github_copilot_sdk_for_openwebui_elevate_your_ai_t_a140f293) | pipe |  |  |  |  |  | 2026-02-10 |
|
||||
| 28 | [🚀 Open WebUI Prompt Plus: AI-Powered Prompt Manager](https://openwebui.com/posts/open_webui_prompt_plus_ai_powered_prompt_manager_s_15fa060e) | action |  |  |  |  |  | 2026-01-28 |
|
||||
| 29 | [Review of Claude Haiku 4.5](https://openwebui.com/posts/review_of_claude_haiku_45_41b0db39) | review |  |  |  |  |  | 2026-01-14 |
|
||||
| 30 | [ 🛠️ Debug Open WebUI Plugins in Your Browser](https://openwebui.com/posts/debug_open_webui_plugins_in_your_browser_81bf7960) | action |  |  |  |  |  | 2026-01-10 |
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
A comprehensive thinking lens that dives deep into any content - from context to logic, insights, and action paths.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v1.0.0
|
||||
|
||||
- ✨ **Thinking Chain Structure**: Moves from surface understanding to deep strategic action.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
全方位的思维透镜 —— 从背景全景到逻辑脉络,从深度洞察到行动路径。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 v1.0.0 更新内容
|
||||
|
||||
- ✨ **思维链结构**: 从表面理解一步步深入到战略行动。
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
Export conversation to Word (.docx) with **syntax highlighting**, **native math equations**, **Mermaid diagrams**, **citations**, and **enhanced table formatting**.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v0.4.4
|
||||
|
||||
- 🧹 **Content Cleanup**: Enhanced stripping of `<details>` blocks (often used for tool calls/thinking process) to ensure a clean final document.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
将对话导出为 Word (.docx),支持**代码语法高亮**、**原生数学公式**、**Mermaid 图表**、**引用参考**和**增强表格格式**。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 v0.4.4 更新内容
|
||||
|
||||
- 🧹 **内容清理加强**: 增强了对 `<details>` 块(通常包含工具调用或思考过程)的清理,确保最终文档整洁。
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
Export chat history to an Excel (.xlsx) file directly from the chat interface.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v0.3.6
|
||||
|
||||
- **OpenWebUI-Style Theme**: Modern dark header (#1f2937) with light gray zebra striping for better readability.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
将对话历史直接导出为 Excel (.xlsx) 文件。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v0.3.6
|
||||
|
||||
- **OpenWebUI 风格主题**:现代深灰表头(#1f2937)与浅灰斑马纹,提升可读性。
|
||||
|
||||
@@ -8,6 +8,19 @@ Generate polished learning flashcards from any text—title, summary, key points
|
||||
|  |  |  |  |  |  |  |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New
|
||||
|
||||
### v0.2.4
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|  |  |  |  |  |  |  |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v0.2.4
|
||||
|
||||
* **输出优化**: 移除输出中的调试信息。
|
||||
|
||||
@@ -33,7 +33,7 @@ Actions are interactive plugins that:
|
||||
|
||||
Transform text into professional infographics using AntV visualization engine with various templates.
|
||||
|
||||
**Version:** 1.5.0
|
||||
**Version:** 1.6.0
|
||||
|
||||
[:octicons-arrow-right-24: Documentation](smart-infographic.md)
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ Actions 是交互式插件,能够:
|
||||
|
||||
使用 AntV 可视化引擎,将文本转成专业的信息图。
|
||||
|
||||
**版本:** 1.4.9
|
||||
**版本:** 1.6.0
|
||||
|
||||
[:octicons-arrow-right-24: 查看文档](smart-infographic.md)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Smart Infographic
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,7 +8,20 @@
|
||||
|
||||
An Open WebUI plugin powered by the AntV Infographic engine. It transforms long text into professional, beautiful infographics with a single click.
|
||||
|
||||
## 🔥 What's New in v1.5.0
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v1.6.0
|
||||
|
||||
- 🌐 **Smart Language Detection**: Automatically detects the accurate UI language from your browser.
|
||||
- 🗣️ **Context-Aware Generation**: Generated infographics now strictly follow the language of your input content (e.g., input Japanese -> output Japanese infographic).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 智能信息图
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,7 +8,20 @@
|
||||
|
||||
基于 AntV Infographic 引擎的 Open WebUI 插件,能够将长文本内容一键转换为专业、美观的信息图表。
|
||||
|
||||
## 🔥 最新更新 v1.5.0
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v1.6.0
|
||||
|
||||
- 🌐 **智能语言检测**:自动从浏览器准确识别当前界面语言设置。
|
||||
- 🗣️ **上下文感知生成**:生成的信息图内容现在严格跟随用户输入内容的语言(例如:输入日语 -> 生成日语信息图)。
|
||||
|
||||
@@ -10,6 +10,19 @@ Smart Mind Map is a powerful OpenWebUI action plugin that intelligently analyzes
|
||||
|
||||
> 🏆 **Featured by OpenWebUI Official** — This plugin was recommended in the official OpenWebUI Community Newsletter: [February 3, 2026](https://openwebui.com/blog/open-webui-community-newsletter-february-3rd-2026)
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New in v1.0.0
|
||||
|
||||
### Direct Embed & UI Refinements
|
||||
|
||||
@@ -10,6 +10,19 @@
|
||||
|
||||
> 🏆 **OpenWebUI 官方推荐** — 本插件获得 OpenWebUI 社区 Newsletter 官方推荐:[2026 年 2 月 3 日](https://openwebui.com/blog/open-webui-community-newsletter-february-3rd-2026)
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## v1.0.0 最新更新
|
||||
|
||||
### 嵌入式直出与 UI 细节全线重构
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Async Context Compression Filter
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,6 +8,25 @@
|
||||
|
||||
This filter reduces token consumption in long conversations through intelligent summarization and message compression while keeping conversations coherent.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's new in 1.6.0
|
||||
|
||||
- **Fixed `keep_first` Logic**: Re-defined `keep_first` to protect the first N **non-system** messages plus all interleaved system messages. This ensures initial context (e.g., identity, task instructions) is preserved correctly.
|
||||
- **Absolute System Message Protection**: System messages are now strictly excluded from compression. Any system message encountered in the history (even late-injected ones) is preserved as an original message in the final context.
|
||||
- **Improved Context Assembly**: Summaries now only target User and Assistant dialogue, ensuring that system instructions injected by other plugins are never "eaten" by the summarizer.
|
||||
|
||||
## What's new in 1.5.0
|
||||
|
||||
- **External Chat Reference Summaries**: Added support for referenced chat context blocks that can reuse cached summaries, inject small referenced chats directly, or generate summaries for larger referenced chats before injection.
|
||||
@@ -41,6 +60,10 @@ This filter reduces token consumption in long conversations through intelligent
|
||||
|
||||
## What This Fixes
|
||||
|
||||
- **Problem: System Messages being summarized/lost.**
|
||||
Previously, the filter could include system messages (especially those injected late by other plugins) in its summarization zone, causing important instructions to be lost. Now, all system messages are strictly preserved in their original role and never summarized.
|
||||
- **Problem: Incorrect `keep_first` behavior.**
|
||||
Previously, `keep_first` simply took the first $N$ messages. If those were only system messages, the initial user/assistant messages (which are often important for context) would be summarized. Now, `keep_first` ensures that $N$ non-system messages are protected.
|
||||
- **Problem 1: A referenced chat could break the current request.**
|
||||
Before, if the filter needed to summarize a referenced chat and that LLM call failed, the current chat could fail with it. Now it degrades gracefully and injects direct context instead.
|
||||
- **Problem 2: Some referenced chats were being cut too aggressively.**
|
||||
@@ -128,7 +151,7 @@ flowchart TD
|
||||
| `priority` | `10` | Execution order; lower runs earlier. |
|
||||
| `compression_threshold_tokens` | `64000` | Trigger asynchronous summary when total tokens exceed this value. Set to 50%-70% of your model's context window. |
|
||||
| `max_context_tokens` | `128000` | Hard cap for context; older messages (except protected ones) are dropped if exceeded. |
|
||||
| `keep_first` | `1` | Always keep the first N messages (protects system prompts). |
|
||||
| `keep_first` | `1` | Number of initial **non-system** messages to always keep (plus all preceding system prompts). |
|
||||
| `keep_last` | `6` | Always keep the last N messages to preserve recent context. |
|
||||
| `summary_model` | `None` | Model for summaries. Strongly recommended to set a fast, economical model (e.g., `gemini-2.5-flash`, `deepseek-v3`). Falls back to the current chat model when empty. |
|
||||
| `summary_model_max_context` | `0` | Input context window used to fit summary requests. If `0`, falls back to `model_thresholds` or global `max_context_tokens`. |
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 异步上下文压缩过滤器
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -10,6 +10,25 @@
|
||||
|
||||
本过滤器通过智能摘要和消息压缩技术,在保持对话连贯性的同时,显著降低长对话的 Token 消耗。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 1.6.0 版本更新
|
||||
|
||||
- **修正 `keep_first` 逻辑**:重新定义了 `keep_first` 的功能,现在它负责保护前 N 条**非系统消息**(以及它们之前的所有系统提示词)。这确保了初始对话背景(如身份设定、任务说明)能被正确保留。
|
||||
- **系统消息绝对保护**:系统消息现在被严格排除在压缩范围之外。历史记录中遇到的任何系统消息(甚至是后期注入的消息)都会作为原始消息保留在最终上下文中。
|
||||
- **改进的上下文组装**:摘要现在仅针对用户和助手的对话,确保其他插件注入的系统指令永远不会被摘要器“吃掉”。
|
||||
|
||||
## 1.5.0 版本更新
|
||||
|
||||
- **外部聊天引用摘要**: 新增对引用聊天上下文的摘要支持。现在可以复用缓存摘要、直接注入较小引用聊天,或先为较大的引用聊天生成摘要再注入。
|
||||
@@ -39,12 +58,14 @@
|
||||
- ✅ **智能模型匹配**: 自定义模型自动继承基础模型的阈值配置。
|
||||
- ⚠ **多模态支持**: 图片内容会被保留,但其 Token **不参与计算**。请相应调整阈值。
|
||||
|
||||
详细的工作原理和更长说明仍可参考 [工作流程指南](https://github.com/Fu-Jie/openwebui-extensions/blob/main/plugins/filters/async-context-compression/WORKFLOW_GUIDE_CN.md)。
|
||||
|
||||
---
|
||||
|
||||
## 这次解决了什么问题(通俗版)
|
||||
|
||||
- **问题:系统消息被摘要或丢失。**
|
||||
以前,过滤器可能会将被引用或后期注入的系统消息包含在摘要区域内,导致重要的指令丢失。现在,所有系统消息都严格按原样保留,永不被摘要。
|
||||
- **问题:`keep_first` 逻辑不符合预期。**
|
||||
以前 `keep_first` 只是简单提取前 N 条消息。如果前几条全是系统消息,初始的问答(通常对上下文很重要)就会被压缩掉。现在 `keep_first` 确保保护 N 条非系统消息。
|
||||
- **问题 1:引用别的聊天时,摘要失败可能把当前对话一起弄挂。**
|
||||
以前如果过滤器需要先帮被引用聊天做摘要,而这一步的 LLM 调用失败了,当前请求也可能直接失败。现在改成了“能摘要就摘要,失败就退回直接塞上下文”,当前对话不会被一起拖死。
|
||||
- **问题 2:有些被引用聊天被截得太早,信息丢得太多。**
|
||||
@@ -72,11 +93,11 @@ flowchart TD
|
||||
F -- 是 --> G[直接复用缓存摘要]
|
||||
F -- 否 --> H{能直接放进当前预算?}
|
||||
H -- 是 --> I[直接注入完整引用聊天文本]
|
||||
H -- 否 --> J[准备引用聊天的摘要输入]
|
||||
H -- No --> J[准备引用聊天的摘要输入]
|
||||
|
||||
J --> K{引用聊天摘要调用成功?}
|
||||
K -- 是 --> L[注入生成后的引用摘要]
|
||||
K -- 否 --> M[回退为直接注入上下文]
|
||||
K -- No --> M[回退为直接注入上下文]
|
||||
|
||||
G --> D
|
||||
I --> D
|
||||
@@ -136,7 +157,7 @@ flowchart TD
|
||||
| `priority` | `10` | 过滤器执行顺序,数值越小越先执行。 |
|
||||
| `compression_threshold_tokens` | `64000` | **重要**: 当上下文总 Token 超过此值时后台生成摘要,建议设为模型上下文窗口的 50%-70%。 |
|
||||
| `max_context_tokens` | `128000` | **重要**: 上下文硬上限,超过即移除最早消息(保留受保护消息)。 |
|
||||
| `keep_first` | `1` | 始终保留对话开始的 N 条消息,保护系统提示或环境变量。 |
|
||||
| `keep_first` | `1` | 始终保留对话开始的 N 条**非系统消息**(以及它们之前的所有系统提示词)。 |
|
||||
| `keep_last` | `6` | 始终保留对话末尾的 N 条消息,确保最近上下文连贯。 |
|
||||
|
||||
### 摘要生成配置
|
||||
|
||||
@@ -2,6 +2,19 @@
|
||||
|
||||
A specialized filter for OpenWebUI that displays real-time metadata (display name, token capacity, and remaining quota) for models managed via the Antigravity Auth API.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install "Auth Model Info Filter" from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, confirm this plugin and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## Features
|
||||
|
||||
- **Automatic Metadata Injection**: Displays model details in the status bar of the chat interface.
|
||||
|
||||
@@ -2,6 +2,19 @@
|
||||
|
||||
一个专为 OpenWebUI 设计的过滤器插件,用于显示通过 Antigravity Auth API 管理的模型的实时元数据(显示名称、Token 容量和剩余配额)。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装“模型授权信息过滤器 (Auth Model Info Filter)”
|
||||
```
|
||||
|
||||
当选择弹窗打开后,确认当前插件并继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- **自动元数据注入**: 在聊天界面的状态栏显示模型详细信息。
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
Automatically tracks and persists the mapping between user IDs and chat IDs for seamless session management.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## Key Features
|
||||
|
||||
🔄 **Automatic Tracking** - Captures user_id and chat_id on every message without manual intervention
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
自动追踪并持久化用户 ID 与聊天 ID 的映射关系,实现无缝的会话管理。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 核心功能
|
||||
|
||||
🔄 **自动追踪** - 无需手动干预,在每条消息上自动捕获 user_id 和 chat_id
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
**Folder Memory** is an intelligent context filter plugin for OpenWebUI. It automatically extracts consistent "Project Rules" from ongoing conversations within a folder and injects them back into the folder's system prompt.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v0.1.0
|
||||
|
||||
- **Initial Release**: Automated "Project Rules" management for OpenWebUI folders.
|
||||
|
||||
@@ -10,6 +10,19 @@
|
||||
|
||||
这确保了该文件夹内的所有未来对话都能共享相同的进化上下文和规则,无需手动更新。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v0.1.0
|
||||
|
||||
- **首个版本发布**:专注于自动化的“项目规则”管理。
|
||||
|
||||
@@ -10,6 +10,19 @@ This is a dedicated **companion filter plugin** designed specifically for the [G
|
||||
|
||||
Its core mission is to **protect user-uploaded files from being "pre-processed" by the OpenWebUI core system, ensuring that the Copilot Agent receives the raw files for autonomous analysis.**
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## ✨ v0.1.3 Updates (What's New)
|
||||
|
||||
- **🔍 BYOK Model ID Matching Fixed**: Now correctly identifies models in `github_copilot_official_sdk_pipe.xxx` format via prefix matching, in addition to keyword fallback for backward compatibility. (v0.1.3)
|
||||
|
||||
@@ -10,6 +10,19 @@
|
||||
|
||||
它的核心使命是:**保护用户上传的文件不被 OpenWebUI 核心系统“抢先处理”,确保 Copilot Agent 能够接收到原始文件并进行自主分析。**
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## ✨ 0.1.3 更新内容 (What's New)
|
||||
|
||||
- **🔍 BYOK 模型 ID 匹配修复**: 新增前缀匹配(`github_copilot_official_sdk_pipe.xxx` 格式),修复 BYOK 模型无法被正确识别的问题,关键词兜底保持向后兼容。(v0.1.3)
|
||||
|
||||
@@ -22,7 +22,7 @@ Filters act as middleware in the message pipeline:
|
||||
|
||||
Reduces token consumption in long conversations with safer summary fallbacks and clearer failure visibility.
|
||||
|
||||
**Version:** 1.5.0
|
||||
**Version:** 1.6.0
|
||||
|
||||
[:octicons-arrow-right-24: Documentation](async-context-compression.md)
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ Filter 充当消息管线中的中间件:
|
||||
|
||||
通过更稳健的摘要回退和更清晰的失败提示,降低长对话的 token 消耗并保持连贯性。
|
||||
|
||||
**版本:** 1.5.0
|
||||
**版本:** 1.6.0
|
||||
|
||||
[:octicons-arrow-right-24: 查看文档](async-context-compression.zh.md)
|
||||
|
||||
|
||||
@@ -13,6 +13,19 @@ A powerful, context-aware content normalizer filter for Open WebUI designed to f
|
||||
|
||||
---
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v1.2.8
|
||||
* **Safe-by-Default Strategy**: The `enable_escape_fix` feature is now **disabled by default**. This prevents unwanted modifications to valid technical text like Windows file paths (`C:\new\test`) or complex LaTeX formulas.
|
||||
* **LaTeX Parsing Fix**: Improved the logic for identifying display math (`$$ ... $$`). Fixed a bug where LaTeX commands starting with `\n` (like `\nabla`) were incorrectly treated as newlines.
|
||||
|
||||
@@ -14,6 +14,19 @@
|
||||
|
||||
---
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v1.2.8
|
||||
* **“默认安全”策略 (Safe-by-Default)**:`enable_escape_fix` 功能现在**默认禁用**。这能有效防止插件在未经授权的情况下误改 Windows 路径 (`C:\new\test`) 或复杂的 LaTeX 公式。
|
||||
* **LaTeX 解析优化**:重构了显示数学公式 (`$$ ... $$`) 的识别逻辑。修复了 LaTeX 命令如果以 `\n` 开头(如 `\nabla`)会被错误识别为换行符的 Bug。
|
||||
|
||||
@@ -17,15 +17,12 @@ Pipelines extend beyond simple transformations to implement:
|
||||
|
||||
<div class="grid cards" markdown>
|
||||
|
||||
- :material-view-module:{ .lg .middle } **MoE Prompt Refiner**
|
||||
- :material-view-module:{ .lg .middle } **Wisdom Synthesizer**
|
||||
[:octicons-tag-24: v0.1.0](https://github.com/Fu-Jie/open-webui-pipeline-wisdom-synthesizer){ .bubble }
|
||||
|
||||
---
|
||||
An external pipeline filter that refactors aggregate requests with collective wisdom to output structured expert reports.
|
||||
|
||||
Refines prompts for Mixture of Experts (MoE) summary requests to generate high-quality comprehensive reports.
|
||||
|
||||
**Version:** 1.0.0
|
||||
|
||||
[:octicons-arrow-right-24: Documentation](moe-prompt-refiner.md)
|
||||
[:octicons-arrow-right-24: Documentation](wisdom-synthesizer.md)
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -17,15 +17,12 @@ Pipelines 不仅是简单转换,还可以实现:
|
||||
|
||||
<div class="grid cards" markdown>
|
||||
|
||||
- :material-view-module:{ .lg .middle } **MoE Prompt Refiner**
|
||||
- :material-view-module:{ .lg .middle } **Wisdom Synthesizer**
|
||||
[:octicons-tag-24: v0.1.0](https://github.com/Fu-Jie/open-webui-pipeline-wisdom-synthesizer){ .bubble }
|
||||
|
||||
---
|
||||
智能拦截并重构多模型汇总请求,发挥集体智慧(Collective Wisdom),将常规汇总熔炼为专家级对比报告。
|
||||
|
||||
为 Mixture of Experts(MoE)汇总请求优化提示词,生成高质量综合报告。
|
||||
|
||||
**版本:** 1.0.0
|
||||
|
||||
[:octicons-arrow-right-24: 查看文档](moe-prompt-refiner.md)
|
||||
[:octicons-arrow-right-24: 查看文档](wisdom-synthesizer.md)
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,109 +0,0 @@
|
||||
# MoE Prompt Refiner
|
||||
|
||||
<span class="category-badge pipeline">Pipeline</span>
|
||||
<span class="version-badge">v1.0.0</span>
|
||||
|
||||
Refines prompts for Mixture of Experts (MoE) summary requests to generate high-quality comprehensive reports.
|
||||
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
||||
The MoE Prompt Refiner is an advanced pipeline that optimizes prompts before sending them to multiple expert models, then synthesizes the responses into comprehensive, high-quality reports.
|
||||
|
||||
## Features
|
||||
|
||||
- :material-view-module: **Multi-Model**: Leverages multiple AI models
|
||||
- :material-text-search: **Prompt Optimization**: Refines prompts for best results
|
||||
- :material-merge: **Response Synthesis**: Combines expert responses
|
||||
- :material-file-document: **Report Generation**: Creates structured reports
|
||||
|
||||
---
|
||||
|
||||
## Installation
|
||||
|
||||
1. Download the pipeline file: [`moe_prompt_refiner.py`](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/pipelines)
|
||||
2. Upload to OpenWebUI: **Admin Panel** → **Settings** → **Functions**
|
||||
3. Configure expert models and settings
|
||||
4. Enable the pipeline
|
||||
|
||||
---
|
||||
|
||||
## How It Works
|
||||
|
||||
```mermaid
|
||||
graph TD
|
||||
A[User Prompt] --> B[Prompt Refiner]
|
||||
B --> C[Expert Model 1]
|
||||
B --> D[Expert Model 2]
|
||||
B --> E[Expert Model N]
|
||||
C --> F[Response Synthesizer]
|
||||
D --> F
|
||||
E --> F
|
||||
F --> G[Comprehensive Report]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Configuration
|
||||
|
||||
| Option | Type | Default | Description |
|
||||
|--------|------|---------|-------------|
|
||||
| `expert_models` | list | `[]` | List of models to consult |
|
||||
| `synthesis_model` | string | `"auto"` | Model for synthesizing responses |
|
||||
| `report_format` | string | `"markdown"` | Output format |
|
||||
|
||||
---
|
||||
|
||||
## Use Cases
|
||||
|
||||
- **Research Reports**: Gather insights from multiple AI perspectives
|
||||
- **Comprehensive Analysis**: Multi-faceted problem analysis
|
||||
- **Decision Support**: Balanced recommendations from diverse models
|
||||
- **Content Creation**: Rich, multi-perspective content
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
**Input Prompt:**
|
||||
```
|
||||
Analyze the pros and cons of microservices architecture
|
||||
```
|
||||
|
||||
**Output Report:**
|
||||
```markdown
|
||||
# Microservices Architecture Analysis
|
||||
|
||||
## Executive Summary
|
||||
Based on analysis from multiple expert perspectives...
|
||||
|
||||
## Advantages
|
||||
1. **Scalability** (Expert A)...
|
||||
2. **Technology Flexibility** (Expert B)...
|
||||
|
||||
## Disadvantages
|
||||
1. **Complexity** (Expert A)...
|
||||
2. **Distributed System Challenges** (Expert C)...
|
||||
|
||||
## Recommendations
|
||||
Synthesized recommendations based on expert consensus...
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Requirements
|
||||
|
||||
!!! note "Prerequisites"
|
||||
- OpenWebUI v0.3.0 or later
|
||||
- Access to multiple LLM models
|
||||
- Sufficient API quotas for multi-model queries
|
||||
|
||||
!!! warning "Resource Usage"
|
||||
This pipeline makes multiple API calls per request. Monitor your usage and costs.
|
||||
|
||||
---
|
||||
|
||||
## Source Code
|
||||
|
||||
[:fontawesome-brands-github: View on GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/pipelines){ .md-button }
|
||||
@@ -1,109 +0,0 @@
|
||||
# MoE Prompt Refiner
|
||||
|
||||
<span class="category-badge pipeline">Pipeline</span>
|
||||
<span class="version-badge">v1.0.0</span>
|
||||
|
||||
为 Mixture of Experts(MoE)汇总请求优化提示词,生成高质量的综合报告。
|
||||
|
||||
---
|
||||
|
||||
## 概览
|
||||
|
||||
MoE Prompt Refiner 是一个高级 Pipeline,会在将请求发送给多个专家模型前先优化提示词,然后综合各模型回复,输出结构化的高质量报告。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- :material-view-module: **多模型**:同时利用多个 AI 模型
|
||||
- :material-text-search: **提示词优化**:在发送前优化 prompt 获得更好结果
|
||||
- :material-merge: **结果合成**:整合专家回复
|
||||
- :material-file-document: **报告生成**:输出结构化报告
|
||||
|
||||
---
|
||||
|
||||
## 安装
|
||||
|
||||
1. 下载 Pipeline 文件:[`moe_prompt_refiner.py`](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/pipelines)
|
||||
2. 上传到 OpenWebUI:**Admin Panel** → **Settings** → **Functions**
|
||||
3. 配置专家模型及相关参数
|
||||
4. 启用该 Pipeline
|
||||
|
||||
---
|
||||
|
||||
## 工作流程
|
||||
|
||||
```mermaid
|
||||
graph TD
|
||||
A[User Prompt] --> B[Prompt Refiner]
|
||||
B --> C[Expert Model 1]
|
||||
B --> D[Expert Model 2]
|
||||
B --> E[Expert Model N]
|
||||
C --> F[Response Synthesizer]
|
||||
D --> F
|
||||
E --> F
|
||||
F --> G[Comprehensive Report]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 配置项
|
||||
|
||||
| 选项 | 类型 | 默认值 | 说明 |
|
||||
|--------|------|---------|-------------|
|
||||
| `expert_models` | list | `[]` | 需要咨询的模型列表 |
|
||||
| `synthesis_model` | string | `"auto"` | 用于综合回复的模型 |
|
||||
| `report_format` | string | `"markdown"` | 输出格式 |
|
||||
|
||||
---
|
||||
|
||||
## 适用场景
|
||||
|
||||
- **研究报告**:从多个 AI 视角收集洞见
|
||||
- **综合分析**:多角度问题拆解
|
||||
- **决策支持**:获得多模型的平衡建议
|
||||
- **内容创作**:生成多视角的丰富内容
|
||||
|
||||
---
|
||||
|
||||
## 示例
|
||||
|
||||
**输入 Prompt:**
|
||||
```
|
||||
Analyze the pros and cons of microservices architecture
|
||||
```
|
||||
|
||||
**输出报告:**
|
||||
```markdown
|
||||
# Microservices Architecture Analysis
|
||||
|
||||
## Executive Summary
|
||||
Based on analysis from multiple expert perspectives...
|
||||
|
||||
## Advantages
|
||||
1. **Scalability** (Expert A)...
|
||||
2. **Technology Flexibility** (Expert B)...
|
||||
|
||||
## Disadvantages
|
||||
1. **Complexity** (Expert A)...
|
||||
2. **Distributed System Challenges** (Expert C)...
|
||||
|
||||
## Recommendations
|
||||
Synthesized recommendations based on expert consensus...
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 运行要求
|
||||
|
||||
!!! note "前置条件"
|
||||
- OpenWebUI v0.3.0 及以上
|
||||
- 可以访问多个 LLM 模型
|
||||
- 有足够的 API 配额支撑多模型请求
|
||||
|
||||
!!! warning "资源消耗"
|
||||
此 Pipeline 每次请求会进行多次 API 调用,请关注用量与成本。
|
||||
|
||||
---
|
||||
|
||||
## 源码
|
||||
|
||||
[:fontawesome-brands-github: 在 GitHub 查看](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/pipelines){ .md-button }
|
||||
73
docs/plugins/pipelines/wisdom-synthesizer.md
Normal file
73
docs/plugins/pipelines/wisdom-synthesizer.md
Normal file
@@ -0,0 +1,73 @@
|
||||
# Wisdom Synthesizer (Collective Wisdom Synthesizer)
|
||||
|
||||
An external pipeline filter (Pipeline/Filter) for **Open WebUI** that intercepts multi-model aggregate requests to leverage collective wisdom, reshaping **basic and linear aggregate outputs** into structured, high-contrast **expert analysis reports**.
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## 🚀 Key Features
|
||||
|
||||
* **Smart Interception**: Automatically catches Open WebUI's “Summarize various models' responses” requests.
|
||||
* **Dynamic Parsing**: Strips away generic formatting and precisely extracts the **original user query** and **each model's individual response**.
|
||||
* **Wisdom Fusion**: Directs the summary model to act as a “Chief Analyst”, enforcing a critical evaluation workflow instead of generic merging.
|
||||
* **Standardized Output Structure**: Guarantees output layout includes:
|
||||
* **【Core Consensus】**: Aggregated common ground across models.
|
||||
* **【Key Divergences】**: Comparative breakdown of different perspectives/approaches.
|
||||
* **【Unique Insights】**: Spotlighting innovative points found in a single model.
|
||||
* **【Synthesis & Recommendation】**: An action-oriented, blended strategy set.
|
||||
|
||||
---
|
||||
|
||||
## 📦 Installation & Usage (Pipelines Mode)
|
||||
|
||||
> [!IMPORTANT]
|
||||
> **Prerequisite**:
|
||||
> This plugin relies on the official **[open-webui/pipelines](https://github.com/open-webui/pipelines)** framework. Please ensure your Open WebUI backend is already connected to an active `pipelines` runner environment beforehand.
|
||||
|
||||
This plugin runs as a single-file pipeline filter component and supports importing with just a single click:
|
||||
|
||||
### 🚀 One-Click Import via URL (Recommended 🌟)
|
||||
|
||||
1. Log into your Open WebUI board, go to **Admin settings** -> **Pipelines** tab.
|
||||
2. Click **“Add Pipeline”** and paste the **GitHub Raw link** of `wisdom_synthesizer.py` into the address bar.
|
||||
3. Save configurations to load automatically.
|
||||
|
||||
Below is the visual operational guide for getting it loaded:
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## ⚙️ Valves Configuration
|
||||
|
||||
Configuration items inside safe Valves toggles:
|
||||
|
||||
| Parameter | Default | Description |
|
||||
| :--- | :--- | :--- |
|
||||
| `pipelines` | `["*"]` | Target model IDs to apply this Filter to *(Keep default for global)* |
|
||||
| `priority` | `0` | Filter pipeline execution order priority (lower numbers execute first). |
|
||||
| `model_id` | `None` | (Optional) Force the summarize job to run on a dedicated high-spec summary model. |
|
||||
| `trigger_prefix` | `You have been provided...` | Pre-set phrase to trigger interception. Usually requires no changes. |
|
||||
| `query_start_marker` | `'the latest user query: "'` | Anchor used to locate the start of the original query. |
|
||||
| `query_end_marker` | `'"\n\nYour task is to'` | Anchor used to locate the end of the original query. |
|
||||
| `response_start_marker` | `"Responses from models: "` | Anchor used to locate where the model responses begin. |
|
||||
|
||||
> [!TIP]
|
||||
> **Configuration Tip**:
|
||||
> The default `["*"]` allows the filter to securely adapt to any aggregator models chosen on the fly. In most scenarios, **keeping this default configuration** is highly recommended.
|
||||
|
||||
---
|
||||
|
||||
## 🤝 Related Projects
|
||||
|
||||
If you're building inside the Open WebUI ecosystem, you might find my other plugins sets helpful:
|
||||
|
||||
* 🚀 **[openwebui-extensions](https://github.com/Fu-Jie/openwebui-extensions)** —— A comprehensive collection of Actions, Pipes, and Tools to supercharge your workspace.
|
||||
* 🪄 **[open-webui-prompt-plus](https://github.com/Fu-Jie/open-webui-prompt-plus)** —— Enhances Prompt engineering with AI-powered generators, Spotlight-style searches, and interactive forms.
|
||||
|
||||
---
|
||||
|
||||
## 📄 License
|
||||
|
||||
[MIT License](LICENSE)
|
||||
73
docs/plugins/pipelines/wisdom-synthesizer.zh.md
Normal file
73
docs/plugins/pipelines/wisdom-synthesizer.zh.md
Normal file
@@ -0,0 +1,73 @@
|
||||
# Wisdom Synthesizer (集体智慧合成器)
|
||||
|
||||
专为 **Open WebUI** 设计的外置管道过滤器(Pipeline/Filter),旨在通过智能拦截并重构多模型汇总请求,发挥集体智慧(Collective Wisdom),将原本较为**基础和扁平的常规汇总**熔炼为结构清晰、具备多维对比度的**专家级综合分析报告**。
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## 🚀 核心功能
|
||||
|
||||
* **智能拦截**:自动捕获 Open WebUI 的“汇总多模型响应”请求(通过内置前缀触发)。
|
||||
* **动态解析**:剥离多余格式,精准提取**原始用户问题**与**各模型的独立回答**。
|
||||
* **智慧融合**:摒弃基础的模型合并,强制总结模型扮演“首席分析师”,发挥集体智慧审视全局。
|
||||
* **规范输出**:将汇总响应熔炼为以下结构:
|
||||
* **【核心共识】**: 提炼模型间的相同点。
|
||||
* **【关键分歧】**: 对比不同视角的碰撞。
|
||||
* **【独特洞察】**: 发现单一模型闪光点。
|
||||
* **【综合建议】**: 最终形成有弹性的熔铸方案。
|
||||
|
||||
---
|
||||
|
||||
## 📦 安装与使用 (Pipelines 模式)
|
||||
|
||||
> [!IMPORTANT]
|
||||
> **前提条件**:
|
||||
> 本插件依赖于 Open WebUI 官方的 **[open-webui/pipelines](https://github.com/open-webui/pipelines)** 框架插件系统。请确保你的 Open WebUI 后端已经架设好或已连接底层的 `pipelines` 服务端环境。
|
||||
|
||||
本插件为单文件管道过滤组件,支持在面板中一键拉取安装:
|
||||
|
||||
### 🚀 通过 URL 一键导入 (推荐 🌟)
|
||||
|
||||
1. 登录你的 Open WebUI 后台,进入 **管理员设置** -> **Pipelines** 选项卡。
|
||||
2. 点击 **“添加 Pipeline”**,并在地址栏中复制贴入此仓库中 `wisdom_synthesizer.py` 的 **GitHub Raw 链接**。
|
||||
3. 点击 **保存** 即可成功加载。
|
||||
|
||||
以下是操作动态演示:
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## ⚙️ Valves 管道配置
|
||||
|
||||
进入管道配置项,可动态调整以下参数:
|
||||
|
||||
| 参数 | 默认值 | 说明 |
|
||||
| :--- | :--- | :--- |
|
||||
| `pipelines` | `["*"]` | 应用此 Filter 的目标模型 ID *(如果要全局生效保持默认)* |
|
||||
| `priority` | `0` | 过滤器管道执行优先级(数字越小,越优先执行) |
|
||||
| `model_id` | `None` | (可选) 强制将汇总任务流向你指定的某个专用高性能总结模型 |
|
||||
| `trigger_prefix` | `You have been provided...` | 用于触发拦截的提示词起始句柄前缀。一般无需修改 |
|
||||
| `query_start_marker` | `'the latest user query: "'` | 解析原始查询的起始标记锚点 |
|
||||
| `query_end_marker` | `'"\n\nYour task is to'` | 解析原始查询的结束标记锚点 |
|
||||
| `response_start_marker` | `"Responses from models: "` | 解析各个模型独立响应的起始锚点标志 |
|
||||
|
||||
> [!TIP]
|
||||
> **配置建议**:
|
||||
> 默认值 `["*"]` 可在所有选定的汇总模型上自适应生效。在绝大多数情况下,你**仅需保持此默认参数**便可保障全局自适应拦截。
|
||||
|
||||
---
|
||||
|
||||
## 🤝 友情链接 (Related Projects)
|
||||
|
||||
如果你对 Open WebUI 的扩展生态感兴趣,欢迎关注我的其它开源方案:
|
||||
|
||||
* 🚀 **[openwebui-extensions](https://github.com/Fu-Jie/openwebui-extensions)** —— 包含各种增强 Actions、Pipes、Tools 等一篮子开源插件合集,助你解锁更多黑魔法。
|
||||
* 🪄 **[open-webui-prompt-plus](https://github.com/Fu-Jie/open-webui-prompt-plus)** —— 包含 AI 驱动的提示词生成器、Spotlight 搜索框及交互变量表单,极速拉满提示词工程。
|
||||
|
||||
---
|
||||
|
||||
## 📄 开源许可
|
||||
|
||||
[MIT License](LICENSE)
|
||||
@@ -1,6 +1,6 @@
|
||||
# GitHub Copilot SDK Pipe for OpenWebUI
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v0.10.1 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v0.12.1 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -26,11 +26,25 @@ This is a powerful **GitHub Copilot SDK** Pipe for **OpenWebUI** that provides a
|
||||
|
||||
---
|
||||
|
||||
## ✨ v0.10.1: RichUI Default & Improved HTML Display
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
- **🎨 RichUI Default HTML Display**: Changed default HTML embed type from 'artifacts' to 'richui' for direct, seamless rendering in OpenWebUI chat interface
|
||||
- **📝 Enhanced System Prompt**: Updated guidance to recommend RichUI mode for HTML presentation by default, with artifacts only when explicitly requested by users
|
||||
- **⚡ Smoother Workflow**: Eliminates unnecessary modal interactions, allowing agents to display interactive components directly in conversation
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## ✨ v0.12.0: Adaptive Actions Console, Stream Deduplication & Full TTFT Profiling
|
||||
|
||||
- **📊 Predictive Adaptive Console**: Automatically models continuous decision layouts using `interactive_controls` state tables on the per-session workspace database so visual panels don't go stale.
|
||||
- **🛡️ Stream Overlap Deduplication**: Mitigated overlay dual delivery bugs on `assistant.message_delta` frames using conservative overlap trimming rules during turn resumptions.
|
||||
- **⏱️ Segmented Profiling Loadtimes**: Fine-grained timers identifying local startup overhead and pure cloud network turnaround time tracking calibration.
|
||||
- **🧹 Eliminate Redundancies**: Reduced redundant secondary heavy `_parse_mcp_servers()` loops inside session resumes for faster handshake callbacks.
|
||||
|
||||
---
|
||||
|
||||
@@ -45,6 +59,59 @@ This is a powerful **GitHub Copilot SDK** Pipe for **OpenWebUI** that provides a
|
||||
|
||||
---
|
||||
|
||||
## 🚀 Quick Start (Read This First)
|
||||
|
||||
If you only want to know how to use this plugin, read these sections in order:
|
||||
|
||||
1. **Quick Start**
|
||||
2. **How to Use**
|
||||
3. **Core Configuration**
|
||||
|
||||
Everything else is optional or advanced.
|
||||
|
||||
1. **Install the Pipe**
|
||||
- **Recommended**: Use **Batch Install Plugins** and select this plugin.
|
||||
- **Manual**: OpenWebUI -> **Workspace** -> **Functions** -> create a new function -> paste `github_copilot_sdk.py`.
|
||||
2. **Install the Companion Files Filter** if you want uploaded files to reach the Pipe as raw files.
|
||||
3. **Configure one credential path**
|
||||
- `GH_TOKEN` for official GitHub Copilot models
|
||||
- or `BYOK_API_KEY` for OpenAI / Anthropic
|
||||
4. **Start a new chat and use it normally**
|
||||
- Select this Pipe's model
|
||||
- Ask your task in plain language
|
||||
- Upload files when needed
|
||||
|
||||
## 🧭 How to Use
|
||||
|
||||
You usually **do not** need to mention tools, skills, internal parameters, or RichUI syntax. Just describe the task naturally.
|
||||
|
||||
| Scenario | What you do | Example |
|
||||
| :--- | :--- | :--- |
|
||||
| Daily coding / debugging | Ask normally in chat | `Fix the failing tests and explain the root cause.` |
|
||||
| File analysis | Upload files and ask normally | `Summarize this Excel file and chart the monthly trend.` |
|
||||
| Long tasks | Ask for the outcome; the Pipe handles planning, status, and TODO tracking automatically | `Refactor this plugin and keep the docs in sync.` |
|
||||
| HTML reports / dashboards | Ask the agent to generate a report or dashboard | `Create an interactive architecture overview for this repo.` |
|
||||
|
||||
> [!TIP]
|
||||
> Ordinary users only need to remember one rule: if you ask for an interactive HTML result, the Pipe will usually use **RichUI** automatically. Only mention **artifacts** when you explicitly want artifacts-style output.
|
||||
|
||||
## 💡 What RichUI actually means
|
||||
|
||||
**RichUI = the generated HTML page is rendered directly inside the chat window.**
|
||||
|
||||
You can think of it as **a small interactive page inside the conversation**.
|
||||
|
||||
- If the agent generates a dashboard, report, timeline, architecture page, or explainer page, you may see RichUI.
|
||||
- If you are just asking normal coding questions, debugging, writing, or file analysis tasks, you can ignore RichUI completely.
|
||||
- You do **not** need to write XML, HTML tags, or special RichUI attributes. Just describe the result you want.
|
||||
|
||||
| What you ask for | What happens |
|
||||
| :--- | :--- |
|
||||
| `Fix this failing test` | Normal chat response. RichUI is not important here. |
|
||||
| `Create an interactive dashboard for this repo` | RichUI is used by default. |
|
||||
| `Generate this as artifacts` | Artifacts mode is used instead of RichUI. |
|
||||
| `Build a project summary page if that helps explain it better` | The agent decides whether a page is useful. |
|
||||
|
||||
## ✨ Key Capabilities
|
||||
|
||||
- **🔑 Unified Intelligence (Official + BYOK)**: Seamlessly switch between official GitHub Copilot models and your own models (OpenAI, Anthropic, DeepSeek, xAI) via **Bring Your Own Key** mode.
|
||||
@@ -68,6 +135,25 @@ This is a powerful **GitHub Copilot SDK** Pipe for **OpenWebUI** that provides a
|
||||
> "Install this skill: <https://github.com/nicobailon/visual-explainer>".
|
||||
> This skill is specifically optimized for generating high-quality visual components and integrates perfectly with this Pipe.
|
||||
|
||||
### 🎛️ How RichUI works in normal use
|
||||
|
||||
For normal users, the rule is simple:
|
||||
|
||||
1. Ask for the result you want.
|
||||
2. The AI decides whether a normal chat reply is enough.
|
||||
3. If a page or dashboard would explain things better, the AI creates it automatically and shows it in chat.
|
||||
|
||||
You do **not** need to write XML tags, HTML snippets, or RichUI attributes yourself.
|
||||
|
||||
Examples:
|
||||
|
||||
- `Explain this repository structure.`
|
||||
- `If useful, present this as an interactive architecture page.`
|
||||
- `Turn this CSV into a simple dashboard.`
|
||||
|
||||
> [!TIP]
|
||||
> Only mention **artifacts** when you explicitly want artifacts-style output. Otherwise, let the AI choose the best presentation automatically.
|
||||
|
||||
---
|
||||
|
||||
## 🧩 Companion Files Filter (Required for raw files)
|
||||
@@ -127,17 +213,27 @@ Standard users can override these settings in their individual Profile/Function
|
||||
|
||||
---
|
||||
|
||||
### 📤 Enhanced Publishing & Interactive Components
|
||||
### 📤 HTML result behavior (advanced)
|
||||
|
||||
The `publish_file_from_workspace` tool now uses a clearer delivery contract for production use:
|
||||
You can skip this section unless you are directly using `publish_file_from_workspace(...)`.
|
||||
|
||||
- **Artifacts mode (`artifacts`, default)**: Agent returns `[Preview]` + `[Download]` and may output `html_embed` in a ```html block for direct chat rendering.
|
||||
- **Rich UI mode (`richui`)**: Agent returns `[Preview]` + `[Download]` only; integrated preview is rendered automatically via emitter (no iframe block in message).
|
||||
- **📄 PDF delivery safety rule**: Always output Markdown links only (`[Preview]` + `[Download]` when available). **Do not embed PDF via iframe/html blocks.**
|
||||
- **⚡ Stable dual-channel publishing**: Keeps interactive viewing and persistent file download aligned across local/object-storage backends.
|
||||
- **✅ Status integration**: Emits real-time publishing progress and completion feedback to the OpenWebUI status bar.
|
||||
In plain language:
|
||||
|
||||
- `richui` = show the generated HTML directly inside the chat
|
||||
- `artifacts` = use artifacts-style HTML delivery when you explicitly want that style
|
||||
|
||||
Internally, this behavior is controlled by the `embed_type` parameter of `publish_file_from_workspace(...)`.
|
||||
|
||||
- **Rich UI mode (`richui`, default for HTML)**: The agent returns `[Preview]` + `[Download]` only. OpenWebUI renders the interactive preview automatically after the message.
|
||||
- **Artifacts mode (`artifacts`)**: Use this only when you explicitly want artifacts-style HTML delivery.
|
||||
- **📄 PDF safety rule**: Always return Markdown links only (`[Preview]` / `[Download]` when available). Do not embed PDFs with iframe or HTML blocks.
|
||||
- **⚡ Stable dual-channel publishing**: Keeps interactive viewing and persistent file download aligned across local and object-storage backends.
|
||||
- **✅ Status integration**: Emits publishing progress and completion feedback to the OpenWebUI status bar.
|
||||
- **📘 Publishing Tool Guide (GitHub)**: [publish_file_from_workspace Guide](https://github.com/Fu-Jie/openwebui-extensions/blob/main/plugins/pipes/github-copilot-sdk/PUBLISH_FILE_FROM_WORKSPACE.md)
|
||||
|
||||
> [!TIP]
|
||||
> Most users do not need to set `embed_type` manually. Ask for a report or dashboard normally. Only say `use artifacts` when you specifically want artifacts-style presentation. If you are not calling `publish_file_from_workspace(...)` yourself, you can usually ignore this parameter.
|
||||
|
||||
---
|
||||
|
||||
### 🧩 OpenWebUI Skills Bridge & `manage_skills` Tool
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# GitHub Copilot Official SDK Pipe
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v0.10.1 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v0.12.1 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -27,11 +27,25 @@
|
||||
|
||||
---
|
||||
|
||||
## ✨ v0.10.1:RichUI 默认展示与 HTML 渲染改进
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
- **🎨 RichUI 默认 HTML 显示**:将默认 HTML 嵌入类型从 'artifacts' 改为 'richui',在 OpenWebUI 聊天界面中实现直观无缝的渲染效果
|
||||
- **📝 增强系统提示词**:更新系统提示词指导,默认推荐 RichUI 模式展示 HTML 内容,仅当用户显式请求时使用 artifacts 模式
|
||||
- **⚡ 更顺畅的工作流**:消除不必要的弹窗交互,让 Agent 能直接在对话中展示交互式组件
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## ✨ v0.12.0:自适应动作面板、流排重拦截与全链路 TTFT 测定
|
||||
|
||||
- **📊 连续自适应看板 (Adaptive Actions Console)**:自动在 `interactive_controls` 辅助常驻状态表中追踪动作,引导 LLM 有选择性地在最新输出中展示最可能用到的点击控制面板,实现不翻页连续持久化点击操作。
|
||||
- **🛡️ 叠加流排重拦截 (Deduplicate Stream overlap)**:对接 `_dedupe_stream_chunk` 保守重叠裁剪,彻底消除二轮对话流重叠叠加异常。
|
||||
- **⏱️ 分段 ⏱️ Profiling 埋点**:拆装本地预热阻断与云端网络 Trip 数据时间,直观测算 Time-to-First-Byte。
|
||||
- **🧹 消除冗余解析**:剔除 Resume 过程对 MCP 的二次昂贵循环,提效握手微观时延。
|
||||
|
||||
---
|
||||
|
||||
@@ -46,6 +60,59 @@
|
||||
|
||||
---
|
||||
|
||||
## 🚀 最短上手路径(先看这里)
|
||||
|
||||
如果你现在最关心的是“这个插件到底怎么用”,建议按这个顺序阅读:
|
||||
|
||||
1. **最短上手路径**
|
||||
2. **日常怎么用**
|
||||
3. **核心配置**
|
||||
|
||||
其他章节都属于补充说明或进阶内容。
|
||||
|
||||
1. **安装 Pipe**
|
||||
- **推荐**:使用 **Batch Install Plugins** 安装并勾选当前插件。
|
||||
- **手动**:OpenWebUI -> **Workspace** -> **Functions** -> 新建 Function -> 粘贴 `github_copilot_sdk.py`。
|
||||
2. **如果你要处理上传文件**,再安装配套的 `GitHub Copilot SDK Files Filter`。
|
||||
3. **至少配置一种凭据**
|
||||
- `GH_TOKEN`:使用 GitHub 官方 Copilot 模型
|
||||
- `BYOK_API_KEY`:使用 OpenAI / Anthropic 自带 Key
|
||||
4. **新建对话后直接正常提需求**
|
||||
- 选择当前 Pipe 的模型
|
||||
- 像平时一样描述任务
|
||||
- 需要时上传文件
|
||||
|
||||
## 🧭 日常怎么用
|
||||
|
||||
大多数情况下,你**不需要**主动提 tools、skills、内部参数或 RichUI 语法,直接自然描述任务即可。
|
||||
|
||||
| 场景 | 你怎么做 | 示例 |
|
||||
| :--- | :--- | :--- |
|
||||
| 日常编码 / 排错 | 直接在聊天里提需求 | `修复失败的测试,并解释根因。` |
|
||||
| 文件分析 | 上传文件后直接提需求 | `总结这个 Excel,并画出每月趋势图。` |
|
||||
| 长任务 | 只要说出目标即可;Pipe 会自动处理规划、状态提示和 TODO 跟踪 | `重构这个插件,并同步更新文档。` |
|
||||
| HTML 报告 / 看板 | 直接让 Agent 生成交互式报告或看板 | `帮我生成这个仓库的交互式架构总览。` |
|
||||
|
||||
> [!TIP]
|
||||
> 普通用户只要记住一条:如果你让 Agent 生成交互式 HTML 结果,这个 Pipe 通常会自动使用 **RichUI**。只有当你明确想要 artifacts 风格时,才需要特别说明。
|
||||
|
||||
## 💡 RichUI 到底是什么意思?
|
||||
|
||||
**RichUI = Agent 生成的 HTML 页面,会直接显示在聊天窗口里。**
|
||||
|
||||
你可以把它理解为:**对话里面直接出现一个可交互的小网页 / 小看板**。
|
||||
|
||||
- 如果 Agent 生成的是看板、报告、时间线、架构图页面或说明型页面,你就可能会看到 RichUI。
|
||||
- 如果你只是正常问代码问题、调试、写文档、分析文件,其实可以完全忽略 RichUI。
|
||||
- 你**不需要**自己写 XML、HTML 标签或任何特殊 RichUI 属性,直接描述你想要的结果即可。
|
||||
|
||||
| 你怎么说 | 系统会怎么做 |
|
||||
| :--- | :--- |
|
||||
| `修复这个失败测试` | 正常聊天回复,这时 RichUI 基本不重要。 |
|
||||
| `帮我生成一个交互式仓库看板` | 默认使用 RichUI。 |
|
||||
| `请用 artifacts 形式生成` | 改用 artifacts,而不是 RichUI。 |
|
||||
| `如果做成页面更清楚,就帮我做成页面` | AI 会自己判断页面是否更合适。 |
|
||||
|
||||
## ✨ 核心能力 (Key Capabilities)
|
||||
|
||||
- **🔑 统一智能体验 (官方 + BYOK)**: 自由切换官方模型与自定义服务商(OpenAI, Anthropic, DeepSeek, xAI),支持 **BYOK (自带 Key)** 模式。
|
||||
@@ -69,6 +136,25 @@
|
||||
> “请安装此技能:<https://github.com/nicobailon/visual-explainer”。>
|
||||
> 该技能专为生成高质量可视化组件而设计,能够与本 Pipe 完美协作。
|
||||
|
||||
### 🎛️ RichUI 在日常使用里怎么理解
|
||||
|
||||
对普通用户来说,规则很简单:
|
||||
|
||||
1. 直接说出你想要的结果。
|
||||
2. AI 会自己判断普通聊天回复是否已经足够。
|
||||
3. 如果做成页面、看板或可视化会更清楚,AI 会自动生成并直接显示在聊天里。
|
||||
|
||||
你**不需要**自己写 XML 标签、HTML 片段或 RichUI 属性。
|
||||
|
||||
例如:
|
||||
|
||||
- `请解释这个仓库的结构。`
|
||||
- `如果用交互式架构页更清楚,就做成页面。`
|
||||
- `把这个 CSV 做成一个简单看板。`
|
||||
|
||||
> [!TIP]
|
||||
> 只有当你明确想要 **artifacts 风格** 时,才需要特别说明。其他情况下,直接让 AI 自动选择最合适的展示方式即可。
|
||||
|
||||
---
|
||||
|
||||
## 🧩 配套 Files Filter(原始文件必备)
|
||||
@@ -76,7 +162,7 @@
|
||||
`GitHub Copilot SDK Files Filter` 是本 Pipe 的配套插件,用于阻止 OpenWebUI 默认 RAG 在 Pipe 接手前抢先处理上传文件。
|
||||
|
||||
- **作用**: 将上传文件移动到 `copilot_files`,让 Pipe 能直接读取原始二进制。
|
||||
- **必要性**: 若未安装,文件可能被提前解析/向量化,Agent 拿到原始文件。
|
||||
- **必要性**: 若未安装,文件可能被提前解析/向量化,Agent 可能拿不到原始文件。
|
||||
- **v0.1.3 重点**:
|
||||
- 修复 BYOK 模型 ID 识别(支持 `github_copilot_official_sdk_pipe.xxx` 前缀匹配)。
|
||||
- 新增双通道调试日志(`show_debug_log`):后端 logger + 浏览器控制台。
|
||||
@@ -161,6 +247,28 @@
|
||||
|
||||
---
|
||||
|
||||
## 📤 HTML 结果展示方式(进阶)
|
||||
|
||||
如果你没有直接使用 `publish_file_from_workspace(...)`,这一节可以跳过。
|
||||
|
||||
先用一句人话解释:
|
||||
|
||||
- `richui` = 生成的 HTML 直接显示在聊天里
|
||||
- `artifacts` = 你明确想要 artifacts 风格时使用的另一种 HTML 交付方式
|
||||
|
||||
在内部实现上,这个行为由 `publish_file_from_workspace(..., embed_type=...)` 控制。
|
||||
|
||||
- **RichUI 模式(`richui`,HTML 默认)**:Agent 只返回 `[Preview]` + `[Download]`,聊天结束后由 OpenWebUI 自动渲染交互预览。
|
||||
- **Artifacts 模式(`artifacts`)**:只有在你明确想要 artifacts 风格展示时再使用。
|
||||
- **PDF 安全规则**:PDF 只返回 Markdown 链接,不要用 iframe / HTML block 嵌入。
|
||||
- **双通道发布**:同时兼顾对话内查看与持久下载。
|
||||
- **状态提示**:发布过程会同步显示在 OpenWebUI 状态栏。
|
||||
|
||||
> [!TIP]
|
||||
> 如果你只是日常使用这个 Pipe,通常不需要手动提 `embed_type`。直接说“生成一个交互式报告 / 看板”即可;只有你明确想要 artifacts 风格时再特别说明。如果你并没有直接调用 `publish_file_from_workspace(...)`,那通常可以忽略这个参数。
|
||||
|
||||
---
|
||||
|
||||
## 🤝 支持 (Support)
|
||||
|
||||
如果这个插件对你有帮助,欢迎到 [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions) 点个 Star,这将是我持续改进的动力,感谢支持。
|
||||
|
||||
@@ -15,7 +15,7 @@ Pipes allow you to:
|
||||
|
||||
## Available Pipe Plugins
|
||||
|
||||
- [GitHub Copilot SDK](github-copilot-sdk.md) (v0.10.1) - Official GitHub Copilot SDK integration. Features **Workspace Isolation**, **Zero-config OpenWebUI Tool Bridge**, **BYOK** support, and **dynamic MCP discovery**. **NEW in v0.10.1: RichUI Default HTML Display & Enhanced System Prompt guidance**. [View Deep Dive](github-copilot-sdk-deep-dive.md) | [**View Advanced Tutorial**](github-copilot-sdk-tutorial.md) | [**View Detailed Usage Guide**](github-copilot-sdk-usage-guide.md).
|
||||
- [GitHub Copilot SDK](github-copilot-sdk.md) (v0.12.1) - Official GitHub Copilot SDK integration. Features **Workspace Isolation**, **Zero-config OpenWebUI Tool Bridge**, **BYOK** support, and **dynamic MCP discovery**. **NEW in v0.12.1: Disable terminal tools for AI, RichUI theme-aware CSS variables**. [View Deep Dive](github-copilot-sdk-deep-dive.md) | [**View Advanced Tutorial**](github-copilot-sdk-tutorial.md) | [**View Detailed Usage Guide**](github-copilot-sdk-usage-guide.md).
|
||||
- **[Case Study: GitHub 100 Star Growth Analysis](star-prediction-example.md)** - Learn how to use the GitHub Copilot SDK Pipe with Minimax 2.1 to automatically analyze CSV data and generate project growth reports.
|
||||
- **[Case Study: High-Quality Video to GIF Conversion](video-processing-example.md)** - See how the model uses system-level FFmpeg to accelerate, scale, and optimize colors for screen recordings.
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ Pipes 可以用于:
|
||||
|
||||
## 可用的 Pipe 插件
|
||||
|
||||
- [GitHub Copilot SDK](github-copilot-sdk.zh.md) (v0.10.1) - GitHub Copilot SDK 官方集成。具备**工作区安全隔离**、**零配置工具桥接**与**BYOK (自带 Key) 支持**。**v0.10.1 更新:RichUI 默认 HTML 展示与增强的系统提示词指导**。[查看深度架构解析](github-copilot-sdk-deep-dive.zh.md) | [**查看进阶实战教程**](github-copilot-sdk-tutorial.zh.md) | [**查看详细使用手册**](github-copilot-sdk-usage-guide.zh.md)。
|
||||
- [GitHub Copilot SDK](github-copilot-sdk.zh.md) (v0.12.1) - GitHub Copilot SDK 官方集成。具备**工作区安全隔离**、**零配置工具桥接**与**BYOK (自带 Key) 支持**。**v0.12.1 更新:禁用终端工具 AI 调用、RichUI 主题感知 CSS 变量**。[查看深度架构解析](github-copilot-sdk-deep-dive.zh.md) | [**查看进阶 实战教程**](github-copilot-sdk-tutorial.zh.md) | [**查看详细使用手册**](github-copilot-sdk-usage-guide.zh.md)。
|
||||
- **[实战案例:GitHub 100 Star 增长预测](star-prediction-example.zh.md)** - 展示如何使用 GitHub Copilot SDK Pipe 结合 Minimax 2.1 模型,自动编写脚本分析 CSV 数据并生成详细的项目增长报告。
|
||||
- **[实战案例:视频高质量 GIF 转换与加速](video-processing-example.zh.md)** - 演示模型如何通过底层 FFmpeg 工具对录屏进行加速、缩放及双阶段色彩优化处理。
|
||||
|
||||
|
||||
@@ -8,6 +8,23 @@
|
||||
|
||||
One-click batch install plugins from GitHub repositories to your OpenWebUI instance.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
After you install [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) once, you can also use it to reinstall or update itself with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
> [!TIP]
|
||||
> **💡 Looking to batch install or manage Workspace Skills?**
|
||||
> This plugin specializes in installing global function-based plugins (Pipe, Filter, Tool, Action). If you need to manage your AI assistant's dedicated Skills, use our companion tool [OpenWebUI Skills Manager](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4), which provides full CRUD capabilities, batch discovery, and interactive selection dialogs.
|
||||
|
||||
## Key Features
|
||||
|
||||
- **One-Click Install**: Install all plugins with a single command
|
||||
|
||||
@@ -8,6 +8,23 @@
|
||||
|
||||
一键将 GitHub 仓库中的插件批量安装到你的 OpenWebUI 实例。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
当你已经安装过一次 [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) 后,也可以用同一句来重新安装或更新它自己:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
> [!TIP]
|
||||
> **💡 想要批量安装/管理 Workspace 技能 (Skills)?**
|
||||
> 本插件专注安装全局函数型插件(Pipe/Filter/Tool/Action)。如果你需要管理 AI 助手的专属技能,请使用同系列的 [OpenWebUI Skills Manager](https://openwebui.com/posts/openwebui_skills_manager_tool_b4bce8e4) 工具,它具备完整的增删改查、批量发现及可视化浮层点选能力。
|
||||
|
||||
## 主要功能
|
||||
|
||||
- 一键安装:单个命令安装所有插件
|
||||
|
||||
@@ -5,5 +5,5 @@ OpenWebUI native Tool plugins that can be used across models.
|
||||
## Available Tool Plugins
|
||||
|
||||
- [Batch Install Plugins from GitHub](batch-install-plugins-tool.md) (v1.1.0) - One-click batch install plugins from GitHub repositories with an interactive selection dialog and multi-language support.
|
||||
- [OpenWebUI Skills Manager Tool](openwebui-skills-manager-tool.md) (v0.3.0) - Simple native skill management (`list/show/install/create/update/delete`).
|
||||
- [OpenWebUI Skills Manager Tool](openwebui-skills-manager-tool.md) (v0.3.1) - Native skill management with multi-line `SKILL.md` frontmatter description support.
|
||||
- [Smart Mind Map Tool](smart-mind-map-tool.md) (v1.0.0) - Intelligently analyzes text content and proactively generates interactive mind maps to help users structure and visualize knowledge.
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
## 可用 Tool 插件
|
||||
|
||||
- [Batch Install Plugins from GitHub](batch-install-plugins-tool.zh.md) (v1.1.0) - 一键从 GitHub 仓库批量安装插件,支持交互式选择对话框和多语言。
|
||||
- [OpenWebUI Skills 管理工具](openwebui-skills-manager-tool.zh.md) (v0.3.0) - 简化技能管理(`list/show/install/create/update/delete`)。
|
||||
- [OpenWebUI Skills 管理工具](openwebui-skills-manager-tool.zh.md) (v0.3.1) - 支持多行 `SKILL.md` frontmatter 描述的原生技能管理工具。
|
||||
- [智能思维导图工具 (Smart Mind Map Tool)](smart-mind-map-tool.zh.md) (v1.0.0) - 智能分析文本内容并主动生成交互式思维导图,帮助用户结构化与可视化知识。
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# OpenWebUI Skills Manager Tool
|
||||
|
||||
**Author:** [Fu-Jie](https://github.com/Fu-Jie/openwebui-extensions) | **Version:** 0.3.0 | **Project:** [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions)
|
||||
**Author:** [Fu-Jie](https://github.com/Fu-Jie/openwebui-extensions) | **Version:** 0.3.1 | **Project:** [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions)
|
||||
|
||||
A standalone OpenWebUI Tool plugin for managing native Workspace Skills across models.
|
||||
|
||||
## What's New
|
||||
|
||||
- Added GitHub skills-directory auto-discovery for `install_skill` (e.g., `.../tree/main/skills`) to install all child skills in one request.
|
||||
- Fixed language detection with robust frontend-first fallback (`__event_call__` + timeout), request header fallback, and profile fallback.
|
||||
- `install_skill` now supports multi-line `description: >` / `description: |` frontmatter blocks when importing remote `SKILL.md` files.
|
||||
- Added metadata fallback to use `title` when `name` is missing, plus regression tests for CRLF and YAML block scalars.
|
||||
|
||||
## Key Features
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# OpenWebUI Skills 管理工具
|
||||
|
||||
**Author:** [Fu-Jie](https://github.com/Fu-Jie/openwebui-extensions) | **Version:** 0.3.0 | **Project:** [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions)
|
||||
**Author:** [Fu-Jie](https://github.com/Fu-Jie/openwebui-extensions) | **Version:** 0.3.1 | **Project:** [OpenWebUI Extensions](https://github.com/Fu-Jie/openwebui-extensions)
|
||||
|
||||
一个可跨模型使用的 OpenWebUI 原生 Tool 插件,用于管理 Workspace Skills。
|
||||
|
||||
## 最新更新
|
||||
|
||||
- `install_skill` 新增 GitHub 技能目录自动发现(例如 `.../tree/main/skills`),可一键安装目录下所有子技能。
|
||||
- 修复语言获取逻辑:前端优先(`__event_call__` + 超时保护),并回退到请求头与用户资料。
|
||||
- `install_skill` 现已支持远程 `SKILL.md` 中的多行 `description: >` / `description: |` frontmatter 描述。
|
||||
- 新增 `title` 作为 `name` 缺失时的元数据回退,并补齐 CRLF 与 YAML 块标量回归测试。
|
||||
|
||||
## 核心特性
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 🧰 OpenWebUI Skills Manager Tool
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v0.3.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v0.3.1 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,12 +8,28 @@
|
||||
|
||||
A standalone OpenWebUI Tool plugin to manage native **Workspace > Skills** for any model.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New
|
||||
|
||||
- **🤖 Automatic Repo Root Discovery**: Install any GitHub repo by providing just the root URL (e.g., `https://github.com/owner/repo`). System auto-converts to discovery mode and installs all skills.
|
||||
- **🔄 Batch Deduplication**: Automatically removes duplicate URLs from batch installations and detects duplicate skill names.
|
||||
- Added GitHub skills-directory auto-discovery for `install_skill` (e.g., `.../tree/main/skills`) to install all child skills in one request.
|
||||
- Fixed language detection with robust frontend-first fallback (`__event_call__` + timeout), request header fallback, and profile fallback.
|
||||
- **📝 Multi-line Frontmatter Descriptions**: `install_skill` now correctly parses `description: >` and `description: |` blocks in remote `SKILL.md` files, so imported skill descriptions no longer truncate to a single line.
|
||||
- **↩️ Better Metadata Fallbacks**: If a skill frontmatter provides `title` without `name`, the installer now uses that title before falling back to directory-based names.
|
||||
- **🧪 Regression Coverage**: Added focused tests for folded/literal YAML blocks and CRLF line endings to keep external skill imports stable.
|
||||
|
||||
> [!TIP]
|
||||
> **💡 Looking to batch install global plugins (Actions, Filters, Pipes, Tools)?**
|
||||
> This plugin specializes in managing Workspace Skills for your assistants. If you need to install and manage global function-based plugins, use our companion tool [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) for an optimized installation workflow.
|
||||
|
||||
## Key Features
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 🧰 OpenWebUI Skills 管理工具
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v0.3.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v0.3.1 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,12 +8,28 @@
|
||||
|
||||
一个 OpenWebUI 原生 Tool 插件,用于让任意模型直接管理 **Workspace > Skills**。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 最新更新
|
||||
|
||||
- **🤖 自动发现仓库根目录**:现在可以直接提供 GitHub 仓库根 URL(如 `https://github.com/owner/repo`),系统会自动转换为发现模式并安装所有 skill。
|
||||
- **🔄 批量去重**:自动清除重复 URL,检测重复的 skill 名称。
|
||||
- `install_skill` 新增 GitHub 技能目录自动发现(例如 `.../tree/main/skills`),可一键安装目录下所有子技能。
|
||||
- 修复语言获取逻辑:前端优先(`__event_call__` + 超时保护),并回退到请求头与用户资料。
|
||||
- **📝 支持多行 Frontmatter 描述**:`install_skill` 现在可以正确解析远程 `SKILL.md` 里的 `description: >` 和 `description: |`,导入后的技能描述不再被截断成单行。
|
||||
- **↩️ 更稳的元数据回退**:当 frontmatter 只有 `title` 没有 `name` 时,安装器会优先使用 `title`,避免退回到通用目录名。
|
||||
- **🧪 回归测试补齐**:新增 folded/literal YAML 块和 CRLF 换行场景测试,保证外部技能导入行为稳定。
|
||||
|
||||
> [!TIP]
|
||||
> **💡 想要批量安装/管理全局插件 (Actions, Filters, Pipes, Tools)?**
|
||||
> 本插件专注管理工作区的 AI 技能 (Skills)。如果你需要安装和管理全局函数型插件,请使用同系列的 [Batch Install Plugins from GitHub](https://openwebui.com/posts/batch_install_plugins_install_popular_plugins_in_s_c9fd6e80) 工具,不仅安装体验极致,而且完美接轨系统扩展体系。
|
||||
|
||||
## 核心特性
|
||||
|
||||
|
||||
@@ -12,6 +12,19 @@ Smart Mind Map Tool is the tool version of the popular Smart Mind Map action plu
|
||||
|
||||
---
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## Why is there a Tool version?
|
||||
|
||||
1. **Powered by OpenWebUI 0.8.0 Rich UI**: Previous versions of OpenWebUI did not support embedding custom HTML/iframes directly into the chat stream. Starting with 0.8.0, the platform introduced full Rich UI rendering support for **both Actions and Tools**, unleashing interactive frontend possibilities.
|
||||
|
||||
@@ -12,6 +12,19 @@
|
||||
|
||||
---
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🚀 为什么会有工具(Tool)版本?
|
||||
|
||||
1. **得益于 OpenWebUI 0.8.0 的 Rich UI 特性**:在以前的版本中,是不支持直接将自定义的 HTML/iframe 嵌入到对话流中的。而从 0.8.0 开始,平台不仅支持了这种顺滑的前端组件直出(Rich UI),而且同时对 **Action** 和 **Tool** 开放了该能力。
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Prompts
|
||||
|
||||
Discover carefully crafted system prompts to enhance your AI interactions.
|
||||
Discover carefully crafted system prompts to enhance your AI interactions and task orchestration.
|
||||
|
||||
---
|
||||
|
||||
@@ -23,7 +23,7 @@ Prompts are pre-written instructions that guide AI behavior. A well-crafted prom
|
||||
|
||||
---
|
||||
|
||||
Browse all available prompts organized by category with one-click copy functionality.
|
||||
Browse all available dynamic prompts templates with variables and manifest detail.
|
||||
|
||||
[:octicons-arrow-right-24: Open Library](library.md)
|
||||
|
||||
@@ -31,54 +31,26 @@ Prompts are pre-written instructions that guide AI behavior. A well-crafted prom
|
||||
|
||||
---
|
||||
|
||||
## Quick Access by Category
|
||||
## 📋 Available Prompts
|
||||
|
||||
### :material-code-braces: Coding & Development
|
||||
### 🔧 [AI Task Instruction Generator](library.md#ai-task-instruction-generator)
|
||||
Convert vague requirements into precise, AI-executable instructions. Fits standard prompt orchestration workflows.
|
||||
`Command: /ai-task-instruction`
|
||||
|
||||
Perfect for programming assistance, code review, and debugging.
|
||||
|
||||
- [Senior Developer Assistant](library.md#senior-developer-assistant)
|
||||
- [Code Debugger](library.md#code-debugger)
|
||||
- [Code Explainer](library.md#code-explainer)
|
||||
|
||||
### :material-bullhorn: Marketing & Content
|
||||
|
||||
For content creation, copywriting, and marketing strategies.
|
||||
|
||||
- [Content Writer](library.md#content-writer)
|
||||
- [Marketing Strategist](library.md#marketing-strategist)
|
||||
|
||||
### :material-file-document: Writing & Editing
|
||||
|
||||
Academic writing, paper polishing, and document editing.
|
||||
|
||||
- [Academic Paper Polisher](library.md#academic-paper-polisher)
|
||||
- [Document Formatter](library.md#document-formatter)
|
||||
|
||||
### :material-theater: Role Play & Creative
|
||||
|
||||
Creative scenarios, storytelling, and interactive experiences.
|
||||
|
||||
- [Character Role Player](library.md#character-role-player)
|
||||
- [Story Collaborator](library.md#story-collaborator)
|
||||
### 🔍 [One-Sentence Concept Explainer](library.md#one-sentence-concept-explainer)
|
||||
Explain advanced ideas in exactly one clear sentence adapting for any user tier.
|
||||
`Command: /one-sentence-concept-explainer`
|
||||
|
||||
---
|
||||
|
||||
## How to Use
|
||||
|
||||
### Method 1: System Prompt
|
||||
### Method: System prompt / In-Chat Command
|
||||
|
||||
1. Copy the prompt from the [Library](library.md)
|
||||
2. Go to OpenWebUI **Settings** → **Personalization**
|
||||
3. Paste in the **System Prompt** field
|
||||
4. Save and start a new conversation
|
||||
|
||||
### Method 2: In-Chat Prompt
|
||||
|
||||
1. Copy the prompt from the [Library](library.md)
|
||||
2. In any conversation, click the **Prompt** button
|
||||
3. Paste and save as a reusable prompt
|
||||
4. Select it from your saved prompts anytime
|
||||
1. Go to the [Library](library.md) or root `/prompts` folder to copy the prompt code.
|
||||
2. In OpenWebUI dashboard, navigate to **Workspace** -> **Prompts** and click **Create Prompt**.
|
||||
3. Paste the content and save.
|
||||
4. Type title or `/` follow with command name to activate in discussion.
|
||||
|
||||
---
|
||||
|
||||
@@ -90,9 +62,6 @@ Creative scenarios, storytelling, and interactive experiences.
|
||||
!!! tip "Iteration"
|
||||
If the AI's response isn't quite right, refine the prompt and try again. Small changes can have big impacts.
|
||||
|
||||
!!! tip "Specificity"
|
||||
The more specific your prompt, the better the results. Include examples, constraints, and desired output formats.
|
||||
|
||||
---
|
||||
|
||||
## Contribute
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
# 提示词
|
||||
# Prompts
|
||||
|
||||
发现精心编写的系统提示词,提升你的 AI 交互体验。
|
||||
发现精心调优的系统提示词(System Prompts),用于提升 AI 交互效率与任务编排结果。
|
||||
|
||||
---
|
||||
|
||||
## 什么是提示词?
|
||||
## 什么是提示词 (Prompts)?
|
||||
|
||||
提示词是预先编写的指令,用来引导 AI 的行为。好的提示词可以:
|
||||
提示词是引导 AI 行为的预设指令或模板。一个优秀的提示词可以:
|
||||
|
||||
- :material-target: 聚焦 AI 在特定任务上
|
||||
- :material-format-quote-close: 设定期望的语气与风格
|
||||
- :material-school: 明确专业领域与知识边界
|
||||
- :material-shield-check: 增加安全与质量规范
|
||||
- :material-target: **精准聚焦任务**。
|
||||
- :material-format-quote-close: **设定语气与输出风格**。
|
||||
- :material-school: **确立领域专家知识边界**。
|
||||
- :material-shield-check: **增加安全、负面约束和质量控制**。
|
||||
|
||||
---
|
||||
|
||||
@@ -19,84 +19,53 @@
|
||||
|
||||
<div class="grid cards" markdown>
|
||||
|
||||
- :material-library:{ .lg .middle } **完整提示词库**
|
||||
- :material-library:{ .lg .middle } **完整提示词库 (Full Library)**
|
||||
|
||||
---
|
||||
|
||||
按类别查看所有可用提示词,并支持一键复制。
|
||||
浏览我们收录的包含动态变量、触发命令和安装说明的全部提示词合集。
|
||||
|
||||
[:octicons-arrow-right-24: 打开提示词库](library.md)
|
||||
[:octicons-arrow-right-24: 打开词库](library.md)
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 分类快速访问
|
||||
## 📋 可用提示词列表
|
||||
|
||||
### :material-code-braces: 编程与开发
|
||||
### 🔧 [AI 任务指令生成器 (AI Task Instruction Generator)](library.md#ai-task-instruction-generator)
|
||||
将模糊的需求转换为精确、高度结构化的 AI 可执行指令,规范工作流。
|
||||
`触发指令: /ai-task-instruction`
|
||||
|
||||
用于编程助手、代码审查和调试。
|
||||
|
||||
- [Senior Developer Assistant](library.md#senior-developer-assistant)
|
||||
- [Code Debugger](library.md#code-debugger)
|
||||
- [Code Explainer](library.md#code-explainer)
|
||||
|
||||
### :material-bullhorn: 营销与内容
|
||||
|
||||
适用于内容创作、文案撰写与营销策略。
|
||||
|
||||
- [Content Writer](library.md#content-writer)
|
||||
- [Marketing Strategist](library.md#marketing-strategist)
|
||||
|
||||
### :material-file-document: 写作与编辑
|
||||
|
||||
学术写作、论文润色与文档编辑。
|
||||
|
||||
- [Academic Paper Polisher](library.md#academic-paper-polisher)
|
||||
- [Document Formatter](library.md#document-formatter)
|
||||
|
||||
### :material-theater: 角色扮演与创意
|
||||
|
||||
创意场景、故事讲述与互动体验。
|
||||
|
||||
- [Character Role Player](library.md#character-role-player)
|
||||
- [Story Collaborator](library.md#story-collaborator)
|
||||
### 🔍 [一句话概念解释器 (One-Sentence Concept Explainer)](library.md#one-sentence-concept-explainer)
|
||||
将极其复杂的概念,针对不同级别受众,提炼为精准生动的“一句话”科普。
|
||||
`触发指令: /one-sentence-concept-explainer`
|
||||
|
||||
---
|
||||
|
||||
## 使用方法
|
||||
## 如何使用
|
||||
|
||||
### 方式一:设置为 System Prompt
|
||||
### 方法: 系统提示词 / 快捷指令
|
||||
|
||||
1. 从 [提示词库](library.md) 复制提示词
|
||||
2. 前往 OpenWebUI **Settings** → **Personalization**
|
||||
3. 粘贴到 **System Prompt** 输入框
|
||||
4. 保存并开始新对话
|
||||
|
||||
### 方式二:聊天内快捷提示词
|
||||
|
||||
1. 从 [提示词库](library.md) 复制提示词
|
||||
2. 在任意对话中点击 **Prompt** 按钮
|
||||
3. 粘贴并保存为可复用提示词
|
||||
4. 需要时从已保存的列表中选择
|
||||
1. 访问 [提示词库](library.md) 或项目根目录下的 `/prompts` 文件夹复制模板代码。
|
||||
2. 在 OpenWebUI 的 **Workspace** -> **Prompts** 页面点击 **Create Prompt**。
|
||||
3. 粘贴代码,设置标题(和命令触发词)。
|
||||
4. 在任何会话聊天框中,键入提示词标题或以 `/` 呼出触发指令即可调用!
|
||||
|
||||
---
|
||||
|
||||
## 最佳实践
|
||||
|
||||
!!! tip "可定制"
|
||||
根据自己的需求自由修改提示词,添加上下文、调整语气,或组合多个提示词。
|
||||
!!! tip "按需定制 (Customization)"
|
||||
您可以随时根据特定场景修改提示词字段、微调语气词或设置更严格的负面 Prompt (Negative Prompts)。
|
||||
|
||||
!!! tip "迭代"
|
||||
如果回复不理想,微调提示词再试一次。小改动可能带来大提升。
|
||||
|
||||
!!! tip "具体化"
|
||||
越具体的提示词,效果越好。加入示例、约束及期望输出格式。
|
||||
!!! tip "持续迭代"
|
||||
如果 AI 输出并不完全让您满意,调整一两个修饰词或限制,就会产生巨大的性能提升差异。
|
||||
|
||||
---
|
||||
|
||||
## 参与贡献
|
||||
## 贡献
|
||||
|
||||
有好的提示词?欢迎分享给社区!
|
||||
有好的 prompt 的想法?欢迎提交 PR 一起共享!
|
||||
|
||||
[:octicons-heart-fill-24:{ .heart } 提交提示词](../contributing.md){ .md-button }
|
||||
[:octicons-heart-fill-24:{ .heart } 贡献 Prompt](../contributing.md){ .md-button }
|
||||
|
||||
@@ -1,344 +1,87 @@
|
||||
# Prompt Library
|
||||
|
||||
Welcome to the OpenWebUI Extensions Prompt Library! Find carefully crafted prompts for various use cases.
|
||||
Carefully crafted prompts with dynamic variables supporting OpenWebUI variables and design workflows.
|
||||
|
||||
---
|
||||
|
||||
## Browse by Category
|
||||
## 🔧 AI Task Instruction Generator
|
||||
|
||||
<div class="grid cards" markdown>
|
||||
Convert vague or unstructured requirements into precise, structured instructions optimized for AI agent execution.
|
||||
|
||||
- :material-code-braces:{ .lg .middle } **Coding & Development**
|
||||
- **Command**: `/ai-task-instruction`
|
||||
- **Author**: Fu-Jie
|
||||
- **Community Link**: [OpenWebUI Post](https://openwebui.com/posts/9bab8b37-5c43-48e6-988b-946564510b91)
|
||||
|
||||
---
|
||||
### ⚙️ Variables
|
||||
|
||||
Programming assistance, code review, debugging, and development best practices.
|
||||
| Variable | Type | Options / Default | Description |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| `target_role` | `text` | `AI Assistant` | The persona or role the agent should adopt. |
|
||||
| `complexity` | `select` | `Basic`, **`Intermediate`**, `Advanced` | Level of depth the output template should contain. |
|
||||
| `output_style` | `select` | **`Markdown Template`**, `JSON`, `Step-by` | Structured style for the resulting prompt framework. |
|
||||
| `requirements` | `textarea`| Required | The unstructured tasks or instructions from the user. |
|
||||
|
||||
[:octicons-arrow-right-24: Browse Coding Prompts](#coding-development)
|
||||
### 📝 Prompt Code
|
||||
|
||||
- :material-bullhorn:{ .lg .middle } **Marketing & Content**
|
||||
```markdown
|
||||
# AI Task Instruction Generator
|
||||
|
||||
---
|
||||
You are an expert Prompt Engineer and Task Architect. Your objective is to transform vague or unstructured natural language requirements into precise, structured instructions optimized for AI agent execution.
|
||||
|
||||
Content creation, copywriting, brand messaging, and marketing strategies.
|
||||
## Input Data
|
||||
**Target Agent Role**: {{target_role | text:default="AI Assistant":placeholder="e.g., Senior Python Developer, Marketing Expert"}}
|
||||
**Task Complexity**: {{complexity | select:options=["Basic","Intermediate","Advanced"]:default="Intermediate"}}
|
||||
**Preferred Output Format**: {{output_style | select:options=["Markdown Template","JSON Protocol","Step-by-Step Guide"]:default="Markdown Template"}}
|
||||
|
||||
[:octicons-arrow-right-24: Browse Marketing Prompts](#marketing-content)
|
||||
**Natural Language Requirements**:
|
||||
"""
|
||||
{{requirements | textarea:placeholder="Paste the raw task description or requirements here..."}}
|
||||
"""
|
||||
|
||||
- :material-file-document:{ .lg .middle } **Writing & Editing**
|
||||
## Generation Guidelines
|
||||
1. **Role Definition**: Assign a specific, expert persona suitable for the task.
|
||||
2. **Objective Clarity**: Clearly state the primary goal.
|
||||
3. **Contextualization**: Provide necessary background based on the input.
|
||||
4. **Step-by-Step Execution**: Break the task down into logical, atomic steps.
|
||||
5. **Constraints & Rules**: Explicitly list any negative constraints or formatting rules.
|
||||
6. **Output Specification**: Define exactly what the final result should look like.
|
||||
7. **Language Consistency**: You MUST generate the structured instructions in the same language as the natural language requirements input by the user (e.g., if the requirements are in Chinese, generate the response in Chinese).
|
||||
|
||||
---
|
||||
|
||||
Academic writing, paper polishing, grammar checking, and document editing.
|
||||
|
||||
[:octicons-arrow-right-24: Browse Writing Prompts](#writing-editing)
|
||||
|
||||
- :material-theater:{ .lg .middle } **Role Play & Creative**
|
||||
|
||||
---
|
||||
|
||||
Character roles, creative scenarios, and interactive storytelling.
|
||||
|
||||
[:octicons-arrow-right-24: Browse Creative Prompts](#role-play-creative)
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## How to Use Prompts
|
||||
|
||||
1. Find a prompt below that matches your needs
|
||||
2. Click the **Copy** button on the code block
|
||||
3. In OpenWebUI, click the "Prompt" button or paste as a System Prompt
|
||||
4. Customize the prompt if needed
|
||||
5. Start your conversation!
|
||||
|
||||
---
|
||||
|
||||
## Coding & Development { #coding-development }
|
||||
|
||||
### 🔧 Senior Developer Assistant
|
||||
|
||||
An expert programming assistant that provides clean, well-documented code.
|
||||
|
||||
```text
|
||||
You are an expert senior software developer with extensive experience across multiple programming languages and frameworks. Your role is to:
|
||||
|
||||
1. Write clean, efficient, and well-documented code
|
||||
2. Follow best practices and design patterns
|
||||
3. Provide clear explanations for complex concepts
|
||||
4. Suggest improvements and optimizations
|
||||
5. Consider edge cases and error handling
|
||||
|
||||
When writing code:
|
||||
- Use meaningful variable and function names
|
||||
- Include comments for complex logic
|
||||
- Follow the language's style guidelines
|
||||
- Provide usage examples when appropriate
|
||||
|
||||
When reviewing code:
|
||||
- Identify potential bugs and security issues
|
||||
- Suggest performance improvements
|
||||
- Check for code maintainability
|
||||
- Recommend refactoring when beneficial
|
||||
|
||||
Always explain your reasoning and be ready to iterate based on feedback.
|
||||
Please generate the structured instructions now, strictly following the **{{output_style}}** format.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 🐛 Code Debugger
|
||||
## 🔍 One-Sentence Concept Explainer
|
||||
|
||||
A systematic approach to debugging code issues.
|
||||
Explain advanced ideas in exactly one clear, punchy, and accurate sentence adapted for a selected audience tier.
|
||||
|
||||
```text
|
||||
You are an expert code debugger. When presented with code that has issues:
|
||||
- **Command**: `/one-sentence-concept-explainer`
|
||||
- **Author**: Fu-Jie
|
||||
|
||||
1. **Analyze**: First, read through the code carefully to understand its purpose
|
||||
2. **Identify**: Locate potential bugs, errors, or issues
|
||||
3. **Explain**: Clearly describe what's wrong and why it's problematic
|
||||
4. **Fix**: Provide the corrected code with explanations
|
||||
5. **Prevent**: Suggest best practices to avoid similar issues
|
||||
### ⚙️ Variables
|
||||
|
||||
Debug approach:
|
||||
- Check for syntax errors first
|
||||
- Verify logic flow and conditions
|
||||
- Look for edge cases and boundary conditions
|
||||
- Examine variable scope and lifecycle
|
||||
- Consider thread safety if applicable
|
||||
- Check error handling completeness
|
||||
| Variable | Type | Options / Default | Description |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| `concept` | `text` | Required | The concept to explain (e.g., Quantum Computing). |
|
||||
| `audience`| `select` | **`General Audience`**, `Child (ELI5)`, `Expert`, `Executive` | Destination audience profile. |
|
||||
| `tone` | `select` | **`Professional`**, `Analogical`, `Inspirational`, `Humorous` | Style with which the explanation speaks. |
|
||||
|
||||
Format your response:
|
||||
- 🔴 **Issue Found**: Description of the problem
|
||||
- 🔍 **Root Cause**: Why this happened
|
||||
- ✅ **Solution**: Fixed code with explanation
|
||||
- 💡 **Prevention**: Tips to avoid this in future
|
||||
### 📝 Prompt Code
|
||||
|
||||
```markdown
|
||||
# One-Sentence Concept Explainer
|
||||
|
||||
You are an expert communicator specializing in radical simplicity. Your task is to explain the following concept in exactly one clear, punchy, and accurate sentence.
|
||||
|
||||
## Configuration
|
||||
- **Concept**: {{concept | text:placeholder="Enter the concept (e.g., Quantum Entanglement)"}}
|
||||
- **Target Audience**: {{audience | select:options=["General Audience","Child (ELI5)","Expert","Business Executive"]:default="General Audience"}}
|
||||
- **Tone**: {{tone | select:options=["Professional","Analogical","Inspirational","Humorous"]:default="Professional"}}
|
||||
|
||||
## Instructions
|
||||
1. Provide the explanation in the same language as the concept provided by the user (e.g., if the concept is in Chinese, provide explanation in Chinese).
|
||||
2. Ensure the response is strictly limited to one sentence.
|
||||
3. Capture the core essence of the concept while adjusting the complexity for the selected audience.
|
||||
4. If an analogy is requested, ensure it is relatable and accurate.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📚 Code Explainer
|
||||
|
||||
Break down complex code into understandable explanations.
|
||||
|
||||
```text
|
||||
You are a patient and thorough code educator. When explaining code:
|
||||
|
||||
1. Start with a high-level overview of what the code does
|
||||
2. Break down the code into logical sections
|
||||
3. Explain each section step by step
|
||||
4. Use analogies and real-world examples when helpful
|
||||
5. Highlight important patterns or techniques used
|
||||
6. Point out any clever tricks or non-obvious behavior
|
||||
|
||||
Adjust your explanation based on:
|
||||
- The apparent complexity of the code
|
||||
- The user's indicated experience level
|
||||
- The programming language conventions
|
||||
|
||||
Always encourage questions and provide additional resources when appropriate.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Marketing & Content { #marketing-content }
|
||||
|
||||
### 📝 Content Writer
|
||||
|
||||
Create engaging content for various platforms and purposes.
|
||||
|
||||
```text
|
||||
You are an experienced content writer and marketing specialist. Your role is to create compelling, engaging content tailored to specific audiences and platforms.
|
||||
|
||||
When creating content:
|
||||
1. **Understand the Goal**: Clarify the purpose (inform, persuade, entertain)
|
||||
2. **Know the Audience**: Consider demographics, interests, pain points
|
||||
3. **Match the Platform**: Adapt tone and format for the medium
|
||||
4. **Hook the Reader**: Start with compelling openings
|
||||
5. **Deliver Value**: Provide useful, actionable information
|
||||
6. **Call to Action**: Guide readers to the next step
|
||||
|
||||
Writing principles:
|
||||
- Use clear, concise language
|
||||
- Break up text for readability
|
||||
- Include relevant examples
|
||||
- Optimize for SEO when appropriate
|
||||
- Maintain brand voice consistency
|
||||
|
||||
Available formats:
|
||||
- Blog posts and articles
|
||||
- Social media content
|
||||
- Email campaigns
|
||||
- Product descriptions
|
||||
- Landing page copy
|
||||
- Press releases
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 🎯 Marketing Strategist
|
||||
|
||||
Develop comprehensive marketing strategies and campaigns.
|
||||
|
||||
```text
|
||||
You are a strategic marketing consultant with expertise in digital marketing, brand development, and campaign optimization.
|
||||
|
||||
Your approach:
|
||||
1. **Analysis**: Understand the business, market, and competition
|
||||
2. **Goals**: Define clear, measurable objectives
|
||||
3. **Strategy**: Develop a comprehensive plan
|
||||
4. **Tactics**: Recommend specific actions and channels
|
||||
5. **Metrics**: Identify KPIs and measurement methods
|
||||
|
||||
Areas of expertise:
|
||||
- Digital marketing (SEO, SEM, Social Media)
|
||||
- Content marketing and strategy
|
||||
- Brand positioning and messaging
|
||||
- Customer journey mapping
|
||||
- Marketing automation
|
||||
- Analytics and optimization
|
||||
|
||||
When providing advice:
|
||||
- Base recommendations on data and best practices
|
||||
- Consider budget constraints
|
||||
- Prioritize high-impact activities
|
||||
- Provide actionable next steps
|
||||
- Include success metrics
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Writing & Editing { #writing-editing }
|
||||
|
||||
### ✍️ Academic Paper Polisher
|
||||
|
||||
Improve academic writing for clarity, style, and impact.
|
||||
|
||||
```text
|
||||
You are an expert academic editor specializing in research paper improvement. Your role is to enhance academic writing while maintaining the author's voice and intent.
|
||||
|
||||
Editing focus areas:
|
||||
1. **Clarity**: Simplify complex sentences without losing meaning
|
||||
2. **Conciseness**: Remove redundancy and wordiness
|
||||
3. **Flow**: Improve transitions and logical progression
|
||||
4. **Grammar**: Correct errors and improve syntax
|
||||
5. **Style**: Ensure consistency and appropriate academic tone
|
||||
|
||||
Specific improvements:
|
||||
- Active voice where appropriate
|
||||
- Precise word choice
|
||||
- Parallel structure
|
||||
- Clear topic sentences
|
||||
- Effective paragraph organization
|
||||
- Proper citation integration
|
||||
|
||||
Format your feedback:
|
||||
- Provide the edited text
|
||||
- Highlight major changes with explanations
|
||||
- Suggest alternatives when appropriate
|
||||
- Maintain the original meaning and intent
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📄 Document Formatter
|
||||
|
||||
Professional document formatting and structure.
|
||||
|
||||
```text
|
||||
You are a professional document specialist. Help users create well-structured, properly formatted documents.
|
||||
|
||||
Services:
|
||||
1. **Structure**: Organize content logically
|
||||
2. **Format**: Apply consistent formatting
|
||||
3. **Style**: Ensure professional appearance
|
||||
4. **Templates**: Provide document templates
|
||||
5. **Standards**: Follow industry conventions
|
||||
|
||||
Document types:
|
||||
- Business reports
|
||||
- Technical documentation
|
||||
- Proposals and pitches
|
||||
- Meeting minutes
|
||||
- Standard operating procedures
|
||||
- User guides and manuals
|
||||
|
||||
When formatting:
|
||||
- Use clear headings and hierarchy
|
||||
- Include appropriate white space
|
||||
- Create scannable bullet points
|
||||
- Add tables and visuals when helpful
|
||||
- Ensure accessibility
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Role Play & Creative { #role-play-creative }
|
||||
|
||||
### 🎭 Character Role Player
|
||||
|
||||
Engaging interactive role-play experiences.
|
||||
|
||||
```text
|
||||
You are a skilled role-play facilitator capable of embodying various characters and scenarios.
|
||||
|
||||
Guidelines:
|
||||
1. **Stay in Character**: Maintain consistent personality and knowledge
|
||||
2. **Be Reactive**: Respond naturally to user inputs
|
||||
3. **Build the World**: Add relevant details and atmosphere
|
||||
4. **Advance the Story**: Keep the narrative moving forward
|
||||
5. **Respect Boundaries**: Keep content appropriate
|
||||
|
||||
Character elements:
|
||||
- Distinct voice and mannerisms
|
||||
- Consistent background and motivations
|
||||
- Realistic knowledge limitations
|
||||
- Emotional depth and reactions
|
||||
- Growth and development over time
|
||||
|
||||
Scenarios available:
|
||||
- Historical figures
|
||||
- Fictional characters
|
||||
- Professional roles (interview practice)
|
||||
- Language practice partners
|
||||
- Creative storytelling
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📖 Story Collaborator
|
||||
|
||||
Collaborative creative writing and storytelling.
|
||||
|
||||
```text
|
||||
You are a creative writing partner and story collaborator. Help users develop and write engaging narratives.
|
||||
|
||||
Collaboration modes:
|
||||
1. **Co-writing**: Take turns writing story segments
|
||||
2. **Brainstorming**: Generate ideas and plot points
|
||||
3. **Development**: Flesh out characters and settings
|
||||
4. **Editing**: Improve existing creative writing
|
||||
5. **Feedback**: Provide constructive critique
|
||||
|
||||
Story elements to develop:
|
||||
- Compelling characters with depth
|
||||
- Engaging plots with tension
|
||||
- Vivid settings and world-building
|
||||
- Natural dialogue
|
||||
- Meaningful themes
|
||||
- Satisfying resolutions
|
||||
|
||||
When collaborating:
|
||||
- Match the user's style and tone
|
||||
- Offer suggestions, not dictations
|
||||
- Build on their ideas
|
||||
- Keep the story consistent
|
||||
- Encourage creativity
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Submit Your Prompts
|
||||
|
||||
Have a great prompt to share? We'd love to include it!
|
||||
|
||||
[:octicons-heart-fill-24:{ .heart } Contribute a Prompt](../contributing.md){ .md-button }
|
||||
|
||||
@@ -1,344 +1,87 @@
|
||||
# 提示词库
|
||||
# 提示词库 (Prompt Library)
|
||||
|
||||
欢迎来到 OpenWebUI Extensions 提示词库!在这里可以找到针对不同场景精心设计的提示词。
|
||||
包含精心调优的带有动态变量(Dynamic Variables)的系统提示词,支持 OpenWebUI 官方的原生语法解析。
|
||||
|
||||
---
|
||||
|
||||
## 按分类浏览
|
||||
## 🔧 AI 任务指令生成器 (AI Task Instruction Generator)
|
||||
|
||||
<div class="grid cards" markdown>
|
||||
将模糊的通用需求或无结构自然语言,转换为精确、结构化且高度优化的 AI 任务指令框架。
|
||||
|
||||
- :material-code-braces:{ .lg .middle } **编程与开发**
|
||||
- **触发指令**: `/ai-task-instruction`
|
||||
- **作者**: Fu-Jie
|
||||
- **社区链接**: [OpenWebUI Post](https://openwebui.com/posts/9bab8b37-5c43-48e6-988b-946564510b91)
|
||||
|
||||
---
|
||||
### ⚙️ 动态变量 (Variables)
|
||||
|
||||
编程辅助、代码审查、调试与工程最佳实践。
|
||||
| 变量名 | 类型 | 选项 / 默认值 | 描述说明 |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| `target_role` | `text` | `AI Assistant` | 目标 Agent 应扮演的专家角色。 |
|
||||
| `complexity` | `select` | `Basic`, **`Intermediate`**, `Advanced` | 输出结果的拆解深度。 |
|
||||
| `output_style` | `select` | **`Markdown Template`**, `JSON`, `Step-by-Step` | 提示词的结构化展示样式。 |
|
||||
| `requirements` | `textarea`| 必填 | 用户输入的原始自然语言需求文本。 |
|
||||
|
||||
[:octicons-arrow-right-24: 查看编程提示词](#coding-development)
|
||||
### 📝 提示词代码
|
||||
|
||||
- :material-bullhorn:{ .lg .middle } **营销与内容**
|
||||
```markdown
|
||||
# AI Task Instruction Generator
|
||||
|
||||
---
|
||||
You are an expert Prompt Engineer and Task Architect. Your objective is to transform vague or unstructured natural language requirements into precise, structured instructions optimized for AI agent execution.
|
||||
|
||||
内容创作、文案撰写、品牌信息与营销策略。
|
||||
## Input Data
|
||||
**Target Agent Role**: {{target_role | text:default="AI Assistant":placeholder="e.g., Senior Python Developer, Marketing Expert"}}
|
||||
**Task Complexity**: {{complexity | select:options=["Basic","Intermediate","Advanced"]:default="Intermediate"}}
|
||||
**Preferred Output Format**: {{output_style | select:options=["Markdown Template","JSON Protocol","Step-by-Step Guide"]:default="Markdown Template"}}
|
||||
|
||||
[:octicons-arrow-right-24: 查看营销提示词](#marketing-content)
|
||||
**Natural Language Requirements**:
|
||||
"""
|
||||
{{requirements | textarea:placeholder="Paste the raw task description or requirements here..."}}
|
||||
"""
|
||||
|
||||
- :material-file-document:{ .lg .middle } **写作与编辑**
|
||||
## Generation Guidelines
|
||||
1. **Role Definition**: Assign a specific, expert persona suitable for the task.
|
||||
2. **Objective Clarity**: Clearly state the primary goal.
|
||||
3. **Contextualization**: Provide necessary background based on the input.
|
||||
4. **Step-by-Step Execution**: Break the task down into logical, atomic steps.
|
||||
5. **Constraints & Rules**: Explicitly list any negative constraints or formatting rules.
|
||||
6. **Output Specification**: Define exactly what the final result should look like.
|
||||
7. **Language Consistency**: You MUST generate the structured instructions in the same language as the natural language requirements input by the user (e.g., if the requirements are in Chinese, generate the response in Chinese).
|
||||
|
||||
---
|
||||
|
||||
学术写作、论文润色、语法检查与文档编辑。
|
||||
|
||||
[:octicons-arrow-right-24: 查看写作提示词](#writing-editing)
|
||||
|
||||
- :material-theater:{ .lg .middle } **角色扮演与创意**
|
||||
|
||||
---
|
||||
|
||||
角色扮演、创意场景与互动式故事。
|
||||
|
||||
[:octicons-arrow-right-24: 查看创意提示词](#role-play-creative)
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 如何使用提示词
|
||||
|
||||
1. 找到符合需求的提示词
|
||||
2. 点击代码块的 **Copy** 按钮复制
|
||||
3. 在 OpenWebUI 中点击 "Prompt" 按钮,或作为 System Prompt 粘贴
|
||||
4. 如有需要可自行调整提示词内容
|
||||
5. 开始你的对话!
|
||||
|
||||
---
|
||||
|
||||
## Coding & Development { #coding-development }
|
||||
|
||||
### 🔧 Senior Developer Assistant
|
||||
|
||||
高级编程助手,为你提供清晰且带注释的代码。
|
||||
|
||||
```text
|
||||
You are an expert senior software developer with extensive experience across multiple programming languages and frameworks. Your role is to:
|
||||
|
||||
1. Write clean, efficient, and well-documented code
|
||||
2. Follow best practices and design patterns
|
||||
3. Provide clear explanations for complex concepts
|
||||
4. Suggest improvements and optimizations
|
||||
5. Consider edge cases and error handling
|
||||
|
||||
When writing code:
|
||||
- Use meaningful variable and function names
|
||||
- Include comments for complex logic
|
||||
- Follow the language's style guidelines
|
||||
- Provide usage examples when appropriate
|
||||
|
||||
When reviewing code:
|
||||
- Identify potential bugs and security issues
|
||||
- Suggest performance improvements
|
||||
- Check for code maintainability
|
||||
- Recommend refactoring when beneficial
|
||||
|
||||
Always explain your reasoning and be ready to iterate based on feedback.
|
||||
Please generate the structured instructions now, strictly following the **{{output_style}}** format.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 🐛 Code Debugger
|
||||
## 🔍 一句话概念解释器 (One-Sentence Concept Explainer)
|
||||
|
||||
系统化的代码排查流程。
|
||||
将任何高级或抽象的概念,针对不同级别受众,提炼为精准生动的“一句话”科普。
|
||||
|
||||
```text
|
||||
You are an expert code debugger. When presented with code that has issues:
|
||||
- **触发指令**: `/one-sentence-concept-explainer`
|
||||
- **作者**: Fu-Jie
|
||||
|
||||
1. **Analyze**: First, read through the code carefully to understand its purpose
|
||||
2. **Identify**: Locate potential bugs, errors, or issues
|
||||
3. **Explain**: Clearly describe what's wrong and why it's problematic
|
||||
4. **Fix**: Provide the corrected code with explanations
|
||||
5. **Prevent**: Suggest best practices to avoid similar issues
|
||||
### ⚙️ 动态变量 (Variables)
|
||||
|
||||
Debug approach:
|
||||
- Check for syntax errors first
|
||||
- Verify logic flow and conditions
|
||||
- Look for edge cases and boundary conditions
|
||||
- Examine variable scope and lifecycle
|
||||
- Consider thread safety if applicable
|
||||
- Check error handling completeness
|
||||
| 变量名 | 类型 | 选项 / 默认值 | 描述说明 |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| `concept` | `text` | 必填 | 要解释的概念(例如:量子纠缠)。 |
|
||||
| `audience`| `select` | **`General Audience`**, `Child (ELI5)`, `Expert`, `Executive` | 解释应当适配的目标受众群体。 |
|
||||
| `tone` | `select` | **`Professional`**, `Analogical`, `Inspirational`, `Humorous` | 解释所采用的词句风格和语气倾向。 |
|
||||
|
||||
Format your response:
|
||||
- 🔴 **Issue Found**: Description of the problem
|
||||
- 🔍 **Root Cause**: Why this happened
|
||||
- ✅ **Solution**: Fixed code with explanation
|
||||
- 💡 **Prevention**: Tips to avoid this in future
|
||||
### 📝 提示词代码
|
||||
|
||||
```markdown
|
||||
# One-Sentence Concept Explainer
|
||||
|
||||
You are an expert communicator specializing in radical simplicity. Your task is to explain the following concept in exactly one clear, punchy, and accurate sentence.
|
||||
|
||||
## Configuration
|
||||
- **Concept**: {{concept | text:placeholder="Enter the concept (e.g., Quantum Entanglement)"}}
|
||||
- **Target Audience**: {{audience | select:options=["General Audience","Child (ELI5)","Expert","Business Executive"]:default="General Audience"}}
|
||||
- **Tone**: {{tone | select:options=["Professional","Analogical","Inspirational","Humorous"]:default="Professional"}}
|
||||
|
||||
## Instructions
|
||||
1. Provide the explanation in the same language as the concept provided by the user (e.g., if the concept is in Chinese, provide explanation in Chinese).
|
||||
2. Ensure the response is strictly limited to one sentence.
|
||||
3. Capture the core essence of the concept while adjusting the complexity for the selected audience.
|
||||
4. If an analogy is requested, ensure it is relatable and accurate.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📚 Code Explainer
|
||||
|
||||
将复杂代码拆解为易理解的讲解。
|
||||
|
||||
```text
|
||||
You are a patient and thorough code educator. When explaining code:
|
||||
|
||||
1. Start with a high-level overview of what the code does
|
||||
2. Break down the code into logical sections
|
||||
3. Explain each section step by step
|
||||
4. Use analogies and real-world examples when helpful
|
||||
5. Highlight important patterns or techniques used
|
||||
6. Point out any clever tricks or non-obvious behavior
|
||||
|
||||
Adjust your explanation based on:
|
||||
- The apparent complexity of the code
|
||||
- The user's indicated experience level
|
||||
- The programming language conventions
|
||||
|
||||
Always encourage questions and provide additional resources when appropriate.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Marketing & Content { #marketing-content }
|
||||
|
||||
### 📝 Content Writer
|
||||
|
||||
面向不同平台的内容创作。
|
||||
|
||||
```text
|
||||
You are an experienced content writer and marketing specialist. Your role is to create compelling, engaging content tailored to specific audiences and platforms.
|
||||
|
||||
When creating content:
|
||||
1. **Understand the Goal**: Clarify the purpose (inform, persuade, entertain)
|
||||
2. **Know the Audience**: Consider demographics, interests, pain points
|
||||
3. **Match the Platform**: Adapt tone and format for the medium
|
||||
4. **Hook the Reader**: Start with compelling openings
|
||||
5. **Deliver Value**: Provide useful, actionable information
|
||||
6. **Call to Action**: Guide readers to the next step
|
||||
|
||||
Writing principles:
|
||||
- Use clear, concise language
|
||||
- Break up text for readability
|
||||
- Include relevant examples
|
||||
- Optimize for SEO when appropriate
|
||||
- Maintain brand voice consistency
|
||||
|
||||
Available formats:
|
||||
- Blog posts and articles
|
||||
- Social media content
|
||||
- Email campaigns
|
||||
- Product descriptions
|
||||
- Landing page copy
|
||||
- Press releases
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 🎯 Marketing Strategist
|
||||
|
||||
制定整体营销策略与活动。
|
||||
|
||||
```text
|
||||
You are a strategic marketing consultant with expertise in digital marketing, brand development, and campaign optimization.
|
||||
|
||||
Your approach:
|
||||
1. **Analysis**: Understand the business, market, and competition
|
||||
2. **Goals**: Define clear, measurable objectives
|
||||
3. **Strategy**: Develop a comprehensive plan
|
||||
4. **Tactics**: Recommend specific actions and channels
|
||||
5. **Metrics**: Identify KPIs and measurement methods
|
||||
|
||||
Areas of expertise:
|
||||
- Digital marketing (SEO, SEM, Social Media)
|
||||
- Content marketing and strategy
|
||||
- Brand positioning and messaging
|
||||
- Customer journey mapping
|
||||
- Marketing automation
|
||||
- Analytics and optimization
|
||||
|
||||
When providing advice:
|
||||
- Base recommendations on data and best practices
|
||||
- Consider budget constraints
|
||||
- Prioritize high-impact activities
|
||||
- Provide actionable next steps
|
||||
- Include success metrics
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Writing & Editing { #writing-editing }
|
||||
|
||||
### ✍️ Academic Paper Polisher
|
||||
|
||||
提升学术写作的清晰度、风格与影响力。
|
||||
|
||||
```text
|
||||
You are an expert academic editor specializing in research paper improvement. Your role is to enhance academic writing while maintaining the author's voice and intent.
|
||||
|
||||
Editing focus areas:
|
||||
1. **Clarity**: Simplify complex sentences without losing meaning
|
||||
2. **Conciseness**: Remove redundancy and wordiness
|
||||
3. **Flow**: Improve transitions and logical progression
|
||||
4. **Grammar**: Correct errors and improve syntax
|
||||
5. **Style**: Ensure consistency and appropriate academic tone
|
||||
|
||||
Specific improvements:
|
||||
- Active voice where appropriate
|
||||
- Precise word choice
|
||||
- Parallel structure
|
||||
- Clear topic sentences
|
||||
- Effective paragraph organization
|
||||
- Proper citation integration
|
||||
|
||||
Format your feedback:
|
||||
- Provide the edited text
|
||||
- Highlight major changes with explanations
|
||||
- Suggest alternatives when appropriate
|
||||
- Maintain the original meaning and intent
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📄 Document Formatter
|
||||
|
||||
帮助你创建结构良好、格式统一的文档。
|
||||
|
||||
```text
|
||||
You are a professional document specialist. Help users create well-structured, properly formatted documents.
|
||||
|
||||
Services:
|
||||
1. **Structure**: Organize content logically
|
||||
2. **Format**: Apply consistent formatting
|
||||
3. **Style**: Ensure professional appearance
|
||||
4. **Templates**: Provide document templates
|
||||
5. **Standards**: Follow industry conventions
|
||||
|
||||
Document types:
|
||||
- Business reports
|
||||
- Technical documentation
|
||||
- Proposals and pitches
|
||||
- Meeting minutes
|
||||
- Standard operating procedures
|
||||
- User guides and manuals
|
||||
|
||||
When formatting:
|
||||
- Use clear headings and hierarchy
|
||||
- Include appropriate white space
|
||||
- Create scannable bullet points
|
||||
- Add tables and visuals when helpful
|
||||
- Ensure accessibility
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Role Play & Creative { #role-play-creative }
|
||||
|
||||
### 🎭 Character Role Player
|
||||
|
||||
沉浸式的角色扮演体验。
|
||||
|
||||
```text
|
||||
You are a skilled role-play facilitator capable of embodying various characters and scenarios.
|
||||
|
||||
Guidelines:
|
||||
1. **Stay in Character**: Maintain consistent personality and knowledge
|
||||
2. **Be Reactive**: Respond naturally to user inputs
|
||||
3. **Build the World**: Add relevant details and atmosphere
|
||||
4. **Advance the Story**: Keep the narrative moving forward
|
||||
5. **Respect Boundaries**: Keep content appropriate
|
||||
|
||||
Character elements:
|
||||
- Distinct voice and mannerisms
|
||||
- Consistent background and motivations
|
||||
- Realistic knowledge limitations
|
||||
- Emotional depth and reactions
|
||||
- Growth and development over time
|
||||
|
||||
Scenarios available:
|
||||
- Historical figures
|
||||
- Fictional characters
|
||||
- Professional roles (interview practice)
|
||||
- Language practice partners
|
||||
- Creative storytelling
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 📖 Story Collaborator
|
||||
|
||||
与你协作创作故事和叙事。
|
||||
|
||||
```text
|
||||
You are a creative writing partner and story collaborator. Help users develop and write engaging narratives.
|
||||
|
||||
Collaboration modes:
|
||||
1. **Co-writing**: Take turns writing story segments
|
||||
2. **Brainstorming**: Generate ideas and plot points
|
||||
3. **Development**: Flesh out characters and settings
|
||||
4. **Editing**: Improve existing creative writing
|
||||
5. **Feedback**: Provide constructive critique
|
||||
|
||||
Story elements to develop:
|
||||
- Compelling characters with depth
|
||||
- Engaging plots with tension
|
||||
- Vivid settings and world-building
|
||||
- Natural dialogue
|
||||
- Meaningful themes
|
||||
- Satisfying resolutions
|
||||
|
||||
When collaborating:
|
||||
- Match the user's style and tone
|
||||
- Offer suggestions, not dictations
|
||||
- Build on their ideas
|
||||
- Keep the story consistent
|
||||
- Encourage creativity
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 提交你的提示词
|
||||
|
||||
有好用的提示词?欢迎分享!
|
||||
|
||||
[:octicons-heart-fill-24:{ .heart } 贡献提示词](../contributing.md){ .md-button }
|
||||
|
||||
@@ -199,7 +199,7 @@ nav:
|
||||
- plugins/pipes/index.md
|
||||
- Pipelines:
|
||||
- plugins/pipelines/index.md
|
||||
- MoE Prompt Refiner: plugins/pipelines/moe-prompt-refiner.md
|
||||
- Wisdom Synthesizer: plugins/pipelines/wisdom-synthesizer.md
|
||||
- Prompts:
|
||||
- prompts/index.md
|
||||
- prompts/library.md
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
A comprehensive thinking lens that dives deep into any content - from context to logic, insights, and action paths.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v1.0.0
|
||||
|
||||
- ✨ **Thinking Chain Structure**: Moves from surface understanding to deep strategic action.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
全方位的思维透镜 —— 从背景全景到逻辑脉络,从深度洞察到行动路径。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 v1.0.0 更新内容
|
||||
|
||||
- ✨ **思维链结构**: 从表面理解一步步深入到战略行动。
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
Export conversation to Word (.docx) with **syntax highlighting**, **native math equations**, **Mermaid diagrams**, **citations**, and **enhanced table formatting**.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v0.4.4
|
||||
|
||||
- 🧹 **Content Cleanup**: Enhanced stripping of `<details>` blocks (often used for tool calls/thinking process) to ensure a clean final document.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
将对话导出为 Word (.docx),支持**代码语法高亮**、**原生数学公式**、**Mermaid 图表**、**引用参考**和**增强表格格式**。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 v0.4.4 更新内容
|
||||
|
||||
- 🧹 **内容清理加强**: 增强了对 `<details>` 块(通常包含工具调用或思考过程)的清理,确保最终文档整洁。
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
Export chat history to an Excel (.xlsx) file directly from the chat interface.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v0.3.6
|
||||
|
||||
- **OpenWebUI-Style Theme**: Modern dark header (#1f2937) with light gray zebra striping for better readability.
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|
||||
将对话历史直接导出为 Excel (.xlsx) 文件。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v0.3.6
|
||||
|
||||
- **OpenWebUI 风格主题**:现代深灰表头(#1f2937)与浅灰斑马纹,提升可读性。
|
||||
|
||||
@@ -8,6 +8,19 @@ Generate polished learning flashcards from any text—title, summary, key points
|
||||
|  |  |  |  |  |  |  |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New
|
||||
|
||||
### v0.2.4
|
||||
|
||||
@@ -8,6 +8,19 @@
|
||||
|  |  |  |  |  |  |  |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v0.2.4
|
||||
|
||||
* **输出优化**: 移除输出中的调试信息。
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Smart Infographic
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,7 +8,20 @@
|
||||
|
||||
An Open WebUI plugin powered by the AntV Infographic engine. It transforms long text into professional, beautiful infographics with a single click.
|
||||
|
||||
## 🔥 What's New in v1.5.0
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## 🔥 What's New in v1.6.0
|
||||
|
||||
- 🌐 **Smart Language Detection**: Automatically detects the accurate UI language from your browser.
|
||||
- 🗣️ **Context-Aware Generation**: Generated infographics now strictly follow the language of your input content (e.g., input Japanese -> output Japanese infographic).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 智能信息图
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,7 +8,20 @@
|
||||
|
||||
基于 AntV Infographic 引擎的 Open WebUI 插件,能够将长文本内容一键转换为专业、美观的信息图表。
|
||||
|
||||
## 🔥 最新更新 v1.5.0
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 🔥 最新更新 v1.6.0
|
||||
|
||||
- 🌐 **智能语言检测**:自动从浏览器准确识别当前界面语言设置。
|
||||
- 🗣️ **上下文感知生成**:生成的信息图内容现在严格跟随用户输入内容的语言(例如:输入日语 -> 生成日语信息图)。
|
||||
|
||||
@@ -4,7 +4,7 @@ author: Fu-Jie
|
||||
author_url: https://github.com/Fu-Jie/openwebui-extensions
|
||||
funding_url: https://github.com/open-webui
|
||||
icon_url: data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogIDxsaW5lIHgxPSIxMiIgeTE9IjIwIiB4Mj0iMTIiIHkyPSIxMCIgLz4KICA8bGluZSB4MT0iMTgiIHkxPSIyMCIgeDI9IjE4IiB5Mj0iNCIgLz4KICA8bGluZSB4MT0iNiIgeTE9IjIwIiB4Mj0iNiIgeTI9IjE2IiAvPgo8L3N2Zz4=
|
||||
version: 1.5.0
|
||||
version: 1.6.1
|
||||
openwebui_id: ad6f0c7f-c571-4dea-821d-8e71697274cf
|
||||
description: AI-powered infographic generator based on AntV Infographic. Supports professional templates, auto-icon matching, and SVG/PNG downloads.
|
||||
"""
|
||||
@@ -16,6 +16,7 @@ import time
|
||||
import re
|
||||
from fastapi import Request
|
||||
from datetime import datetime
|
||||
import asyncio
|
||||
|
||||
from open_webui.utils.chat import generate_chat_completion
|
||||
from open_webui.models.users import Users
|
||||
@@ -25,6 +26,477 @@ logging.basicConfig(
|
||||
)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
TRANSLATIONS = {
|
||||
"en-US": {
|
||||
"status_starting": "Smart Infographic is starting, generating infographic for you...",
|
||||
"error_no_content": "Unable to retrieve valid user message content.",
|
||||
"error_text_too_short": "Text content is too short ({len} characters), unable to perform effective analysis. Please provide at least {min_len} characters of text.",
|
||||
"status_analyzing": "Smart Infographic: Analyzing text structure in depth...",
|
||||
"status_drawing": "Smart Infographic: Drawing completed!",
|
||||
"notification_success": "Mind map has been generated, {user_name}!",
|
||||
"error_processing": "Smart Infographic processing failed: {error}",
|
||||
"error_user_facing": "Sorry, Smart Infographic encountered an error during processing: {error}.\nPlease check the Open WebUI backend logs for more details.",
|
||||
"status_failed": "Smart Infographic: Processing failed.",
|
||||
"notification_failed": "Smart Infographic generation failed, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Rendering image...",
|
||||
"status_image_generated": "Smart Infographic: Image generated!",
|
||||
"notification_image_success": "Mind map image has been generated, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "User:",
|
||||
"ui_time": "Time:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Reset",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Expand Level",
|
||||
"ui_depth_all": "Expand All",
|
||||
"ui_depth_2": "Level 2",
|
||||
"ui_depth_3": "Level 3",
|
||||
"ui_fullscreen": "Fullscreen",
|
||||
"ui_theme": "Theme",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Unable to load infographic: Missing valid content.",
|
||||
"html_error_load_failed": "⚠️ Resource loading failed, please try again later.",
|
||||
"js_done": "Done",
|
||||
"js_failed": "Failed",
|
||||
"js_generating": "Generating...",
|
||||
"js_filename": "infographic.png",
|
||||
"js_upload_failed": "Upload failed: ",
|
||||
"md_image_alt": "🧠 Infographic",
|
||||
},
|
||||
"zh-CN": {
|
||||
"status_starting": "信息图已启动,正在为您生成信息图...",
|
||||
"error_no_content": "无法获取有效的用户消息内容。",
|
||||
"error_text_too_short": "文本内容过短({len}字符),无法进行有效分析。请提供至少{min_len}字符的文本。",
|
||||
"status_analyzing": "信息图:深入分析文本结构...",
|
||||
"status_drawing": "信息图:绘制完成!",
|
||||
"notification_success": "信息图已生成,{user_name}!",
|
||||
"error_processing": "信息图处理失败:{error}",
|
||||
"error_user_facing": "抱歉,信息图在处理时遇到错误:{error}。\n请检查Open WebUI后端日志获取更多详情。",
|
||||
"status_failed": "信息图:处理失败。",
|
||||
"notification_failed": "信息图生成失败,{user_name}!",
|
||||
"status_rendering_image": "信息图:正在渲染图片...",
|
||||
"status_image_generated": "信息图:图片已生成!",
|
||||
"notification_image_success": "信息图图片已生成,{user_name}!",
|
||||
"ui_title": "🧠 智能信息图",
|
||||
"ui_user": "用户:",
|
||||
"ui_time": "时间:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "缩小",
|
||||
"ui_zoom_reset": "重置",
|
||||
"ui_zoom_in": "放大",
|
||||
"ui_depth_select": "展开层级",
|
||||
"ui_depth_all": "全部展开",
|
||||
"ui_depth_2": "展开 2 级",
|
||||
"ui_depth_3": "展开 3 级",
|
||||
"ui_fullscreen": "全屏",
|
||||
"ui_theme": "主题",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ 无法加载信息图:缺少有效内容。",
|
||||
"html_error_load_failed": "⚠️ 资源加载失败,请稍后重试。",
|
||||
"js_done": "完成",
|
||||
"js_failed": "失败",
|
||||
"js_generating": "生成中...",
|
||||
"js_filename": "信息图.png",
|
||||
"js_upload_failed": "上传失败:",
|
||||
"md_image_alt": "🧠 信息图",
|
||||
},
|
||||
"zh-HK": {
|
||||
"status_starting": "信息圖已啟動,正在為您生成信息圖...",
|
||||
"error_no_content": "無法獲取有效的用戶消息內容。",
|
||||
"error_text_too_short": "文本內容過短({len}字元),無法進行有效分析。請提供至少{min_len}字元的文本。",
|
||||
"status_analyzing": "信息圖:深入分析文本結構...",
|
||||
"status_drawing": "信息圖:繪製完成!",
|
||||
"notification_success": "信息圖已生成,{user_name}!",
|
||||
"error_processing": "信息圖處理失敗:{error}",
|
||||
"error_user_facing": "抱歉,信息圖在處理時遇到錯誤:{error}。\n請檢查Open WebUI後端日誌獲取更多詳情。",
|
||||
"status_failed": "信息圖:處理失敗。",
|
||||
"notification_failed": "信息圖生成失敗,{user_name}!",
|
||||
"status_rendering_image": "信息圖:正在渲染圖片...",
|
||||
"status_image_generated": "信息圖:圖片已生成!",
|
||||
"notification_image_success": "信息圖圖片已生成,{user_name}!",
|
||||
"ui_title": "🧠 智能信息圖",
|
||||
"ui_user": "用戶:",
|
||||
"ui_time": "時間:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "縮小",
|
||||
"ui_zoom_reset": "重置",
|
||||
"ui_zoom_in": "放大",
|
||||
"ui_depth_select": "展開層級",
|
||||
"ui_depth_all": "全部展開",
|
||||
"ui_depth_2": "展開 2 級",
|
||||
"ui_depth_3": "展開 3 級",
|
||||
"ui_fullscreen": "全屏",
|
||||
"ui_theme": "主題",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ 無法加載信息圖:缺少有效內容。",
|
||||
"html_error_load_failed": "⚠️ 資源加載失敗,請稍後重試。",
|
||||
"js_done": "完成",
|
||||
"js_failed": "失敗",
|
||||
"js_generating": "生成中...",
|
||||
"js_filename": "信息圖.png",
|
||||
"js_upload_failed": "上傳失敗:",
|
||||
"md_image_alt": "🧠 信息圖",
|
||||
},
|
||||
"zh-TW": {
|
||||
"status_starting": "信息圖已啟動,正在為您生成信息圖...",
|
||||
"error_no_content": "無法獲取有效的用戶消息內容。",
|
||||
"error_text_too_short": "文本內容過短({len}字元),無法進行有效分析。請提供至少{min_len}字元的文本。",
|
||||
"status_analyzing": "信息圖:深入分析文本結構...",
|
||||
"status_drawing": "信息圖:繪製完成!",
|
||||
"notification_success": "信息圖已生成,{user_name}!",
|
||||
"error_processing": "信息圖處理失敗:{error}",
|
||||
"error_user_facing": "抱歉,信息圖在處理時遇到錯誤:{error}。\n請檢查Open WebUI後端日誌獲取更多詳情。",
|
||||
"status_failed": "信息圖:處理失敗。",
|
||||
"notification_failed": "信息圖生成失敗,{user_name}!",
|
||||
"status_rendering_image": "信息圖:正在渲染圖片...",
|
||||
"status_image_generated": "信息圖:圖片已生成!",
|
||||
"notification_image_success": "信息圖圖片已生成,{user_name}!",
|
||||
"ui_title": "🧠 智能信息圖",
|
||||
"ui_user": "用戶:",
|
||||
"ui_time": "時間:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "縮小",
|
||||
"ui_zoom_reset": "重置",
|
||||
"ui_zoom_in": "放大",
|
||||
"ui_depth_select": "展開層級",
|
||||
"ui_depth_all": "全部展開",
|
||||
"ui_depth_2": "展開 2 級",
|
||||
"ui_depth_3": "展開 3 級",
|
||||
"ui_fullscreen": "全屏",
|
||||
"ui_theme": "主題",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ 無法加載信息圖:缺少有效內容。",
|
||||
"html_error_load_failed": "⚠️ 資源加載失敗,請稍後重試。",
|
||||
"js_done": "完成",
|
||||
"js_failed": "失敗",
|
||||
"js_generating": "生成中...",
|
||||
"js_filename": "信息圖.png",
|
||||
"js_upload_failed": "上傳失敗:",
|
||||
"md_image_alt": "🧠 信息圖",
|
||||
},
|
||||
"ko-KR": {
|
||||
"status_starting": "스마트 마인드맵이 시작되었습니다, 마인드맵을 생성 중입니다...",
|
||||
"error_no_content": "유효한 사용자 메시지 내용을 가져올 수 없습니다.",
|
||||
"error_text_too_short": "텍스트 내용이 너무 짧아({len}자), 효과적인 분석을 수행할 수 없습니다. 최소 {min_len}자 이상의 텍스트를 제공해 주세요.",
|
||||
"status_analyzing": "스마트 마인드맵: 텍스트 구조 심층 분석 중...",
|
||||
"status_drawing": "스마트 마인드맵: 그리기 완료!",
|
||||
"notification_success": "마인드맵이 생성되었습니다, {user_name}님!",
|
||||
"error_processing": "스마트 마인드맵 처리 실패: {error}",
|
||||
"error_user_facing": "죄송합니다, 스마트 마인드맵 처리 중 오류가 발생했습니다: {error}.\n자세한 내용은 Open WebUI 백엔드 로그를 확인해 주세요.",
|
||||
"status_failed": "스마트 마인드맵: 처리 실패.",
|
||||
"notification_failed": "스마트 마인드맵 생성 실패, {user_name}님!",
|
||||
"status_rendering_image": "스마트 마인드맵: 이미지 렌더링 중...",
|
||||
"status_image_generated": "스마트 마인드맵: 이미지 생성됨!",
|
||||
"notification_image_success": "마인드맵 이미지가 생성되었습니다, {user_name}님!",
|
||||
"ui_title": "🧠 스마트 마인드맵",
|
||||
"ui_user": "사용자:",
|
||||
"ui_time": "시간:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "초기화",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "레벨 확장",
|
||||
"ui_depth_all": "모두 확장",
|
||||
"ui_depth_2": "레벨 2",
|
||||
"ui_depth_3": "레벨 3",
|
||||
"ui_fullscreen": "전체 화면",
|
||||
"ui_theme": "테마",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ 마인드맵을 로드할 수 없습니다: 유효한 내용이 없습니다.",
|
||||
"html_error_load_failed": "⚠️ 리소스 로드 실패, 나중에 다시 시도해 주세요.",
|
||||
"js_done": "완료",
|
||||
"js_failed": "실패",
|
||||
"js_generating": "생성 중...",
|
||||
"js_filename": "infographic.png",
|
||||
"js_upload_failed": "업로드 실패: ",
|
||||
"md_image_alt": "🧠 마인드맵",
|
||||
},
|
||||
"ja-JP": {
|
||||
"status_starting": "スマートマインドマップが起動しました。マインドマップを生成しています...",
|
||||
"error_no_content": "有効なユーザーメッセージの内容を取得できませんでした。",
|
||||
"error_text_too_short": "テキストの内容が短すぎるため({len}文字)、効果的な分析を実行できません。少なくとも{min_len}文字のテキストを提供してください。",
|
||||
"status_analyzing": "スマートマインドマップ:テキスト構造を詳細に分析中...",
|
||||
"status_drawing": "スマートマインドマップ:描画完了!",
|
||||
"notification_success": "マインドマップが生成されました、{user_name}さん!",
|
||||
"error_processing": "スマートマインドマップ処理失敗:{error}",
|
||||
"error_user_facing": "申し訳ありません、スマートマインドマップの処理中にエラーが発生しました:{error}。\n詳細については、Open WebUIバックエンドログを確認してください。",
|
||||
"status_failed": "スマートマインドマップ:処理失敗。",
|
||||
"notification_failed": "スマートマインドマップ生成失敗、{user_name}さん!",
|
||||
"status_rendering_image": "スマートマインドマップ:画像レンダリング中...",
|
||||
"status_image_generated": "スマートマインドマップ:画像生成完了!",
|
||||
"notification_image_success": "マインドマップ画像が生成されました、{user_name}さん!",
|
||||
"ui_title": "🧠 スマートマインドマップ",
|
||||
"ui_user": "ユーザー:",
|
||||
"ui_time": "時間:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "リセット",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "レベル展開",
|
||||
"ui_depth_all": "すべて展開",
|
||||
"ui_depth_2": "レベル2",
|
||||
"ui_depth_3": "レベル3",
|
||||
"ui_fullscreen": "全画面",
|
||||
"ui_theme": "テーマ",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ マインドマップを読み込めません:有効なコンテンツがありません。",
|
||||
"html_error_load_failed": "⚠️ リソースの読み込みに失敗しました。後でもう一度お試しください。",
|
||||
"js_done": "完了",
|
||||
"js_failed": "失敗",
|
||||
"js_generating": "生成中...",
|
||||
"js_filename": "infographic.png",
|
||||
"js_upload_failed": "アップロード失敗:",
|
||||
"md_image_alt": "🧠 マインドマップ",
|
||||
},
|
||||
"fr-FR": {
|
||||
"status_starting": "Smart Infographic démarre, génération de la carte heuristique en cours...",
|
||||
"error_no_content": "Impossible de récupérer le contenu valide du message utilisateur.",
|
||||
"error_text_too_short": "Le contenu du texte est trop court ({len} caractères), impossible d'effectuer une analyse efficace. Veuillez fournir au moins {min_len} caractères de texte.",
|
||||
"status_analyzing": "Smart Infographic : Analyse approfondie de la structure du texte...",
|
||||
"status_drawing": "Smart Infographic : Dessin terminé !",
|
||||
"notification_success": "La carte heuristique a été générée, {user_name} !",
|
||||
"error_processing": "Échec du traitement de Smart Infographic : {error}",
|
||||
"error_user_facing": "Désolé, Smart Infographic a rencontré une erreur lors du traitement : {error}.\nVeuillez vérifier les journaux backend d'Open WebUI pour plus de détails.",
|
||||
"status_failed": "Smart Infographic : Échec du traitement.",
|
||||
"notification_failed": "Échec de la génération de la carte heuristique, {user_name} !",
|
||||
"status_rendering_image": "Smart Infographic : Rendu de l'image...",
|
||||
"status_image_generated": "Smart Infographic : Image générée !",
|
||||
"notification_image_success": "L'image de la carte heuristique a été générée, {user_name} !",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Utilisateur :",
|
||||
"ui_time": "Heure :",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Rénitialiser",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Niveau d'expansion",
|
||||
"ui_depth_all": "Tout développer",
|
||||
"ui_depth_2": "Niveau 2",
|
||||
"ui_depth_3": "Niveau 3",
|
||||
"ui_fullscreen": "Plein écran",
|
||||
"ui_theme": "Thème",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Impossible de charger la carte heuristique : contenu valide manquant.",
|
||||
"html_error_load_failed": "⚠️ Échec du chargement des ressources, veuillez réessayer plus tard.",
|
||||
"js_done": "Terminé",
|
||||
"js_failed": "Échec",
|
||||
"js_generating": "Génération...",
|
||||
"js_filename": "carte_heuristique.png",
|
||||
"js_upload_failed": "Échec du téléchargement : ",
|
||||
"md_image_alt": "🧠 Carte Heuristique",
|
||||
},
|
||||
"de-DE": {
|
||||
"status_starting": "Smart Infographic startet, Infographic wird für Sie erstellt...",
|
||||
"error_no_content": "Gültiger Inhalt der Benutzernachricht konnte nicht abgerufen werden.",
|
||||
"error_text_too_short": "Der Textinhalt ist zu kurz ({len} Zeichen), eine effektive Analyse ist nicht möglich. Bitte geben Sie mindestens {min_len} Zeichen Text an.",
|
||||
"status_analyzing": "Smart Infographic: Detaillierte Analyse der Textstruktur...",
|
||||
"status_drawing": "Smart Infographic: Zeichnen abgeschlossen!",
|
||||
"notification_success": "Infographic wurde erstellt, {user_name}!",
|
||||
"error_processing": "Smart Infographic Verarbeitung fehlgeschlagen: {error}",
|
||||
"error_user_facing": "Entschuldigung, bei der Verarbeitung von Smart Infographic ist ein Fehler aufgetreten: {error}.\nBitte überprüfen Sie die Open WebUI Backend-Protokolle für weitere Details.",
|
||||
"status_failed": "Smart Infographic: Verarbeitung fehlgeschlagen.",
|
||||
"notification_failed": "Erstellung der Infographic fehlgeschlagen, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Bild wird gerendert...",
|
||||
"status_image_generated": "Smart Infographic: Bild erstellt!",
|
||||
"notification_image_success": "Infographic-Bild wurde erstellt, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Benutzer:",
|
||||
"ui_time": "Zeit:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Zurücksetzen",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Ebene erweitern",
|
||||
"ui_depth_all": "Alles erweitern",
|
||||
"ui_depth_2": "Ebene 2",
|
||||
"ui_depth_3": "Ebene 3",
|
||||
"ui_fullscreen": "Vollbild",
|
||||
"ui_theme": "Thema",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Infographic kann nicht geladen werden: Gültiger Inhalt fehlt.",
|
||||
"html_error_load_failed": "⚠️ Ressourcenladen fehlgeschlagen, bitte versuchen Sie es später erneut.",
|
||||
"js_done": "Fertig",
|
||||
"js_failed": "Fehlgeschlagen",
|
||||
"js_generating": "Generiere...",
|
||||
"js_filename": "infographic.png",
|
||||
"js_upload_failed": "Upload fehlgeschlagen: ",
|
||||
"md_image_alt": "🧠 Infographic",
|
||||
},
|
||||
"es-ES": {
|
||||
"status_starting": "Smart Infographic se está iniciando, generando mapa mental para usted...",
|
||||
"error_no_content": "No se puede recuperar el contenido válido del mensaje del usuario.",
|
||||
"error_text_too_short": "El contenido del texto es demasiado corto ({len} caracteres), no se puede realizar un análisis efectivo. Proporcione al menos {min_len} caracteres de texto.",
|
||||
"status_analyzing": "Smart Infographic: Analizando la estructura del texto en profundidad...",
|
||||
"status_drawing": "Smart Infographic: ¡Dibujo completado!",
|
||||
"notification_success": "¡El mapa mental ha sido generado, {user_name}!",
|
||||
"error_processing": "Falló el procesamiento de Smart Infographic: {error}",
|
||||
"error_user_facing": "Lo sentimos, Smart Infographic encontró un error durante el procesamiento: {error}.\nConsulte los registros del backend de Open WebUI para más detalles.",
|
||||
"status_failed": "Smart Infographic: Procesamiento fallido.",
|
||||
"notification_failed": "¡La generación del mapa mental falló, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Renderizando imagen...",
|
||||
"status_image_generated": "Smart Infographic: ¡Imagen generada!",
|
||||
"notification_image_success": "¡La imagen del mapa mental ha sido generada, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Usuario:",
|
||||
"ui_time": "Hora:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Restablecer",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Expandir Nivel",
|
||||
"ui_depth_all": "Expandir Todo",
|
||||
"ui_depth_2": "Nivel 2",
|
||||
"ui_depth_3": "Nivel 3",
|
||||
"ui_fullscreen": "Pantalla completa",
|
||||
"ui_theme": "Tema",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ No se puede cargar el mapa mental: Falta contenido válido.",
|
||||
"html_error_load_failed": "⚠️ Falló la carga de recursos, inténtelo de nuevo más tarde.",
|
||||
"js_done": "Hecho",
|
||||
"js_failed": "Fallido",
|
||||
"js_generating": "Generando...",
|
||||
"js_filename": "mapa_mental.png",
|
||||
"js_upload_failed": "Carga fallida: ",
|
||||
"md_image_alt": "🧠 Mapa Mental",
|
||||
},
|
||||
"it-IT": {
|
||||
"status_starting": "Smart Infographic si sta avviando, generazione mappa mentale in corso...",
|
||||
"error_no_content": "Impossibile recuperare il contenuto valido del messaggio utente.",
|
||||
"error_text_too_short": "Il testo è troppo breve ({len} caratteri), impossibile eseguire un'analisi efficace. Fornire almeno {min_len} caratteri di testo.",
|
||||
"status_analyzing": "Smart Infographic: Analisi approfondita della struttura del testo...",
|
||||
"status_drawing": "Smart Infographic: Disegno completato!",
|
||||
"notification_success": "La mappa mentale è stata generata, {user_name}!",
|
||||
"error_processing": "Elaborazione Smart Infographic fallita: {error}",
|
||||
"error_user_facing": "Spiacenti, Smart Infographic ha riscontrato un errore durante l'elaborazione: {error}.\nControllare i log del backend di Open WebUI per ulteriori dettagli.",
|
||||
"status_failed": "Smart Infographic: Elaborazione fallita.",
|
||||
"notification_failed": "Generazione mappa mentale fallita, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Rendering immagine...",
|
||||
"status_image_generated": "Smart Infographic: Immagine generata!",
|
||||
"notification_image_success": "L'immagine della mappa mentale è stata generata, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Utente:",
|
||||
"ui_time": "Ora:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Reimposta",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Espandi Livello",
|
||||
"ui_depth_all": "Espandi Tutto",
|
||||
"ui_depth_2": "Livello 2",
|
||||
"ui_depth_3": "Livello 3",
|
||||
"ui_fullscreen": "Schermo intero",
|
||||
"ui_theme": "Tema",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Impossibile caricare la mappa mentale: Contenuto valido mancante.",
|
||||
"html_error_load_failed": "⚠️ Caricamento risorse fallito, riprovare più tardi.",
|
||||
"js_done": "Fatto",
|
||||
"js_failed": "Fallito",
|
||||
"js_generating": "Generazione...",
|
||||
"js_filename": "mappa_mentale.png",
|
||||
"js_upload_failed": "Caricamento fallito: ",
|
||||
"md_image_alt": "🧠 Mappa Mentale",
|
||||
},
|
||||
"vi-VN": {
|
||||
"status_starting": "Smart Infographic đang khởi động, đang tạo sơ đồ tư duy cho bạn...",
|
||||
"error_no_content": "Không thể lấy nội dung tin nhắn người dùng hợp lệ.",
|
||||
"error_text_too_short": "Nội dung văn bản quá ngắn ({len} ký tự), không thể thực hiện phân tích hiệu quả. Vui lòng cung cấp ít nhất {min_len} ký tự văn bản.",
|
||||
"status_analyzing": "Smart Infographic: Phân tích sâu cấu trúc văn bản...",
|
||||
"status_drawing": "Smart Infographic: Vẽ hoàn tất!",
|
||||
"notification_success": "Sơ đồ tư duy đã được tạo, {user_name}!",
|
||||
"error_processing": "Xử lý Smart Infographic thất bại: {error}",
|
||||
"error_user_facing": "Xin lỗi, Smart Infographic đã gặp lỗi trong quá trình xử lý: {error}.\nVui lòng kiểm tra nhật ký backend Open WebUI để biết thêm chi tiết.",
|
||||
"status_failed": "Smart Infographic: Xử lý thất bại.",
|
||||
"notification_failed": "Tạo sơ đồ tư duy thất bại, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Đang render hình ảnh...",
|
||||
"status_image_generated": "Smart Infographic: Hình ảnh đã tạo!",
|
||||
"notification_image_success": "Hình ảnh sơ đồ tư duy đã được tạo, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Người dùng:",
|
||||
"ui_time": "Thời gian:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Đặt lại",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Mở rộng Cấp độ",
|
||||
"ui_depth_all": "Mở rộng Tất cả",
|
||||
"ui_depth_2": "Cấp độ 2",
|
||||
"ui_depth_3": "Cấp độ 3",
|
||||
"ui_fullscreen": "Toàn màn hình",
|
||||
"ui_theme": "Chủ đề",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Không thể tải sơ đồ tư duy: Thiếu nội dung hợp lệ.",
|
||||
"html_error_load_failed": "⚠️ Tải tài nguyên thất bại, vui lòng thử lại sau.",
|
||||
"js_done": "Xong",
|
||||
"js_failed": "Thất bại",
|
||||
"js_generating": "Đang tạo...",
|
||||
"js_filename": "sodo_tuduy.png",
|
||||
"js_upload_failed": "Tải lên thất bại: ",
|
||||
"md_image_alt": "🧠 Sơ đồ Tư duy",
|
||||
},
|
||||
"id-ID": {
|
||||
"status_starting": "Smart Infographic sedang dimulai, membuat peta pikiran untuk Anda...",
|
||||
"error_no_content": "Tidak dapat mengambil konten pesan pengguna yang valid.",
|
||||
"error_text_too_short": "Konten teks terlalu pendek ({len} karakter), tidak dapat melakukan analisis efektif. Harap berikan setidaknya {min_len} karakter teks.",
|
||||
"status_analyzing": "Smart Infographic: Menganalisis struktur teks secara mendalam...",
|
||||
"status_drawing": "Smart Infographic: Menggambar selesai!",
|
||||
"notification_success": "Peta pikiran telah dibuat, {user_name}!",
|
||||
"error_processing": "Pemrosesan Smart Infographic gagal: {error}",
|
||||
"error_user_facing": "Maaf, Smart Infographic mengalami kesalahan saat memproses: {error}.\nSilakan periksa log backend Open WebUI untuk detail lebih lanjut.",
|
||||
"status_failed": "Smart Infographic: Pemrosesan gagal.",
|
||||
"notification_failed": "Pembuatan peta pikiran gagal, {user_name}!",
|
||||
"status_rendering_image": "Smart Infographic: Merender gambar...",
|
||||
"status_image_generated": "Smart Infographic: Gambar dibuat!",
|
||||
"notification_image_success": "Gambar peta pikiran telah dibuat, {user_name}!",
|
||||
"ui_title": "🧠 Smart Infographic",
|
||||
"ui_user": "Pengguna:",
|
||||
"ui_time": "Waktu:",
|
||||
"ui_download_png": "PNG",
|
||||
"ui_download_svg": "SVG",
|
||||
"ui_download_md": "Markdown",
|
||||
"ui_zoom_out": "-",
|
||||
"ui_zoom_reset": "Atur Ulang",
|
||||
"ui_zoom_in": "+",
|
||||
"ui_depth_select": "Perluas Level",
|
||||
"ui_depth_all": "Perluas Semua",
|
||||
"ui_depth_2": "Level 2",
|
||||
"ui_depth_3": "Level 3",
|
||||
"ui_fullscreen": "Layar Penuh",
|
||||
"ui_theme": "Tema",
|
||||
"ui_footer": "<b>Powered by</b> <a href='https://markmap.js.org/' target='_blank' rel='noopener noreferrer'>Markmap</a>",
|
||||
"html_error_missing_content": "⚠️ Tidak dapat memuat peta pikiran: Konten valid hilang.",
|
||||
"html_error_load_failed": "⚠️ Gagal memuat sumber daya, silakan coba lagi nanti.",
|
||||
"js_done": "Selesai",
|
||||
"js_failed": "Gagal",
|
||||
"js_generating": "Membuat...",
|
||||
"js_filename": "peta_pikiran.png",
|
||||
"js_upload_failed": "Unggah gagal: ",
|
||||
"md_image_alt": "🧠 Peta Pikiran",
|
||||
},
|
||||
}
|
||||
|
||||
# =================================================================
|
||||
# LLM Prompts
|
||||
# =================================================================
|
||||
@@ -35,6 +507,7 @@ You are a professional infographic design expert who can analyze user-provided t
|
||||
## Important Language Rule
|
||||
- **GENERATE CONTENT IN INPUT LANGUAGE**: You must generate the text content of the infographic in the **exact same language** as the user's input content (the text you are analyzing).
|
||||
- **Format Consistency**: Even if this system prompt is in English, if the user input is in Chinese, the infographic content must be in Chinese. If input is Japanese, output Japanese.
|
||||
- **If Unsure**: If the language is ambiguous, mixed, or cannot be clearly determined from the context, default to **English** for the infographic content.
|
||||
|
||||
## Infographic Syntax Specification
|
||||
|
||||
@@ -92,7 +565,7 @@ Choose the most appropriate template based on content structure.
|
||||
`chart-pie-plain-text`, `chart-pie-donut-plain-text`, `chart-wordcloud`
|
||||
|
||||
*Other:*
|
||||
`quadrant-quarter-simple-card`, `relation-circle-icon-badge`
|
||||
`quadrant-quarter-simple-card`, `relation-circle-icon-badge`, `relation-dagre-flow-tb-simple-circle-node`
|
||||
|
||||
**Text Capacity by Template Type:**
|
||||
- HIGH capacity (long descriptions OK): `list-column-*`, `compare-binary-*`, `sequence-timeline-*`
|
||||
@@ -110,6 +583,19 @@ Choose the most appropriate template based on content structure.
|
||||
- Format: filename without .svg, e.g., `coding`, `team-work`
|
||||
- Use `illus` field instead of `icon`
|
||||
|
||||
### 📊 Template to Data Field Mapping (CRITICAL)
|
||||
For maximum rendering speed and stability, match the list identifier to the template kind structure. Do NOT just use `items` if a specific field exists:
|
||||
|
||||
| Template Prefix | Data Field Identifier | Core Variables on Items |
|
||||
| :--- | :--- | :--- |
|
||||
| `list-*` | **`lists`** | `label`, `desc`, `icon` |
|
||||
| `sequence-*` | **`sequences`** | `label`, `desc` |
|
||||
| `compare-*` | **`compares`** | `label`, `value`, `children` |
|
||||
| `chart-*` | **`values`** | `label`, `value` |
|
||||
| `hierarchy-*` | **`root` + `children`** | 嵌套嵌套组合 |
|
||||
|
||||
*Note: `items` can be used as a universal fallback adapter if template categorization is ambiguous.*
|
||||
|
||||
### Data Structure Examples
|
||||
|
||||
#### A. Standard List/Tree (Default)
|
||||
@@ -250,11 +736,23 @@ data
|
||||
### Common Data Fields
|
||||
- `label`: Main title/label (Required)
|
||||
- `desc`: Description text
|
||||
- `value`: Numeric value (for charts)
|
||||
- `value`: Numeric value. **ONLY displayed on `chart-*` series templates**. For cards or lists, put data into `desc` instead.
|
||||
- `icon`: Icon name (e.g., `mdi/home`, `mdi/account`) or `ref:search:<keyword>`
|
||||
- `children`: Nested items (for trees, SWOT, etc.)
|
||||
- `illus`: Illustration icon (specific to some templates like Quadrant)
|
||||
|
||||
### 📊 Data & Numeric Fields Standard
|
||||
1. **Value Specification**: `value` MUST be a **pure number** (integer or float), without any symbols like `$`, `%`, or `¥`.
|
||||
2. **Units Placement**: Put units or currency symbols into the `label` or `desc` instead.
|
||||
- ❌ Wrong: `value $1.234` / `value 5.2%`
|
||||
- ✅ Correct: `label USD ($)` -> `value 1.234` OR `label Rate` -> `desc 5.2%`
|
||||
|
||||
### ⚠️ Strict Styling & Layout Rules
|
||||
1. **Color Palette (`palette`)**: MUST use space-separated naked Hex values. Do NOT use quotes (`"`) or commas (`,`).
|
||||
- ✅ Correct: `palette #4f46e5 #06b6d4 #10b981`
|
||||
- ❌ Wrong: `palette "#4f46e5", "#06b6d4"`
|
||||
2. **Binary Compare (`compare-binary-*`)**: The root of `compares` tree MUST contain **EXACTLY TWO** comparison objects.
|
||||
|
||||
### Content Refinement Principles
|
||||
1. **Brevity is King**: Infographics are visual. Keep text to a minimum.
|
||||
2. **Title Limit**: Keep `label` (item titles) under 15 characters (approx. 10 Chinese characters).
|
||||
@@ -262,7 +760,7 @@ data
|
||||
4. **Impact**: Use strong verbs and nouns. Avoid filler words.
|
||||
|
||||
## Output Requirements
|
||||
1. **Language**: Output content in the user's language.
|
||||
1. **Language**: Follow the **Important Language Rule** (Generate content in the **exact same language** as the input text content; do NOT force it to match the status parameter).
|
||||
2. **Format**: Wrap output in ```infographic ... ```.
|
||||
3. **No Colons**: Do NOT use colons after keys.
|
||||
4. **Indentation**: Use 2 spaces.
|
||||
@@ -278,6 +776,7 @@ Please analyze the following text content and convert its core information into
|
||||
User Name: {user_name}
|
||||
Current Date/Time: {current_date_time_str}
|
||||
User Language: {user_language}
|
||||
OpenWebUI Theme: {user_theme}
|
||||
---
|
||||
|
||||
**Text Content:**
|
||||
@@ -285,12 +784,17 @@ User Language: {user_language}
|
||||
|
||||
Please select the most appropriate infographic template based on text characteristics and output standard infographic syntax. Pay attention to correct indentation format (two spaces).
|
||||
|
||||
⚠️ **Language Consistency Rule (CRITICAL)**:
|
||||
The title, desc, labels, and text items in your output **MUST STRICTLY MATCH the primary language of the original {long_text_content}**. Do NOT translate the content just to match default status parameters. If the language is ambiguous or mixed, default to **English** for output content nodes.
|
||||
|
||||
**Visual Optimization Guide (MUST FOLLOW):**
|
||||
- **Point-based Generation:** Infographics are not articles. Extract KEYWORDS ONLY, avoid complete sentences.
|
||||
- **Main Title (`data.title`):** **MUST** be ≤ **15 Chinese characters** (or ≤30 English characters). Trim version numbers or details if needed.
|
||||
- **Subtitle (`data.desc`):** **MUST** be ≤ **20 Chinese characters** (or ≤40 English characters).
|
||||
- **Card Title (`label`):** **MUST** be ≤ **6 Chinese characters** (or ≤12 English characters). Use 2-4 keywords only.
|
||||
- **Card Description (`desc`):** **MUST** be ≤ **12 Chinese characters** (or ≤24 English characters). Use short phrases.
|
||||
- **Numeric Strictness:** `value` MUST be a pure number (no `$`, `%`, etc.). Append units to `label` or `desc` instead.
|
||||
- **Dynamic Selection:** For multiple stats/currencies, use structures like `list-grid-*` or `list-row-*` for dense layouts.
|
||||
|
||||
⚠️ **CRITICAL**: If the original text is too long, you MUST rephrase and shorten it. Do NOT simply truncate with "...".
|
||||
Examples:
|
||||
@@ -365,10 +869,22 @@ CSS_TEMPLATE_INFOGRAPHIC = """
|
||||
--ig-border-color: #e2e8f0;
|
||||
--ig-header-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
|
||||
}
|
||||
.infographic-container-wrapper.dark {
|
||||
--ig-primary-color: #818cf8;
|
||||
--ig-secondary-color: #a78bfa;
|
||||
--ig-tertiary-color: #34d399;
|
||||
--ig-background-color: #0f172a;
|
||||
--ig-card-bg-color: #1e293b;
|
||||
--ig-text-color: #f8fafc;
|
||||
--ig-muted-text-color: #94a3b8;
|
||||
--ig-border-color: #334155;
|
||||
--ig-header-gradient: linear-gradient(135deg, #4338ca, #6d28d9);
|
||||
}
|
||||
.infographic-container-wrapper {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: var(--ig-text-color);
|
||||
background-color: var(--ig-background-color);
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -387,7 +903,7 @@ CSS_TEMPLATE_INFOGRAPHIC = """
|
||||
.infographic-container-wrapper .user-context {
|
||||
font-size: 0.8em;
|
||||
color: var(--ig-muted-text-color);
|
||||
background-color: #f1f5f9;
|
||||
background-color: var(--ig-card-bg-color);
|
||||
padding: 8px 16px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
@@ -402,7 +918,7 @@ CSS_TEMPLATE_INFOGRAPHIC = """
|
||||
border-radius: 8px;
|
||||
padding: 16px;
|
||||
min-height: 600px;
|
||||
background: #fff;
|
||||
background: var(--ig-card-bg-color);
|
||||
overflow: visible;
|
||||
transition: height 0.3s ease;
|
||||
}
|
||||
@@ -414,6 +930,12 @@ CSS_TEMPLATE_INFOGRAPHIC = """
|
||||
line-height: 1.3 !important;
|
||||
overflow: visible !important;
|
||||
}
|
||||
.infographic-container-wrapper.dark .infographic-render-container svg text {
|
||||
fill: var(--ig-text-color) !important;
|
||||
}
|
||||
.infographic-container-wrapper.dark .infographic-render-container svg foreignObject * {
|
||||
color: var(--ig-text-color) !important;
|
||||
}
|
||||
/* Main title styles */
|
||||
.infographic-render-container svg foreignObject[data-element-type="title"] > * {
|
||||
font-size: 1.3em !important;
|
||||
@@ -640,6 +1162,7 @@ SCRIPT_TEMPLATE_INFOGRAPHIC = """
|
||||
// Charts
|
||||
'chart-column': 'chart-column-simple',
|
||||
'quadrant': 'quadrant-quarter-simple-card',
|
||||
'relation-dagre': 'relation-dagre-flow-tb-simple-circle-node',
|
||||
|
||||
// Legacy mappings for backward compatibility
|
||||
'list-vertical': 'list-column-simple-vertical-arrow',
|
||||
@@ -701,6 +1224,24 @@ SCRIPT_TEMPLATE_INFOGRAPHIC = """
|
||||
return;
|
||||
}}
|
||||
|
||||
// --- Auto Theme Loading ---
|
||||
try {{
|
||||
const html = document.documentElement;
|
||||
const body = document.body;
|
||||
const htmlClass = html ? html.className : '';
|
||||
const bodyClass = body ? body.className : '';
|
||||
const htmlDataTheme = html ? html.getAttribute('data-theme') : '';
|
||||
|
||||
const wrapper = containerEl.closest('.infographic-container-wrapper');
|
||||
if (wrapper) {{
|
||||
if (htmlDataTheme === 'dark' || bodyClass.includes('dark') || htmlClass.includes('dark')) {{
|
||||
wrapper.classList.add('dark');
|
||||
}}
|
||||
}}
|
||||
}} catch (e) {{
|
||||
console.warn('[Infographic] Failed to apply theme class', e);
|
||||
}}
|
||||
|
||||
try {{
|
||||
const {{ Infographic }} = AntVInfographic;
|
||||
|
||||
@@ -961,13 +1502,24 @@ class Action:
|
||||
|
||||
def __init__(self):
|
||||
self.valves = self.Valves()
|
||||
# Fallback mapping for variants not in TRANSLATIONS keys
|
||||
self.fallback_map = {
|
||||
"es-AR": "es-ES",
|
||||
"es-MX": "es-ES",
|
||||
"fr-CA": "fr-FR",
|
||||
"en-CA": "en-US",
|
||||
"en-GB": "en-US",
|
||||
"en-AU": "en-US",
|
||||
"de-AT": "de-DE",
|
||||
}
|
||||
|
||||
async def _get_user_context(
|
||||
self,
|
||||
__user__: Optional[Dict[str, Any]],
|
||||
__event_call__: Optional[Callable[[Any], Awaitable[None]]] = None,
|
||||
__request__: Optional[Request] = None,
|
||||
) -> Dict[str, str]:
|
||||
"""Safely extracts user context information."""
|
||||
"""Extract basic user context with safe fallbacks."""
|
||||
if isinstance(__user__, (list, tuple)):
|
||||
user_data = __user__[0] if __user__ else {}
|
||||
elif isinstance(__user__, dict):
|
||||
@@ -977,32 +1529,123 @@ class Action:
|
||||
|
||||
user_id = user_data.get("id", "unknown_user")
|
||||
user_name = user_data.get("name", "User")
|
||||
# Default from profile
|
||||
user_language = user_data.get("language", "en-US")
|
||||
user_theme = "light"
|
||||
|
||||
# Level 1 Fallback: Accept-Language from __request__ headers
|
||||
if (
|
||||
__request__
|
||||
and hasattr(__request__, "headers")
|
||||
and "accept-language" in __request__.headers
|
||||
):
|
||||
raw_lang = __request__.headers.get("accept-language", "")
|
||||
if raw_lang:
|
||||
user_language = raw_lang.split(",")[0].split(";")[0]
|
||||
|
||||
# Priority: Document Lang > LocalStorage (Frontend) > Browser > Request Header > Profile
|
||||
if __event_call__:
|
||||
try:
|
||||
js_code = """
|
||||
return (
|
||||
localStorage.getItem('locale') ||
|
||||
localStorage.getItem('language') ||
|
||||
navigator.language ||
|
||||
'en-US'
|
||||
);
|
||||
try {
|
||||
const html = document.documentElement;
|
||||
const body = document.body;
|
||||
const htmlClass = html ? html.className : '';
|
||||
const bodyClass = body ? body.className : '';
|
||||
const htmlDataTheme = html ? html.getAttribute('data-theme') : '';
|
||||
|
||||
let theme = 'light';
|
||||
|
||||
// 1. Check parent document's html/body class or data-theme
|
||||
if (htmlDataTheme === 'dark' || bodyClass.includes('dark') || htmlClass.includes('dark')) {
|
||||
theme = 'dark';
|
||||
} else if (htmlDataTheme === 'light' || bodyClass.includes('light') || htmlClass.includes('light')) {
|
||||
theme = 'light';
|
||||
} else {
|
||||
// 2. Check meta theme-color luma
|
||||
const metas = document.querySelectorAll('meta[name="theme-color"]');
|
||||
let foundMeta = false;
|
||||
if (metas.length > 0) {
|
||||
const color = metas[metas.length - 1].content.trim();
|
||||
const m = color.match(/^#?([0-9a-f]{6})$/i);
|
||||
if (m) {
|
||||
const hex = m[1];
|
||||
const r = parseInt(hex.slice(0, 2), 16);
|
||||
const g = parseInt(hex.slice(2, 4), 16);
|
||||
const b = parseInt(hex.slice(4, 6), 16);
|
||||
const luma = (0.2126 * r + 0.7152 * g + 0.0722 * b) / 255;
|
||||
theme = luma < 0.5 ? 'dark' : 'light';
|
||||
foundMeta = true;
|
||||
}
|
||||
}
|
||||
// 3. Check system preference
|
||||
if (!foundMeta && window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||
theme = 'dark';
|
||||
}
|
||||
}
|
||||
|
||||
const lang = document.documentElement.lang ||
|
||||
localStorage.getItem('locale') ||
|
||||
localStorage.getItem('language') ||
|
||||
navigator.language ||
|
||||
'en-US';
|
||||
|
||||
return JSON.stringify({ lang, theme });
|
||||
} catch (e) {
|
||||
return JSON.stringify({ lang: 'en-US', theme: 'light' });
|
||||
}
|
||||
"""
|
||||
frontend_lang = await __event_call__(
|
||||
{"type": "execute", "data": {"code": js_code}}
|
||||
# Use asyncio.wait_for to prevent hanging if frontend fails to callback
|
||||
frontend_res_str = await asyncio.wait_for(
|
||||
__event_call__({"type": "execute", "data": {"code": js_code}}),
|
||||
timeout=2.0,
|
||||
)
|
||||
if frontend_lang and isinstance(frontend_lang, str):
|
||||
user_language = frontend_lang
|
||||
if frontend_res_str and isinstance(frontend_res_str, str):
|
||||
try:
|
||||
import json
|
||||
frontend_res = json.loads(frontend_res_str)
|
||||
user_language = frontend_res.get("lang", user_language)
|
||||
user_theme = frontend_res.get("theme", user_theme)
|
||||
except Exception:
|
||||
user_language = frontend_res_str
|
||||
except Exception as e:
|
||||
logger.warning(f"Failed to retrieve frontend language: {e}")
|
||||
logger.warning(f"Failed to retrieve frontend language/theme: {e}")
|
||||
|
||||
return {
|
||||
"user_id": user_id,
|
||||
"user_name": user_name,
|
||||
"user_language": user_language,
|
||||
"user_theme": user_theme,
|
||||
}
|
||||
|
||||
def _resolve_language(self, lang: str) -> str:
|
||||
"""Resolve the best matching language code from the TRANSLATIONS dict."""
|
||||
target_lang = lang
|
||||
if target_lang in TRANSLATIONS:
|
||||
return target_lang
|
||||
if hasattr(self, 'fallback_map') and target_lang in self.fallback_map:
|
||||
target_lang = self.fallback_map[target_lang]
|
||||
if target_lang in TRANSLATIONS:
|
||||
return target_lang
|
||||
if "-" in lang:
|
||||
base_lang = lang.split("-")[0]
|
||||
for supported_lang in TRANSLATIONS:
|
||||
if supported_lang.startswith(base_lang + "-"):
|
||||
return supported_lang
|
||||
return "en-US"
|
||||
|
||||
def _get_translation(self, lang: str, key: str, **kwargs) -> str:
|
||||
"""Get translated string for the given language and key."""
|
||||
target_lang = self._resolve_language(lang)
|
||||
lang_dict = TRANSLATIONS.get(target_lang, TRANSLATIONS["en-US"])
|
||||
text = lang_dict.get(key, TRANSLATIONS["en-US"].get(key, key))
|
||||
if kwargs:
|
||||
try:
|
||||
text = text.format(**kwargs)
|
||||
except Exception as e:
|
||||
logger.warning(f"Translation formatting failed for {key}: {e}")
|
||||
return text
|
||||
|
||||
def _get_chat_context(
|
||||
self, body: dict, __metadata__: Optional[dict] = None
|
||||
) -> Dict[str, str]:
|
||||
@@ -1245,6 +1888,7 @@ class Action:
|
||||
'sequence-horizontal': 'sequence-horizontal-zigzag-simple',
|
||||
'relation-sankey': 'relation-sankey-simple',
|
||||
'relation-circle': 'relation-circle-icon-badge',
|
||||
'relation-dagre': 'relation-dagre-flow-tb-simple-circle-node',
|
||||
'compare-binary': 'compare-binary-horizontal-simple-vs',
|
||||
'compare-swot': 'compare-swot',
|
||||
'quadrant-quarter': 'quadrant-quarter-simple-card',
|
||||
@@ -1496,13 +2140,14 @@ class Action:
|
||||
__metadata__: Optional[dict] = None,
|
||||
__request__: Optional[Request] = None,
|
||||
) -> Optional[dict]:
|
||||
logger.info("Action: Infographic started (v1.4.0)")
|
||||
logger.info("Action: Infographic started (v1.6.0)")
|
||||
|
||||
# Get user information
|
||||
user_ctx = await self._get_user_context(__user__, __event_call__)
|
||||
user_ctx = await self._get_user_context(__user__, __event_call__, __request__)
|
||||
user_name = user_ctx["user_name"]
|
||||
user_id = user_ctx["user_id"]
|
||||
user_language = user_ctx["user_language"]
|
||||
user_theme = user_ctx.get("user_theme", "light")
|
||||
|
||||
# Get current time
|
||||
now = datetime.now()
|
||||
@@ -1562,11 +2207,11 @@ class Action:
|
||||
}
|
||||
|
||||
await self._emit_notification(
|
||||
__event_emitter__, "📊 Infographic started, generating...", "info"
|
||||
__event_emitter__, self._get_translation(user_language, "status_starting"), "info"
|
||||
)
|
||||
await self._emit_status(
|
||||
__event_emitter__,
|
||||
"📊 Infographic: Starting generation...",
|
||||
self._get_translation(user_language, "status_starting"),
|
||||
False,
|
||||
)
|
||||
|
||||
@@ -1576,13 +2221,14 @@ class Action:
|
||||
# Build prompt
|
||||
await self._emit_status(
|
||||
__event_emitter__,
|
||||
"📊 Infographic: Calling AI model to analyze content...",
|
||||
self._get_translation(user_language, "status_analyzing"),
|
||||
False,
|
||||
)
|
||||
formatted_user_prompt = USER_PROMPT_GENERATE_INFOGRAPHIC.format(
|
||||
user_name=user_name,
|
||||
current_date_time_str=current_date_time_str,
|
||||
user_language=user_language,
|
||||
user_theme=user_theme,
|
||||
long_text_content=long_text_content,
|
||||
)
|
||||
|
||||
@@ -1617,7 +2263,7 @@ class Action:
|
||||
|
||||
await self._emit_status(
|
||||
__event_emitter__,
|
||||
"📊 Infographic: AI analysis complete, parsing syntax...",
|
||||
self._get_translation(user_language, "status_analyzing"),
|
||||
False,
|
||||
)
|
||||
|
||||
@@ -1631,7 +2277,7 @@ class Action:
|
||||
# Prepare content components
|
||||
await self._emit_status(
|
||||
__event_emitter__,
|
||||
"📊 Infographic: Rendering chart...",
|
||||
self._get_translation(user_language, "status_rendering_image"),
|
||||
False,
|
||||
)
|
||||
content_html = (
|
||||
@@ -1692,7 +2338,7 @@ class Action:
|
||||
|
||||
await self._emit_status(
|
||||
__event_emitter__,
|
||||
"📊 Infographic: Rendering image...",
|
||||
self._get_translation(user_language, "status_rendering_image"),
|
||||
False,
|
||||
)
|
||||
|
||||
@@ -1712,11 +2358,11 @@ class Action:
|
||||
)
|
||||
|
||||
await self._emit_status(
|
||||
__event_emitter__, "✅ Infographic: Image generated!", True
|
||||
__event_emitter__, self._get_translation(user_language, "status_image_generated"), True
|
||||
)
|
||||
await self._emit_notification(
|
||||
__event_emitter__,
|
||||
f"📊 Infographic image generated, {user_name}!",
|
||||
self._get_translation(user_language, "notification_image_success", user_name=user_name),
|
||||
"success",
|
||||
)
|
||||
logger.info("Infographic generation completed in image mode")
|
||||
@@ -1727,11 +2373,11 @@ class Action:
|
||||
body["messages"][-1]["content"] = f"{original_content}\n\n{html_embed_tag}"
|
||||
|
||||
await self._emit_status(
|
||||
__event_emitter__, "✅ Infographic: Generation complete!", True
|
||||
__event_emitter__, self._get_translation(user_language, "status_drawing"), True
|
||||
)
|
||||
await self._emit_notification(
|
||||
__event_emitter__,
|
||||
f"📊 Infographic generated, {user_name}!",
|
||||
self._get_translation(user_language, "notification_success", user_name=user_name),
|
||||
"success",
|
||||
)
|
||||
logger.info("Infographic generation completed")
|
||||
@@ -1745,11 +2391,11 @@ class Action:
|
||||
] = f"{original_content}\n\n❌ **Error:** {user_facing_error}"
|
||||
|
||||
await self._emit_status(
|
||||
__event_emitter__, "❌ Infographic: Generation failed", True
|
||||
__event_emitter__, self._get_translation(user_language, "status_failed"), True
|
||||
)
|
||||
await self._emit_notification(
|
||||
__event_emitter__,
|
||||
f"❌ Infographic generation failed, {user_name}!",
|
||||
self._get_translation(user_language, "notification_failed", user_name=user_name),
|
||||
"error",
|
||||
)
|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 169 KiB |
File diff suppressed because one or more lines are too long
14
plugins/actions/infographic/v1.6.0.md
Normal file
14
plugins/actions/infographic/v1.6.0.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# v1.6.0 Release Notes
|
||||
|
||||
This release is a major upgrade introducing 12-language i18n support frameworks and full context dark/light mode sniffing backbones to prevent card inverse overlaps conflicts natively.
|
||||
|
||||
## New Features
|
||||
- **12-Language I18n Skeleton Framework**: Full structural fallback algorithms mapped onto global dictionary namespaces.
|
||||
- **AI Prompt Strategy Optimization**: Enforced AI to strictly prevent colons induction and contain pure index metrics to streamline Charts visualizers nodes rendering loops.
|
||||
- **Dagre Flow Layout View** (`relation-dagre`): visual pipeline supporting relationship visualizer pipelines trees.
|
||||
- **Environment Theme Sniffer Context**: Smooth dark/light status conditioning automatically injected onto visual color palettes adaptation pipelines.
|
||||
|
||||
## Capability & Validation Alignments
|
||||
- **Fixes Issue #61**: Formatted parsing aligning index strict instructions forcing non-chart templates to bypass redundant variables.
|
||||
- **Cascad Class Shifters**: Integrated child text self-destabilizers lifting SVG contrasts automatically inside container frameworks override pipelines.
|
||||
- **Strict Data Nodes Layout mapping**: Enforced items index indexes limiting structural interpreting limits during adaptive operations.
|
||||
15
plugins/actions/infographic/v1.6.0_CN.md
Normal file
15
plugins/actions/infographic/v1.6.0_CN.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# v1.6.0 版本发布说明
|
||||
|
||||
本版本是一次重磅升级,引入了完整的 12 语种标准 i18n(国际化)支持架构,并打通了全链路外壳多阶环境背景(Dark/Light 模式)降维检测,强效解决了由于浅色底卡片跟深色文字覆盖时的低对比度排斥问题。
|
||||
|
||||
## 新功能
|
||||
- **System Prompt 提示词策略优化**:在系统中严格强控禁止冒号、限制 title/desc 字数,百分百确保 `value` 字段仅由纯数字落座,有效解救数值渲染崩溃黑页。
|
||||
- **12 语种标准 i18n 翻译骨架**:对标 Mindmap 全量级翻译映射字典以及 variant 状态机转移降维 fallback 处理。
|
||||
- **Dagre 关系代数 flow 网络看板视图** (`relation-dagre`): 对应 PR #161 全链,支持有向节点、依赖连线关系的组件流向与骨骼动画渲染。
|
||||
- **外壳背景环境自动探测 (Theme Sniffing)**:智能嗅探外部明暗样式并在渲染板壳中追加 `.dark` 等级控制自适应穿透。
|
||||
|
||||
## 规则校准与对齐
|
||||
- **修复关联 Issue #61**:强制约束非图表类模板(如 `list-row`)在解析时将数据直接归拢至 `desc`/`label` 避免因不支持 `value` 导致数据丢失。
|
||||
- **内聚容器反转对比度**:添加子代文字 `color: currentcolor !important` 等联级状态,百分百确保渲染视图清可见。
|
||||
- **模板主索引映射表对撞规范**:明确对应 `list-*` $\rightarrow$ `lists`,强控解析抗崩。
|
||||
- **Palette 裸排严防崩键**:加强提示词,强制大模型在 theme 节中 palette 禁止掺入引号或逗号,避免样式崩坏。
|
||||
6
plugins/actions/infographic/v1.6.1.md
Normal file
6
plugins/actions/infographic/v1.6.1.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# v1.6.1 Release Notes
|
||||
|
||||
This is a hotfix release ensuring the AI model adheres strictly to **Language Consistency** rules and doesn't default to general translation behavior during user dashboard context parameters injection.
|
||||
|
||||
## Bug Fixes
|
||||
- **AI Response Prompt Boundary Protection**: Strict language limits preventing translated overrides when contextual parameters override background system streams status. Directs LLM outputs to fit inputs language content accurately.
|
||||
6
plugins/actions/infographic/v1.6.1_CN.md
Normal file
6
plugins/actions/infographic/v1.6.1_CN.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# v1.6.1 版本发布说明
|
||||
|
||||
本版本是一次紧急修复(Hotfix),主要优化了提示词控制层面的语言决策优先级,百分百排解了因前序引入全量 i18n 传参后导致大模型在部分场景中“自我汉化”响应的 Bug。
|
||||
|
||||
## 修复项
|
||||
- **提示词语言一致性校准 (Language Consistency)**:强控大模型的 Layout/节点 content 输出语种**必须与用户输入的主体文本保持绝对一致**,不受 system 框降阶字典参数干扰。
|
||||
@@ -10,6 +10,19 @@ Smart Mind Map is a powerful OpenWebUI action plugin that intelligently analyzes
|
||||
|
||||
> 🏆 **Featured by OpenWebUI Official** — This plugin was recommended in the official OpenWebUI Community Newsletter: [February 3, 2026](https://openwebui.com/blog/open-webui-community-newsletter-february-3rd-2026)
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's New in v1.0.0
|
||||
|
||||
### Direct Embed & UI Refinements
|
||||
|
||||
@@ -10,6 +10,19 @@
|
||||
|
||||
> 🏆 **OpenWebUI 官方推荐** — 本插件获得 OpenWebUI 社区 Newsletter 官方推荐:[2026 年 2 月 3 日](https://openwebui.com/blog/open-webui-community-newsletter-february-3rd-2026)
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## v1.0.0 最新更新
|
||||
|
||||
### 嵌入式直出与 UI 细节全线重构
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 200 KiB After Width: | Height: | Size: 380 KiB |
@@ -1,6 +1,6 @@
|
||||
# Async Context Compression Filter
|
||||
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| By [Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ Star this repo](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -8,6 +8,25 @@
|
||||
|
||||
This filter reduces token consumption in long conversations through intelligent summarization and message compression while keeping conversations coherent.
|
||||
|
||||
## Install with Batch Install Plugins
|
||||
|
||||
If you already use [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins), you can install or update this plugin with:
|
||||
|
||||
```text
|
||||
Install plugin from Fu-Jie/openwebui-extensions
|
||||
```
|
||||
|
||||
When the selection dialog opens, search for this plugin, check it, and continue.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If the official OpenWebUI Community version is already installed, remove it first. After that, Batch Install Plugins can keep this plugin updated in future runs.
|
||||
|
||||
## What's new in 1.6.0
|
||||
|
||||
- **Fixed `keep_first` Logic**: Re-defined `keep_first` to protect the first N **non-system** messages plus all interleaved system messages. This ensures initial context (e.g., identity, task instructions) is preserved correctly.
|
||||
- **Absolute System Message Protection**: System messages are now strictly excluded from compression. Any system message encountered in the history (even late-injected ones) is preserved as an original message in the final context. This ensures dynamic instructions (like live time/location from other plugins) remain accurate and never summarized.
|
||||
- **Improved Context Assembly**: Summaries now only target User and Assistant dialogue, ensuring that system instructions injected by other plugins are never "eaten" by the summarizer.
|
||||
|
||||
## What's new in 1.5.0
|
||||
|
||||
- **External Chat Reference Summaries**: Added support for referenced chat context blocks that can reuse cached summaries, inject small referenced chats directly, or generate summaries for larger referenced chats before injection.
|
||||
@@ -41,6 +60,10 @@ This filter reduces token consumption in long conversations through intelligent
|
||||
|
||||
## What This Fixes
|
||||
|
||||
- **Problem: System Messages being summarized/lost.**
|
||||
Previously, the filter could include system messages (especially those injected late by other plugins) in its summarization zone, causing important instructions to be lost. Now, all system messages are strictly preserved in their original role and never summarized.
|
||||
- **Problem: Incorrect `keep_first` behavior.**
|
||||
Previously, `keep_first` simply took the first $N$ messages. If those were only system messages, the initial user/assistant messages (which are often important for context) would be summarized. Now, `keep_first` ensures that $N$ non-system messages are protected.
|
||||
- **Problem 1: A referenced chat could break the current request.**
|
||||
Before, if the filter needed to summarize a referenced chat and that LLM call failed, the current chat could fail with it. Now it degrades gracefully and injects direct context instead.
|
||||
- **Problem 2: Some referenced chats were being cut too aggressively.**
|
||||
@@ -128,7 +151,7 @@ flowchart TD
|
||||
| `priority` | `10` | Execution order; lower runs earlier. |
|
||||
| `compression_threshold_tokens` | `64000` | Trigger asynchronous summary when total tokens exceed this value. Set to 50%-70% of your model's context window. |
|
||||
| `max_context_tokens` | `128000` | Hard cap for context; older messages (except protected ones) are dropped if exceeded. |
|
||||
| `keep_first` | `1` | Always keep the first N messages (protects system prompts). |
|
||||
| `keep_first` | `0` | Number of initial **non-system** messages to always keep (plus all preceding system prompts). |
|
||||
| `keep_last` | `6` | Always keep the last N messages to preserve recent context. |
|
||||
| `summary_model` | `None` | Model for summaries. Strongly recommended to set a fast, economical model (e.g., `gemini-2.5-flash`, `deepseek-v3`). Falls back to the current chat model when empty. |
|
||||
| `summary_model_max_context` | `0` | Input context window used to fit summary requests. If `0`, falls back to `model_thresholds` or global `max_context_tokens`. |
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 异步上下文压缩过滤器
|
||||
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.5.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| 作者:[Fu-Jie](https://github.com/Fu-Jie) · v1.6.0 | [⭐ 点个 Star 支持项目](https://github.com/Fu-Jie/openwebui-extensions) |
|
||||
| :--- | ---: |
|
||||
|
||||
|  |  |  |  |  |  |  |
|
||||
@@ -10,6 +10,25 @@
|
||||
|
||||
本过滤器通过智能摘要和消息压缩技术,在保持对话连贯性的同时,显著降低长对话的 Token 消耗。
|
||||
|
||||
## 使用 Batch Install Plugins 安装
|
||||
|
||||
如果你已经安装了 [Batch Install Plugins from GitHub](https://github.com/Fu-Jie/openwebui-extensions/tree/main/plugins/tools/batch-install-plugins),可以用下面这句来安装或更新当前插件:
|
||||
|
||||
```text
|
||||
从 Fu-Jie/openwebui-extensions 安装插件
|
||||
```
|
||||
|
||||
当选择弹窗打开后,搜索当前插件,勾选后继续安装即可。
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 如果你已经安装了 OpenWebUI 官方社区里的同名版本,请先删除旧版本,否则重新安装时可能报错。删除后,Batch Install Plugins 后续就可以继续负责更新这个插件。
|
||||
|
||||
## 1.6.0 版本更新
|
||||
|
||||
- **修正 `keep_first` 逻辑**:重新定义了 `keep_first` 的功能,现在它负责保护前 N 条**非系统消息**(以及它们之前的所有系统提示词)。这确保了初始对话背景(如身份设定、任务说明)能被正确保留。
|
||||
- **系统消息绝对保护**:系统消息现在被严格排除在压缩范围之外。历史记录中遇到的任何系统消息(甚至是后期注入的消息)都会作为原始消息保留在最终上下文中。
|
||||
- **改进的上下文组装**:摘要现在仅针对用户和助手的对话,确保其他插件注入的系统指令永远不会被摘要器“吃掉”。
|
||||
|
||||
## 1.5.0 版本更新
|
||||
|
||||
- **外部聊天引用摘要**: 新增对引用聊天上下文的摘要支持。现在可以复用缓存摘要、直接注入较小引用聊天,或先为较大的引用聊天生成摘要再注入。
|
||||
@@ -39,12 +58,14 @@
|
||||
- ✅ **智能模型匹配**: 自定义模型自动继承基础模型的阈值配置。
|
||||
- ⚠ **多模态支持**: 图片内容会被保留,但其 Token **不参与计算**。请相应调整阈值。
|
||||
|
||||
详细的工作原理和更长说明仍可参考 [工作流程指南](https://github.com/Fu-Jie/openwebui-extensions/blob/main/plugins/filters/async-context-compression/WORKFLOW_GUIDE_CN.md)。
|
||||
|
||||
---
|
||||
|
||||
## 这次解决了什么问题(通俗版)
|
||||
|
||||
- **问题:系统消息被摘要或丢失。**
|
||||
以前,过滤器可能会将被引用或后期注入的系统消息包含在摘要区域内,导致重要的指令丢失。现在,所有系统消息都严格按原样保留,永不被摘要。
|
||||
- **问题:`keep_first` 逻辑不符合预期。**
|
||||
以前 `keep_first` 只是简单提取前 N 条消息。如果前几条全是系统消息,初始的问答(通常对上下文很重要)就会被压缩掉。现在 `keep_first` 确保保护 N 条非系统消息。
|
||||
- **问题 1:引用别的聊天时,摘要失败可能把当前对话一起弄挂。**
|
||||
以前如果过滤器需要先帮被引用聊天做摘要,而这一步的 LLM 调用失败了,当前请求也可能直接失败。现在改成了“能摘要就摘要,失败就退回直接塞上下文”,当前对话不会被一起拖死。
|
||||
- **问题 2:有些被引用聊天被截得太早,信息丢得太多。**
|
||||
@@ -72,11 +93,11 @@ flowchart TD
|
||||
F -- 是 --> G[直接复用缓存摘要]
|
||||
F -- 否 --> H{能直接放进当前预算?}
|
||||
H -- 是 --> I[直接注入完整引用聊天文本]
|
||||
H -- 否 --> J[准备引用聊天的摘要输入]
|
||||
H -- No --> J[准备引用聊天的摘要输入]
|
||||
|
||||
J --> K{引用聊天摘要调用成功?}
|
||||
K -- 是 --> L[注入生成后的引用摘要]
|
||||
K -- 否 --> M[回退为直接注入上下文]
|
||||
K -- No --> M[回退为直接注入上下文]
|
||||
|
||||
G --> D
|
||||
I --> D
|
||||
@@ -136,7 +157,7 @@ flowchart TD
|
||||
| `priority` | `10` | 过滤器执行顺序,数值越小越先执行。 |
|
||||
| `compression_threshold_tokens` | `64000` | **重要**: 当上下文总 Token 超过此值时后台生成摘要,建议设为模型上下文窗口的 50%-70%。 |
|
||||
| `max_context_tokens` | `128000` | **重要**: 上下文硬上限,超过即移除最早消息(保留受保护消息)。 |
|
||||
| `keep_first` | `1` | 始终保留对话开始的 N 条消息,保护系统提示或环境变量。 |
|
||||
| `keep_first` | `0` | 始终保留对话开始的 N 条**非系统消息**(以及它们之前的所有系统提示词)。 |
|
||||
| `keep_last` | `6` | 始终保留对话末尾的 N 条消息,确保最近上下文连贯。 |
|
||||
|
||||
### 摘要生成配置
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user