├── .gitignore ├── LICENSE ├── README.md ├── debug ├── analyzers │ ├── data-analyzer.js │ ├── state-analyzer.js │ └── sync-analyzer.js ├── debugger.js ├── templates │ └── debug-ui.html ├── tools │ ├── cleaner.js │ ├── inspector.js │ └── tester.js └── ui-manager.js ├── index.js ├── manifest.json ├── settings-modular.html ├── src ├── core │ ├── README.md │ ├── entities │ │ ├── Content.js │ │ ├── README.md │ │ ├── Task.js │ │ └── Vector.js │ ├── export-import │ │ ├── FileSystemManager.js │ │ ├── HybridVectorManager.js │ │ ├── InMemoryVectorDB.js │ │ ├── VectorCacheManager.js │ │ └── VectorExportImportManager.js │ ├── external-tasks │ │ ├── ExternalTaskManager.js │ │ ├── TaskReferenceResolver.js │ │ └── VectorCollectionManager.js │ ├── extractors │ │ ├── ChatExtractor.js │ │ ├── FileExtractor.js │ │ ├── IContentExtractor.js │ │ ├── README.md │ │ └── WorldInfoExtractor.js │ ├── memory │ │ └── MemoryService.js │ ├── pipeline │ │ ├── ITextProcessor.js │ │ ├── LifecycleManager.js │ │ ├── MiddlewareManager.js │ │ ├── PipelineIntegration.js │ │ ├── ProcessingContext.js │ │ ├── ProcessorFactory.js │ │ ├── ProcessorRegistry.js │ │ ├── README.md │ │ ├── TextDispatcher.js │ │ ├── TextPipeline.js │ │ ├── adapters │ │ │ └── ExtractorPipeline.js │ │ ├── events │ │ │ ├── EventListenerFactory.js │ │ │ └── PipelineEventBus.js │ │ ├── middleware │ │ │ ├── IMiddleware.js │ │ │ ├── LoggingMiddleware.js │ │ │ ├── TransformMiddleware.js │ │ │ └── ValidationMiddleware.js │ │ └── processors │ │ │ └── VectorizationProcessor.js │ └── query │ │ └── EnhancedQuerySystem.js ├── infrastructure │ ├── ConfigManager.js │ ├── api │ │ └── VectorizationAdapter.js │ ├── events │ │ ├── EventBus.js │ │ ├── README.md │ │ └── eventBus.instance.js │ └── storage │ │ └── StorageAdapter.js ├── legacy │ └── README.md ├── presentation │ └── TaskDisplay.js ├── services │ └── rerank │ │ ├── README.md │ │ ├── RerankConfig.js │ │ ├── RerankService.js │ │ ├── RerankTypes.js │ │ ├── index.js │ │ └── test.js ├── ui │ ├── EventManager.js │ ├── StateManager.js │ ├── components │ │ ├── ActionButtons.js │ │ ├── ChatSettings.js │ │ ├── ContentSelectionSettings.js │ │ ├── ExternalTaskUI.js │ │ ├── FileList.js │ │ ├── MemoryUI.js │ │ ├── MessageUI.js │ │ ├── NotificationManager.js │ │ ├── ProgressManager.js │ │ ├── QuerySettings.js │ │ ├── README.md │ │ ├── SettingsPanel.js │ │ ├── TagPresetManager.js │ │ ├── TagRulesEditor.js │ │ ├── TagUI.js │ │ ├── TaskList.js │ │ ├── VectorStoragePathUI.js │ │ ├── VectorizationSettings.js │ │ └── WorldInfoList.js │ ├── domUtils.js │ ├── settingsManager.js │ └── styles │ │ ├── base.css │ │ ├── buttons.css │ │ ├── components.css │ │ ├── content-selection.css │ │ ├── forms.css │ │ ├── index.css │ │ ├── preview.css │ │ ├── progress.css │ │ ├── responsive.css │ │ ├── tags.css │ │ └── tasks.css └── utils │ ├── Logger.js │ ├── README.md │ ├── chatUtils.js │ ├── contentFilter.js │ ├── hash.js │ ├── tagExtractor.js │ ├── tagParser.js │ ├── tagScanner.js │ └── taskNaming.js ├── style.css ├── webllm.js └── 标签提取示例.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/README.md -------------------------------------------------------------------------------- /debug/analyzers/data-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/analyzers/data-analyzer.js -------------------------------------------------------------------------------- /debug/analyzers/state-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/analyzers/state-analyzer.js -------------------------------------------------------------------------------- /debug/analyzers/sync-analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/analyzers/sync-analyzer.js -------------------------------------------------------------------------------- /debug/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/debugger.js -------------------------------------------------------------------------------- /debug/templates/debug-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/templates/debug-ui.html -------------------------------------------------------------------------------- /debug/tools/cleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/tools/cleaner.js -------------------------------------------------------------------------------- /debug/tools/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/tools/inspector.js -------------------------------------------------------------------------------- /debug/tools/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/tools/tester.js -------------------------------------------------------------------------------- /debug/ui-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/debug/ui-manager.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/manifest.json -------------------------------------------------------------------------------- /settings-modular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/settings-modular.html -------------------------------------------------------------------------------- /src/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/README.md -------------------------------------------------------------------------------- /src/core/entities/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/entities/Content.js -------------------------------------------------------------------------------- /src/core/entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/entities/README.md -------------------------------------------------------------------------------- /src/core/entities/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/entities/Task.js -------------------------------------------------------------------------------- /src/core/entities/Vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/entities/Vector.js -------------------------------------------------------------------------------- /src/core/export-import/FileSystemManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/export-import/FileSystemManager.js -------------------------------------------------------------------------------- /src/core/export-import/HybridVectorManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/export-import/HybridVectorManager.js -------------------------------------------------------------------------------- /src/core/export-import/InMemoryVectorDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/export-import/InMemoryVectorDB.js -------------------------------------------------------------------------------- /src/core/export-import/VectorCacheManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/export-import/VectorCacheManager.js -------------------------------------------------------------------------------- /src/core/export-import/VectorExportImportManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/export-import/VectorExportImportManager.js -------------------------------------------------------------------------------- /src/core/external-tasks/ExternalTaskManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/external-tasks/ExternalTaskManager.js -------------------------------------------------------------------------------- /src/core/external-tasks/TaskReferenceResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/external-tasks/TaskReferenceResolver.js -------------------------------------------------------------------------------- /src/core/external-tasks/VectorCollectionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/external-tasks/VectorCollectionManager.js -------------------------------------------------------------------------------- /src/core/extractors/ChatExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/extractors/ChatExtractor.js -------------------------------------------------------------------------------- /src/core/extractors/FileExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/extractors/FileExtractor.js -------------------------------------------------------------------------------- /src/core/extractors/IContentExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/extractors/IContentExtractor.js -------------------------------------------------------------------------------- /src/core/extractors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/extractors/README.md -------------------------------------------------------------------------------- /src/core/extractors/WorldInfoExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/extractors/WorldInfoExtractor.js -------------------------------------------------------------------------------- /src/core/memory/MemoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/memory/MemoryService.js -------------------------------------------------------------------------------- /src/core/pipeline/ITextProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/ITextProcessor.js -------------------------------------------------------------------------------- /src/core/pipeline/LifecycleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/LifecycleManager.js -------------------------------------------------------------------------------- /src/core/pipeline/MiddlewareManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/MiddlewareManager.js -------------------------------------------------------------------------------- /src/core/pipeline/PipelineIntegration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/PipelineIntegration.js -------------------------------------------------------------------------------- /src/core/pipeline/ProcessingContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/ProcessingContext.js -------------------------------------------------------------------------------- /src/core/pipeline/ProcessorFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/ProcessorFactory.js -------------------------------------------------------------------------------- /src/core/pipeline/ProcessorRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/ProcessorRegistry.js -------------------------------------------------------------------------------- /src/core/pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/README.md -------------------------------------------------------------------------------- /src/core/pipeline/TextDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/TextDispatcher.js -------------------------------------------------------------------------------- /src/core/pipeline/TextPipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/TextPipeline.js -------------------------------------------------------------------------------- /src/core/pipeline/adapters/ExtractorPipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/adapters/ExtractorPipeline.js -------------------------------------------------------------------------------- /src/core/pipeline/events/EventListenerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/events/EventListenerFactory.js -------------------------------------------------------------------------------- /src/core/pipeline/events/PipelineEventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/events/PipelineEventBus.js -------------------------------------------------------------------------------- /src/core/pipeline/middleware/IMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/middleware/IMiddleware.js -------------------------------------------------------------------------------- /src/core/pipeline/middleware/LoggingMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/middleware/LoggingMiddleware.js -------------------------------------------------------------------------------- /src/core/pipeline/middleware/TransformMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/middleware/TransformMiddleware.js -------------------------------------------------------------------------------- /src/core/pipeline/middleware/ValidationMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/middleware/ValidationMiddleware.js -------------------------------------------------------------------------------- /src/core/pipeline/processors/VectorizationProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/pipeline/processors/VectorizationProcessor.js -------------------------------------------------------------------------------- /src/core/query/EnhancedQuerySystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/core/query/EnhancedQuerySystem.js -------------------------------------------------------------------------------- /src/infrastructure/ConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/ConfigManager.js -------------------------------------------------------------------------------- /src/infrastructure/api/VectorizationAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/api/VectorizationAdapter.js -------------------------------------------------------------------------------- /src/infrastructure/events/EventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/events/EventBus.js -------------------------------------------------------------------------------- /src/infrastructure/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/events/README.md -------------------------------------------------------------------------------- /src/infrastructure/events/eventBus.instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/events/eventBus.instance.js -------------------------------------------------------------------------------- /src/infrastructure/storage/StorageAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/infrastructure/storage/StorageAdapter.js -------------------------------------------------------------------------------- /src/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/legacy/README.md -------------------------------------------------------------------------------- /src/presentation/TaskDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/presentation/TaskDisplay.js -------------------------------------------------------------------------------- /src/services/rerank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/README.md -------------------------------------------------------------------------------- /src/services/rerank/RerankConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/RerankConfig.js -------------------------------------------------------------------------------- /src/services/rerank/RerankService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/RerankService.js -------------------------------------------------------------------------------- /src/services/rerank/RerankTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/RerankTypes.js -------------------------------------------------------------------------------- /src/services/rerank/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/index.js -------------------------------------------------------------------------------- /src/services/rerank/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/services/rerank/test.js -------------------------------------------------------------------------------- /src/ui/EventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/EventManager.js -------------------------------------------------------------------------------- /src/ui/StateManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/StateManager.js -------------------------------------------------------------------------------- /src/ui/components/ActionButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/ActionButtons.js -------------------------------------------------------------------------------- /src/ui/components/ChatSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/ChatSettings.js -------------------------------------------------------------------------------- /src/ui/components/ContentSelectionSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/ContentSelectionSettings.js -------------------------------------------------------------------------------- /src/ui/components/ExternalTaskUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/ExternalTaskUI.js -------------------------------------------------------------------------------- /src/ui/components/FileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/FileList.js -------------------------------------------------------------------------------- /src/ui/components/MemoryUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/MemoryUI.js -------------------------------------------------------------------------------- /src/ui/components/MessageUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/MessageUI.js -------------------------------------------------------------------------------- /src/ui/components/NotificationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/NotificationManager.js -------------------------------------------------------------------------------- /src/ui/components/ProgressManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/ProgressManager.js -------------------------------------------------------------------------------- /src/ui/components/QuerySettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/QuerySettings.js -------------------------------------------------------------------------------- /src/ui/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/README.md -------------------------------------------------------------------------------- /src/ui/components/SettingsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/SettingsPanel.js -------------------------------------------------------------------------------- /src/ui/components/TagPresetManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/TagPresetManager.js -------------------------------------------------------------------------------- /src/ui/components/TagRulesEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/TagRulesEditor.js -------------------------------------------------------------------------------- /src/ui/components/TagUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/TagUI.js -------------------------------------------------------------------------------- /src/ui/components/TaskList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/TaskList.js -------------------------------------------------------------------------------- /src/ui/components/VectorStoragePathUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/VectorStoragePathUI.js -------------------------------------------------------------------------------- /src/ui/components/VectorizationSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/VectorizationSettings.js -------------------------------------------------------------------------------- /src/ui/components/WorldInfoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/components/WorldInfoList.js -------------------------------------------------------------------------------- /src/ui/domUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/domUtils.js -------------------------------------------------------------------------------- /src/ui/settingsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/settingsManager.js -------------------------------------------------------------------------------- /src/ui/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/base.css -------------------------------------------------------------------------------- /src/ui/styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/buttons.css -------------------------------------------------------------------------------- /src/ui/styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/components.css -------------------------------------------------------------------------------- /src/ui/styles/content-selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/content-selection.css -------------------------------------------------------------------------------- /src/ui/styles/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/forms.css -------------------------------------------------------------------------------- /src/ui/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/index.css -------------------------------------------------------------------------------- /src/ui/styles/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/preview.css -------------------------------------------------------------------------------- /src/ui/styles/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/progress.css -------------------------------------------------------------------------------- /src/ui/styles/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/responsive.css -------------------------------------------------------------------------------- /src/ui/styles/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/tags.css -------------------------------------------------------------------------------- /src/ui/styles/tasks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/ui/styles/tasks.css -------------------------------------------------------------------------------- /src/utils/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/Logger.js -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/chatUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/chatUtils.js -------------------------------------------------------------------------------- /src/utils/contentFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/contentFilter.js -------------------------------------------------------------------------------- /src/utils/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/hash.js -------------------------------------------------------------------------------- /src/utils/tagExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/tagExtractor.js -------------------------------------------------------------------------------- /src/utils/tagParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/tagParser.js -------------------------------------------------------------------------------- /src/utils/tagScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/tagScanner.js -------------------------------------------------------------------------------- /src/utils/taskNaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/src/utils/taskNaming.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/style.css -------------------------------------------------------------------------------- /webllm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/webllm.js -------------------------------------------------------------------------------- /标签提取示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphllA/vectors-enhanced/HEAD/标签提取示例.md --------------------------------------------------------------------------------