Skip to content

feat(chat): 将 AQBot 加入第三方聊天默认列表 - #7079

Merged
Calcium-Ion merged 1 commit into
QuantumNous:mainfrom
Licoy:feat/chat-aqbot-preset
Aug 29, 2026
Merged

feat(chat): 将 AQBot 加入第三方聊天默认列表#7079
Calcium-Ion merged 1 commit into
QuantumNous:mainfrom
Licoy:feat/chat-aqbot-preset

Conversation

@Licoy

@Licoy Licoy commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

Agent

  • Tool: Grok
  • Tool version: Grok Build
  • Model (full id): grok-4.6
  • Host (CLI / IDE / GitHub coding agent / other): CLI
  • Date (UTC): 2026-08-29

Links

User request

https://github.com/AQBot-Desktop/AQBot 集成到 newapi 当前这个项目的第三方聊天的默认列表里面去,给一个完整的方案

Out of scope — refuse

  • Matched: no
  • If yes, what was told to the user (stop here; do not open a PR):

Kind

  • Bug fix
  • New feature
  • Performance / refactor
  • Docs
  • Other:

Issue facts

  • Actual behavior: 默认第三方聊天列表没有 AQBot,也无法生成 aqbot://providers 导入链接。
  • Impact: 用户无法从控制台一键把当前站点地址和 API Key 导入 AQBot。
  • Frequency: 所有未自定义 Chats 的部署。
  • Evidence that the problem is in new-api rather than the client or upstream: AQBot 已支持 aqbot://providers;缺口在 new-api 默认 ChatsresolveChatUrl
  • Applicable types and their fields (relay / billing / frontend / deployment; write "not applicable" otherwise): frontend(聊天预设);relay / billing / deployment not applicable

Change

默认 Chats 在 DeepChat 后增加 AQBot 条目,模板为 aqbot://providers?{aqbotConfig}chatLinkRequiresApiKey 识别 {aqbotConfig}resolveChatUrl 按 AQBot 协议用 encodeURIComponentname=New APIbaseurl(站点根地址,不带 /v1)、apikeytype=openai。侧边栏、API 密钥行操作、聊天页已走同一解析函数,不用再改组件。已保存过 Chats 的站点不自动合并。

Research

Duplicate / prior art

  • Search queries (issues, PRs): AQBotDeepChat聊天预设Cherry Studio
  • What already existed and why this is not a duplicate: 无 AQBot issue/PR。feat: add DeepChat deeplink support #4668 是 DeepChat 同类 deeplink,模式可复用但客户端不同。

Docs and code

  • https://docs.newapi.ai/ : 未覆盖默认聊天客户端列表或 AQBot。
  • https://deepwiki.com/QuantumNous/new-api : 本次抓取失败。
  • README / repo docs: README 合作伙伴区没有 AQBot;默认列表以 setting/chat.go 为准。
  • Code paths and what they imply for this change: setting/chat.go 默认列表;web/src/features/chat/lib/chat-links.ts 已有 {cherryConfig} {aionuiConfig} {deepchatConfig}。AQBot 源码要求 aqbot://providers?name&baseurl&apikey&type

Alternatives considered

  • Option A: {aqbotConfig} 专用占位符,JS 编码 query。
  • Option B: 只用现有 {address} {key} 拼 URL。
  • Why this approach: {key} 当前不编码,密钥里的 & 会截断 query;A 与 Cherry/DeepChat 一致。

Files

Path Why
setting/chat.go 默认聊天预设增加 AQBot
web/src/features/chat/lib/chat-links.ts 解析 {aqbotConfig} 并编码导入链接

Behavior

  • Before: 默认列表无 AQBot,无法一键导入。
  • After: 新部署默认列表有 AQBot;点击后打开 aqbot://providers?name=New%20API&baseurl=...&apikey=...&type=openai
  • Explicit non-goals / leftover work: 不改落地页/README logo;不自动改已保存的 Chats

