feat: DeepSeek-自动折叠思考过程 (#1552)

This commit is contained in:
天方夜谭
2025-12-11 23:03:08 +08:00
committed by GitHub
parent dd8f765710
commit 58d023aaa2

View File

@@ -0,0 +1,24 @@
import { defineGkdApp } from '@gkd-kit/define';
export default defineGkdApp({
id: 'com.deepseek.chat',
name: 'DeepSeek',
groups: [
{
key: 1,
name: '功能类-自动折叠思考过程',
rules: [
{
activityIds: 'com.deepseek.chat.MainActivity',
matches:
'@[clickable=true] > [text="正在思考" || text^="已思考"] + View[desc="折叠"]',
snapshotUrls: [
'https://i.gkd.li/i/23982641', // 正在思考 未折叠
'https://i.gkd.li/i/23982613', // 已思考 未折叠
'https://i.gkd.li/i/23982615', // 已思考 折叠
],
},
],
},
],
});