Skip to content

Commit 9ace885

Browse files
committed
feat: 添加多厂商内容管道功能并增强核心代码文档
refactor: 重构循环机制和系统提示架构 docs: 更新核心代码和系统提示的详细文档
1 parent 77a891a commit 9ace885

File tree

6 files changed

+2466
-226
lines changed

6 files changed

+2466
-226
lines changed

src/App.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ const RequestTokenizerAnimation = lazy(() => import('./pages/RequestTokenizerAni
7373
const ResultCacheAnimation = lazy(() => import('./pages/ResultCacheAnimation').then(m => ({ default: m.ResultCacheAnimation })));
7474
const TerminalSerializerAnimation = lazy(() => import('./pages/TerminalSerializerAnimation').then(m => ({ default: m.TerminalSerializerAnimation })));
7575
const ContentConverterAnimation = lazy(() => import('./pages/ContentConverterAnimation').then(m => ({ default: m.ContentConverterAnimation })));
76+
const MultiProviderPipelineAnimation = lazy(() => import('./pages/MultiProviderPipelineAnimation'));
7677
const SmartEditAnimation = lazy(() => import('./pages/SmartEditAnimation').then(m => ({ default: m.SmartEditAnimation })));
7778
const VimBufferAnimation = lazy(() => import('./pages/VimBufferAnimation').then(m => ({ default: m.VimBufferAnimation })));
7879
const ChatCompressionAnimation = lazy(() => import('./pages/ChatCompressionAnimation').then(m => ({ default: m.ChatCompressionAnimation })));
@@ -325,6 +326,8 @@ function App() {
325326
return <TerminalSerializerAnimation />;
326327
case 'content-converter-anim':
327328
return <ContentConverterAnimation />;
329+
case 'multi-provider-pipeline-anim':
330+
return <MultiProviderPipelineAnimation />;
328331
case 'smart-edit-anim':
329332
return <SmartEditAnimation />;
330333
case 'vim-buffer-anim':

src/nav.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ export const navGroups: NavGroup[] = [
153153
{ id: 'result-cache-anim', label: '文件搜索缓存', highlight: true },
154154
{ id: 'terminal-serializer-anim', label: '终端序列化器', highlight: true },
155155
{ id: 'content-converter-anim', label: 'OpenAI 内容转换', highlight: true },
156+
{ id: 'multi-provider-pipeline-anim', label: '多厂商内容管道', highlight: true },
156157
{ id: 'smart-edit-anim', label: 'Smart Edit 替换引擎', highlight: true },
157158
{ id: 'vim-buffer-anim', label: 'Vim 文本缓冲区', highlight: true },
158159
{ id: 'chat-compression-anim', label: '聊天压缩分割点', highlight: true },

0 commit comments

Comments
 (0)