Verification

  • Commands and results: cd web && bun run test src/features/chat/lib/chat-links.test.ts 4 passed(测试文件未纳入本次提交);cd web && bun run typecheck 通过;cd web && bunx oxlint -c .oxlintrc.json src/features/chat/lib/chat-links.ts 0 error;gofmt -e -l setting/chat.go 无输出。
  • Manual steps and observed result: 本地 SQLite 启动后 GET /api/statuschats 含 AQBot,位于 DeepChat 与 Lobe Chat 之间。
  • UI: screenshot or recording (or why none): 本地控制台可看到预设;未上传截图。
  • Tests added or updated, or why none: 本地写了 chat-links.test.ts,按要求未提交。
  • Databases / providers / platforms exercised: sqlite;前端 dev server。
  • Not verified: 未在已安装 AQBot 的机器上完成客户端确认导入;未跑 MySQL/PostgreSQL(无表结构变更)。

Risks

  • Failure modes: 未安装 AQBot 时系统打不开 aqbot://,与 Cherry Studio 相同;已保存自定义 Chats 的站点升级后不会自动出现 AQBot。
  • Billing / quota / auth impact: 无。导入仍用用户自己的 API Key,AQBot 侧会再确认。
  • Follow-ups: 管理员若需要,可在系统设置手动添加 {"AQBot":"aqbot://providers?{aqbotConfig}"}

Scope check

  • Single focused change: yes
  • Secrets included: no
  • Out of scope (Coding Plan / reverse-engineered channel / third-party wrapper / Codex): no

Summary by CodeRabbit

  • New Features

    • Added AQBot as a supported chat provider.
    • AQBot connections now generate configuration links using the provider name, endpoint, API key, and OpenAI-compatible type.
  • Bug Fixes

    • AQBot configuration links are now correctly recognized as requiring an API key.

说明:
- 默认聊天预设增加 AQBot,点击后通过 aqbot://providers 一键导入当前站点地址和 API Key
- 新增 {aqbotConfig} 占位符,按 AQBot 协议编码 name、baseurl、apikey 和 type=openai

操作:
- 新部署会在聊天预设中看到 AQBot
- 已保存过 Chats 的站点需在系统设置中手动添加:{"AQBot":"aqbot://providers?{aqbotConfig}"}
Copilot AI lite review requested due to automatic review settings August 29, 2026 12:31
@coderabbitai

coderabbitai Bot commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: b26c5197-33f7-4125-88bc-c9655958139a

📥 Commits

Reviewing files that changed from the base of the PR and between b80d633 and b7fe98e.

📒 Files selected for processing (2)
  • setting/chat.go
  • web/src/features/chat/lib/chat-links.ts

Included review availability: Your plan provides up to 10 included reviews per hour; 9 remain after this review.


Walkthrough

The default chat preset list now includes AQBot. The frontend recognizes {aqbotConfig} links, requires an API key, and generates an encoded aqbot://providers URL with the current server and API key.

Changes

AQBot integration

Layer / File(s) Summary
Add AQBot default preset
setting/chat.go
The default Chats list includes the AQBot preset with the aqbot://providers?{aqbotConfig} template.
Resolve AQBot provider links
web/src/features/chat/lib/chat-links.ts
chatLinkRequiresApiKey recognizes {aqbotConfig}. resolveChatUrl replaces the token with encoded name, baseurl, apikey, and type=openai parameters.

Estimated code review effort: 2 (Simple) | ~10 minutes

Merge Risk: 🔵 Low · up to b7fe9

The new AQBot preset lets users send the selected API key and server address to the locally registered AQBot application. The action is explicit and uses the existing key-selection safeguards, so the PR is mergeable with owner awareness that the receiving desktop application must be trusted.

Suggested reviewers: calcium-ion

Poem

A rabbit hops where new links glow
AQBot gets a path to go
Server and key are packed just right
Encoded softly, clean and tight
One click sends the config flight

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Docstring coverage is scoped to functions touched by this diff. Analyzed 2 functions across 2 files. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed 标题明确概括了主要变更:将 AQBot 加入第三方聊天默认列表。
Linked Issues check ✅ Passed 变更满足 Issue #7078 的编码要求:新增默认 AQBot 条目,支持 aqbot://providers?{aqbotConfig},并生成包含 namebaseurlapikeytype=openai 的 URL 编码配置。
Out of Scope Changes check ✅ Passed 变更仅涉及默认 Chats 条目和统一链接解析逻辑,与 Issue #7078 的目标一致。未发现 relay、billing、deployment、数据库或文档等范围外修改。
  • Fix all pre-merge checks with AI
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

