diff --git a/app/components/ZoteroFeed.tsx b/app/components/ZoteroFeed.tsx index f28f94a..718d1bd 100644 --- a/app/components/ZoteroFeed.tsx +++ b/app/components/ZoteroFeed.tsx @@ -39,7 +39,7 @@ export function ZoteroFeed({ const controller = new AbortController(); // Fetch only top-level items; exclude children implicitly. We will filter // attachments/notes on the client for extra safety. - const url = `https://api.zotero.org/groups/${groupId}/items/top?format=json&limit=${limit}&sort=date&direction=desc`; + const url = `https://api.zotero.org/groups/${groupId}/items/top?format=json&limit=${limit}&sort=dateAdded&direction=desc`; fetch(url, { signal: controller.signal }) .then(async (r) => { if (!r.ok) throw new Error(`${r.status} ${r.statusText}`); diff --git a/app/docs/ai/multimodal/multimodal-overview.mdx b/app/docs/ai/multimodal/multimodal-overview.mdx index ab0d3a2..535c2e9 100644 --- a/app/docs/ai/multimodal/multimodal-overview.mdx +++ b/app/docs/ai/multimodal/multimodal-overview.mdx @@ -13,7 +13,7 @@ tags: ## 核心技术框架 -### 🎯 LLaVA 框架 +### LLaVA 框架 - 前往: [LLaVA 框架](./llava/) - 视觉指令调优开创 @@ -21,7 +21,7 @@ tags: - CLIP 基础技术详解 - 复现项目实践指导 -### 🚀 QwenVL 系列 +### QwenVL 系列 - 前往: [QwenVL 系列](./qwenvl/) - 中文多模态大模型标杆 @@ -29,7 +29,7 @@ tags: - 微调复现实践教程 - 源码解读与简化实践 -### 👁️ ViT 视觉编码器 +### ViT 视觉编码器 - 前往: [ViT 视觉编码器](./vit/) - Vision Transformer 原理 @@ -37,7 +37,7 @@ tags: - Token 合并策略研究 - 学习笔记资源整理 -### 🧠 MLLM 多模态大模型 +### MLLM 多模态大模型 - 前往: [MLLM 多模态大模型](./mllm/) - 主流模型技术对比 @@ -45,7 +45,7 @@ tags: - 长视频理解方案 - 多轮对话交互设计 -### 📹 视频大模型 +### 视频大模型 - 前往: [视频大模型](./video-mm-todo/) - 时空建模技术挑战 @@ -53,7 +53,7 @@ tags: - 多粒度理解方案 - 实时处理技术 -### 📚 多模态课程 +### 多模态课程 - 前往: [多模态课程](./courses/) - 理论基础与实践结合