本 PR 为 new-api 的「第三方聊天」默认预设新增 AQBot 集成入口,并在前端统一链接解析逻辑中支持 {aqbotConfig} 占位符,以生成符合 AQBot aqbot://providers 协议的导入链接。

Changes:

  • 在后端默认 Chats 列表中新增 AQBot 预设条目:aqbot://providers?{aqbotConfig}
  • 在前端 chatLinkRequiresApiKey / resolveChatUrl 中新增 {aqbotConfig} 识别与参数编码拼装(name/baseurl/apikey/type=openai)。

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
setting/chat.go 在默认第三方聊天预设列表中加入 AQBot deeplink 模板
web/src/features/chat/lib/chat-links.ts 新增 {aqbotConfig} 占位符解析,生成 AQBot providers 导入链接

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment on lines +193 to +201
if (url.includes('{aqbotConfig}')) {
const query = [
`name=${encodeURIComponent('New API')}`,
`baseurl=${encodeURIComponent(safeServerAddress)}`,
`apikey=${encodeURIComponent(safeApiKey)}`,
'type=openai',
].join('&')
return replaceToken(url, '{aqbotConfig}', query)
}
@Calcium-Ion
Calcium-Ion merged commit 8454082 into QuantumNous:main Aug 29, 2026
2 of 3 checks passed
chunfeng789 added a commit to chunfeng789/new-api that referenced this pull request Aug 30, 2026
* fix(web): restore admin unbinding for built-in providers (QuantumNous#6987)

* fix(web): align admin binding types

Refs QuantumNous#6985

* test(web): restore animation mock

* fix(billing): 修复时间规则恒真表达式导致倍率全天生效 (QuantumNous#6934)


Co-authored-by: seefs001 <i@seefs.me>

* fix(docker): add relaykit go.mod to dev build context (QuantumNous#7072)

* feat(task): replace built-in task adaptors with a sandboxed JS plugin system (QuantumNous#7076)

* fix(relay): 请求参数校验错误返回 HTTP 400 (QuantumNous#6774)

* fix(relay): return 400 for invalid request parameters

* fix(web): recheck setup status after page reload (QuantumNous#6968)

* feat(auth): encrypt password login transport

Closes QuantumNous#6743

* feat(chat): add AQBot preset (QuantumNous#7079)

* feat(auth): make password encryption opt-in QuantumNous#6743

* feat(task): resolve channel-mapped aliases and case variants for plugin models

Channel model_mapping keys exposed in a channel's model list now act as
first-class aliases for task-plugin models across the whole line:

- Derived alias view (model/task_model_alias.go): built from enabled
  channels' model_mapping, chain-following with cycle detection, declared
  names always win, cross-plugin conflicts dropped. Rebuilt on channel
  cache refresh, registry generation change, and a 60s TTL.
- Request path: PinTaskPluginEndpoint resolves declared-name case folds
  and mapping aliases before endpoint lookup (never rewriting the body
  until the endpoint is claimed), pins with MappedModel, and the decode
  contract accepts alias echoes without loosening model ownership for
  normal pins. Legacy /v1/tasks submit folds case variants the same way.
  Fixes aliases on POST /v1/responses silently falling through to the
  main relay against task channels.
- Mapping order: ModelMappedHelper now runs before the plugin submit
  hook builds and caches the upstream body, so channel model_mapping
  actually reaches the upstream request. Plugins receive the mapped
  name as ctx.upstreamModel in both decode and submit contexts.
- Billing: identity stays the origin name; when the alias has no tiered
  expression, the selected channel's mapping tail expression applies.
  Pricing page and billing-expr smoke tests resolve aliases to the
  owning plugin's usage schema.
- Case folding: ASCII-only fold with exact-match priority; same-plugin
  and cross-plugin fold collisions rejected at registration.
- Plugins: model-keyed rate tables, req_key derivation, and combo
  validation in doubao/kling/jimeng/hailuo/vidu/sunoapi now key on
  ctx.upstreamModel || ctx.model; render/echo paths keep ctx.model.

* fix(model): disable PostgreSQL prepared statements for pooler compatibility

GORM v1.25.2 closes cached prepared statements asynchronously on any SQL
error and immediately re-Parses the same deterministic name (pgx's
stmt_<sha256>) on the same client connection. Transaction-pooling proxies
(PgBouncer >=1.21 with max_prepared_statements, Neon, Supabase) respond
with FATAL "prepared statement name is already in use" (SQLSTATE 08P01)
and drop the connection. PreferSimpleProtocol only disables pgx's
implicit prepare and never covered GORM's explicit PrepareStmt cache.

- PostgreSQL now runs with PrepareStmt disabled entirely; named prepared
  statements are fundamentally session state and cannot be made safe
  under transaction pooling. Parse/plan cost is noise for this workload.
- Upgrade gorm to v1.25.12 so MySQL/SQLite statement caches (still
  enabled) no longer churn close/re-prepare on ordinary SQL errors;
  v1.25.9+ restricts eviction to driver.ErrBadConn. Deliberately not
  v1.26+, whose LRU eviction has an open use-after-close race (#7831).
- sanitizeDBError now attaches a remediation hint on 08P01/42P05 so
  affected deployments can self-diagnose from the log line.

* fix(ali): honor image response format (QuantumNous#5513) (QuantumNous#7048)

* feat(web): factory task plugins update only with the system

Marketplace install/upgrade on a factory-served plugin actually created
a permanent override shadowing every future built-in release. The card
now shows an informational "Updates with the system" badge instead of
the action, while keeping the built-in vs marketplace version line and
the upgradable state badge visible. Deliberate overrides are untouched:
upload and marketplace actions on overridden or third-party plugins
behave as before, and the plugins table now hints when an override
lags behind the shipped built-in version so operators know deleting it
restores the newer factory plugin.

* fix(subscription): 无有效订阅时前端如实显示「仅用订阅」偏好 (QuantumNous#6222) (QuantumNous#7086)

Co-authored-by: Claude <noreply@anthropic.com>

* fix(sqlite): enable WAL + working busy timeout + _txlock=immediate to stop concurrent write lockouts (QuantumNous#7030)

* fix(sqlite): enable WAL + working busy timeout + _txlock=immediate to stop concurrent write lockouts

* fix(model): return string from JSON column Valuers for pg simple protocol

With PrepareStmt disabled, PostgreSQL queries run over pgx's simple
protocol, which encodes every []byte parameter as a bytea hex literal
('\x...'). driver.Valuer implementations returning []byte from
json.Marshal therefore fail json-column writes with SQLSTATE 22P02
(reported on the channels UPDATE path via ChannelInfo).

Reproduced against a live PostgreSQL 16: []byte Valuer into a json
column fails under simple protocol, string succeeds; []byte into a
text column silently stores the hex literal (no such path exists in
the repo today — audited all Valuers, json.RawMessage fields, and raw
SQL call sites).

- ChannelInfo, Properties, TaskPrivateData, JSONValue Value() now
  return string; zero-value nil semantics unchanged. Task.Data
  (bare json.RawMessage) is unaffected — database/sql's default
  converter already passes it as expected.
- Their Scan() counterparts now accept both []byte and string via a
  shared jsonScanBytes helper: SQLite returns string for these columns
  once Value() emits string, and the old []byte-only assertions
  silently zeroed the field (caught by the model test suite).
- Add regression tests locking both contracts: json-column Valuers
  must return string (or nil for zero values), Scanners must accept
  []byte and string.

Verified end-to-end against PostgreSQL 16 with the real model types:
Channel create/update/read-back, Task json fields, PrefillGroup items.

* fix(relay): bound the wait for upstream response headers (fixes unbounded heap growth → OOM) (QuantumNous#6949)

* fix(relay): bound the wait for upstream response headers (fixes unbounded heap growth)

The relay transport sets a dial timeout, a TLS handshake timeout and an expect-continue
timeout, but nothing bounds how long it waits for the upstream *response headers* after
the request has been written. An upstream that accepts the connection and then never
answers -- without sending FIN/RST, which is what happens when a NAT/firewall silently
drops the flow or the provider hangs -- parks the goroutine in
net/http.(*persistConn).roundTrip forever.

That goroutine keeps the whole request alive, which in practice means three copies of the
request body stay reachable for the lifetime of the process: the raw bytes from
io.ReadAll in CreateBodyStorageFromReader, the decoded messages held as json.RawMessage,
and the re-marshalled upstream body from common.Marshal. BodyStorageCleanup cannot help
here: it runs after c.Next() returns, and for these requests c.Next() never returns.

Measured on v1.0.0-rc.23 in production (see QuantumNous#6947 for the full evidence):

  - 23 goroutines stuck in persistConn.roundTrip on a single 40h-old instance,
    blocked between 353 and 1894 minutes (5.9h to 31.5h)
  - 96.9% of the live heap, sampled after a forced GC, attributable to those three
    body copies (HeapAlloc 892 MiB surviving three GC cycles; HeapObjects dropping
    30x while bytes dropped only 25%)
  - the live floor grows with uptime: 33.7 MiB at 0.1h, 89.2 at 13.8h, 510.0 at 40.1h,
    955.2 at 146.8h, OOMKilled at 172.9h -- same image, same config, same load

Doubling the memory limit and adding GOMEMLIMIT only moved the OOM from 132h to 172.9h.

RELAY_TIMEOUT (http.Client.Timeout) cannot be used for this: it covers the whole response
read and would cut legitimate long streaming calls, which is why it defaults to 0.
ResponseHeaderTimeout only bounds the wait for the headers; streaming after they arrive is
unaffected.

The default is deliberately generous. Non-streaming upstreams usually send the response
headers only once generation has finished, so the value has to leave room for a long
completion. 1800s is 12x shorter than the shortest hang observed here while leaving
several times the headroom a normal non-streaming request needs; 0 restores the previous
unbounded behaviour.

The assignment goes next to the other transport.* lines rather than inside the else
branch: newRelayHTTPTransport() normally takes the http.DefaultTransport.Clone() path,
and DefaultTransport does not set ResponseHeaderTimeout either.

This repo already sets ResponseHeaderTimeout on its other outbound transports
(controller/model_sync.go, controller/ratio_sync.go); the relay path appears to have
been missed.

Refs QuantumNous#6947. Likely also the root cause of QuantumNous#6731, which reported the same symptom
(production OOM on /v1/responses after ~64h) but was closed for template reasons.

* review: clamp overflowing timeout values and switch the test to testify

Addresses the two CodeRabbit findings on this PR.

Overflow (common/init.go:113): a RELAY_RESPONSE_HEADER_TIMEOUT beyond ~9.2e9 seconds
overflows time.Duration and can wrap into a *tiny positive* timeout, which would cut
every relay request instead of only the stuck ones. The value is now clamped before the
conversion, with regression tests for both the negative and the overflowing input.

I did not add fail-on-startup validation for negative values, for two reasons: the
existing `if seconds > 0` guard already treats them as "disabled", and the neighbouring
env-driven timeouts in this file are less strict still -- RelayIdleConnTimeout is
converted with no guard at all. Failing startup on a bad value would be a behaviour
change out of step with the rest of the file; happy to add it if you'd prefer that
direction repo-wide.

Test style: switched to testify (require.Equal / require.Zero / require.Positive), which
is what every other test under service/ uses.

go build, go vet and go test ./common/... ./service/... pass.
(`go build ./...` fails on the `web/dist` embed both with and without this change -- the
frontend bundle is not checked in.)

* fix initialize database

* fix(model): drop leftover prefill_groups unique constraints before AutoMigrate (QuantumNous#7100)

* Revert "fix(model): drop leftover prefill_groups unique constraints before Au…" (QuantumNous#7101)

This reverts commit 69a41ee.

* fix(model): drop leftover prefill_groups unique constraints before AutoMigrate

---------

Co-authored-by: zcxads666 <128150298+zcxads666@users.noreply.github.com>
Co-authored-by: seefs001 <i@seefs.me>
Co-authored-by: Uladzislau <53997152+VladKabiak@users.noreply.github.com>
Co-authored-by: Calcium-Ion <i@caion.me>
Co-authored-by: Alex Xiang <ax2@zicode.com>
Co-authored-by: Seefs <40468931+seefs001@users.noreply.github.com>
Co-authored-by: 憧憬Licoy <licoycn@gmail.com>
Co-authored-by: PuppetKL <154485567+PuppetKL@users.noreply.github.com>
Co-authored-by: ruiyunzhao <91191418+CR-Yun@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Xayinn <129403670+LinineTy@users.noreply.github.com>
Co-authored-by: txgo <tianxi.liu@gmail.com>
yiranxiaohui pushed a commit to yiranxiaohui/new-api that referenced this pull request Sep 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

将 AQBot 加入第三方聊天默认列表

3 participants