├── .gitignore ├── Backend ├── .gitignore ├── ensure_dependencies.py ├── main.py ├── requirements.txt ├── src │ ├── authentication │ │ ├── api_key_authorization.py │ │ └── token.py │ ├── data │ │ ├── dataFetch │ │ │ ├── webcrawler.py │ │ │ └── youtube.py │ │ ├── dataIntake │ │ │ ├── csvFallbackSplitting.py │ │ │ ├── fileTypes │ │ │ │ └── loadX.py │ │ │ ├── getHtmlFiles.py │ │ │ ├── loadFile.py │ │ │ └── textSplitting.py │ │ └── database │ │ │ ├── checkAPIKey.py │ │ │ ├── db.py │ │ │ ├── getCollectionInfo.py │ │ │ └── getLLMApiKey.py │ ├── endpoint │ │ ├── api.py │ │ ├── deleteStore.py │ │ ├── devApiCall.py │ │ ├── embed.py │ │ ├── models.py │ │ ├── ragQuery.py │ │ ├── transcribe.py │ │ ├── vectorQuery.py │ │ └── webcrawl.py │ ├── llms │ │ ├── llmQuery.py │ │ ├── messages │ │ │ └── formMessages.py │ │ └── providers │ │ │ ├── local.py │ │ │ ├── ollama.py │ │ │ ├── ooba.py │ │ │ └── openai.py │ ├── models │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── exllama.py │ │ │ ├── hqq.py │ │ │ ├── llamaccphf.py │ │ │ ├── llamacpp.py │ │ │ ├── tensorrt.py │ │ │ └── transformers.py │ │ ├── manager.py │ │ ├── streamer.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── detect_type.py │ │ │ ├── device.py │ │ │ ├── download.py │ │ │ └── platform.py │ ├── vectorstorage │ │ ├── embeddings.py │ │ ├── helpers │ │ │ └── sanitizeCollectionName.py │ │ ├── init_store.py │ │ └── vectorstore.py │ └── voice │ │ └── voice_to_text.py └── tests │ ├── testApi.py │ └── test_voice.py ├── Frontend ├── .gitignore ├── build │ ├── icon.png │ ├── icons │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ ├── icon_512x512@2x.png │ │ │ ├── icon_64x64.png │ │ │ └── icon_64x64@2x.png │ │ └── icon.png │ └── linux.png ├── components.json ├── e2e │ └── app.spec.ts ├── electron-builder.json ├── eslint.config.js ├── index.html ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── src │ ├── app │ │ ├── App.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── assets │ │ ├── avatars │ │ │ ├── ai-avatar.png │ │ │ ├── ai-avatar.svg │ │ │ ├── database-avatar.png │ │ │ ├── database-avatar.svg │ │ │ ├── user-avatar.png │ │ │ └── user-avatar.svg │ │ ├── icon.png │ │ ├── providers │ │ │ ├── anthropic.svg │ │ │ ├── azure.svg │ │ │ ├── deepseek.svg │ │ │ ├── gemini.svg │ │ │ ├── network.svg │ │ │ ├── ollama.svg │ │ │ ├── openai.svg │ │ │ ├── openrouter.svg │ │ │ └── xai.svg │ │ ├── toolbox │ │ │ └── toolbox.svg │ │ └── trayIcon.png │ ├── components │ │ ├── AppAlert │ │ │ └── SettingsAlert.tsx │ │ ├── Authentication │ │ │ ├── CreateAccount.tsx │ │ │ └── SelectAccount.tsx │ │ ├── Chat │ │ │ ├── Chat.tsx │ │ │ └── ChatComponents │ │ │ │ ├── ChatHeader.tsx │ │ │ │ ├── ChatInput.tsx │ │ │ │ ├── ChatMessage.tsx │ │ │ │ ├── ChatMessagesArea.tsx │ │ │ │ ├── LoadingIndicator.tsx │ │ │ │ ├── NewConvoWelcome.tsx │ │ │ │ ├── ReasoningMessage.tsx │ │ │ │ ├── StreamingMessage.tsx │ │ │ │ ├── StreamingReasoningMessage.tsx │ │ │ │ ├── SyntaxHightlightedCode.tsx │ │ │ │ └── suggestions.tsx │ │ ├── CollectionModals │ │ │ ├── CollectionComponents │ │ │ │ ├── AddLibrary.tsx │ │ │ │ ├── DataStoreSelect.tsx │ │ │ │ ├── FIlesInCollection.tsx │ │ │ │ ├── Ingest.tsx │ │ │ │ ├── IngestProgress.tsx │ │ │ │ ├── IngestTabs │ │ │ │ │ ├── FileIngestTab.tsx │ │ │ │ │ └── LinkIngestTab.tsx │ │ │ │ └── ingestTypes.tsx │ │ │ └── LibraryModal.tsx │ │ ├── FileExplorer │ │ │ └── FileExplorer.tsx │ │ ├── Header │ │ │ ├── Header.tsx │ │ │ └── HeaderComponents │ │ │ │ ├── MainWindowControl.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── SettingsDialog.tsx │ │ │ │ ├── ToolsDialog.tsx │ │ │ │ └── WinLinuxControls.tsx │ │ ├── History │ │ │ └── History.tsx │ │ ├── SettingsModal │ │ │ ├── SettingsComponents │ │ │ │ ├── ChatSettings.tsx │ │ │ │ ├── DevIntegration.tsx │ │ │ │ ├── LLMModels │ │ │ │ │ ├── AddLocalModel.tsx │ │ │ │ │ ├── AddOllamaModel.tsx │ │ │ │ │ ├── AzureOpenAI.tsx │ │ │ │ │ ├── CustomLLM.tsx │ │ │ │ │ ├── External.tsx │ │ │ │ │ ├── ExternalOllama.tsx │ │ │ │ │ ├── LocalLLM.tsx │ │ │ │ │ ├── Ollama.tsx │ │ │ │ │ └── Openrouter.tsx │ │ │ │ ├── LLMPanel.tsx │ │ │ │ └── providers │ │ │ │ │ ├── SvgIcon.tsx │ │ │ │ │ ├── defaultsProviderModels.tsx │ │ │ │ │ └── providerIcons.tsx │ │ │ └── SettingsModal.tsx │ │ ├── Tools │ │ │ ├── ToolComponents │ │ │ │ ├── AddTools.tsx │ │ │ │ └── EnableTools.tsx │ │ │ └── Tools.tsx │ │ └── ui │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── buttonVariants.tsx │ │ │ ├── card.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── form.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── tooltip.tsx │ ├── context │ │ ├── ChatInputContext.tsx │ │ ├── LibraryContext.tsx │ │ ├── SysSettingsContext.tsx │ │ ├── UserClientProviders.tsx │ │ ├── UserContext.tsx │ │ ├── ViewContext.tsx │ │ ├── useChatInput.tsx │ │ ├── useLibrary.tsx │ │ ├── useSysSettings.tsx │ │ ├── useUser.tsx │ │ └── useView.tsx │ ├── data │ │ ├── models.ts │ │ └── sysSpecs.ts │ ├── electron │ │ ├── authentication │ │ │ ├── devApi.ts │ │ │ ├── secret.ts │ │ │ └── token.ts │ │ ├── crawl │ │ │ ├── cancelWebcrawl.ts │ │ │ └── webcrawl.ts │ │ ├── db.ts │ │ ├── embedding │ │ │ ├── cancelEmbed.ts │ │ │ └── vectorstoreQuery.ts │ │ ├── handlers │ │ │ ├── azureHandlers.ts │ │ │ ├── chatHandlers.ts │ │ │ ├── closeEventHandler.ts │ │ │ ├── collectionHandlers.ts │ │ │ ├── customApiHandlers.ts │ │ │ ├── dbHandlers.ts │ │ │ ├── fileHandlers.ts │ │ │ ├── handlers.test.ts │ │ │ ├── ipcHandlers.ts │ │ │ ├── localModelHandlers.ts │ │ │ ├── menuHandlers.ts │ │ │ ├── ollamaHandlers.ts │ │ │ ├── openRouterHandlers.ts │ │ │ └── voiceHandlers.ts │ │ ├── helpers │ │ │ └── spawnAsync.ts │ │ ├── llms │ │ │ ├── agentLayer │ │ │ │ ├── anthropicAgent.ts │ │ │ │ ├── geminiAgent.ts │ │ │ │ ├── ollamaAgent.ts │ │ │ │ ├── openAiAgent.ts │ │ │ │ └── tools │ │ │ │ │ └── websearch.ts │ │ │ ├── apiCheckProviders │ │ │ │ ├── anthropic.ts │ │ │ │ ├── deepseek.ts │ │ │ │ ├── gemini.ts │ │ │ │ ├── openai.ts │ │ │ │ ├── openrouter.ts │ │ │ │ └── xai.ts │ │ │ ├── chatCompletion.ts │ │ │ ├── generateTitle.ts │ │ │ ├── keyValidation.ts │ │ │ ├── llmHelpers │ │ │ │ ├── addAssistantMessage.ts │ │ │ │ ├── addUserMessage.ts │ │ │ │ ├── collectionData.ts │ │ │ │ ├── countMessageTokens.ts │ │ │ │ ├── getUserPrompt.ts │ │ │ │ ├── ifNewConvo.ts │ │ │ │ ├── prepMessages.ts │ │ │ │ ├── providerInit.ts │ │ │ │ ├── providersMap.ts │ │ │ │ ├── returnReasoningPrompt.ts │ │ │ │ ├── returnSystemPrompt.ts │ │ │ │ ├── sendMessageChunk.ts │ │ │ │ └── truncateMessages.ts │ │ │ ├── llms.ts │ │ │ ├── providers │ │ │ │ ├── anthropic.ts │ │ │ │ ├── azureOpenAI.ts │ │ │ │ ├── customEndpoint.ts │ │ │ │ ├── deepseek.ts │ │ │ │ ├── externalOllama.ts │ │ │ │ ├── gemini.ts │ │ │ │ ├── localModel.ts │ │ │ │ ├── ollama.ts │ │ │ │ ├── openai.ts │ │ │ │ ├── openrouter.ts │ │ │ │ └── xai.ts │ │ │ └── reasoningLayer │ │ │ │ └── openAiChainOfThought.ts │ │ ├── loadingWindow.ts │ │ ├── localLLMs │ │ │ ├── getDirModels.ts │ │ │ ├── loadModel.ts │ │ │ ├── modelInfo.ts │ │ │ └── unloadModel.ts │ │ ├── main.ts │ │ ├── mainWindow.test.ts │ │ ├── mainWindow.ts │ │ ├── menu.ts │ │ ├── ollama │ │ │ ├── checkOllama.ts │ │ │ ├── fetchLocalModels.ts │ │ │ ├── getRunningModels.ts │ │ │ ├── isOllamaRunning.ts │ │ │ ├── ollamaPath.ts │ │ │ ├── pullModel.ts │ │ │ ├── runOllama.ts │ │ │ ├── unloadAllModels.ts │ │ │ └── unloadModel.ts │ │ ├── pathResolver.ts │ │ ├── preload.cts │ │ ├── python │ │ │ ├── ensurePythonAndVenv.ts │ │ │ ├── extractFromAsar.ts │ │ │ ├── getLinuxPackageManager.ts │ │ │ ├── ifFedora.ts │ │ │ ├── installDependencies.ts │ │ │ ├── installLlamaCpp.ts │ │ │ ├── killProcessOnPort.ts │ │ │ ├── python.test.ts │ │ │ ├── runWithPrivileges.ts │ │ │ └── startAndStopPython.ts │ │ ├── resourceManager.ts │ │ ├── specs │ │ │ └── systemSpecs.ts │ │ ├── storage │ │ │ ├── deleteCollection.ts │ │ │ ├── getFiles.ts │ │ │ ├── getUserFiles.ts │ │ │ ├── newFile.ts │ │ │ ├── openCollectionFolder.ts │ │ │ ├── removeFileorFolder.ts │ │ │ ├── renameFile.ts │ │ │ └── websiteFetch.ts │ │ ├── tray.test.ts │ │ ├── tray.ts │ │ ├── tsconfig.json │ │ ├── util.ts │ │ ├── voice │ │ │ └── audioTranscription.ts │ │ └── youtube │ │ │ └── youtubeIngest.ts │ ├── hooks │ │ ├── use-toast.ts │ │ ├── useAppInitialization.tsx │ │ ├── useChatLogic.ts │ │ ├── useChatManagement.ts │ │ ├── useConversationManagement.ts │ │ ├── useModelManagement.ts │ │ ├── useStatistics.tsx │ │ └── useUIState.ts │ ├── lib │ │ ├── shikiHightlight.ts │ │ └── utils.ts │ ├── loading.html │ ├── types │ │ └── contextTypes │ │ │ ├── LibraryContextTypes.ts │ │ │ ├── SystemSettingsTypes.ts │ │ │ ├── UserContextType.ts │ │ │ └── UserViewTypes.ts │ └── utils │ │ ├── chatUtilts.ts │ │ └── webAudioRecorder.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── types.d.ts ├── vite.config.d.ts ├── vite.config.js └── vite.config.ts ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | testData 3 | -------------------------------------------------------------------------------- /Backend/ensure_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/ensure_dependencies.py -------------------------------------------------------------------------------- /Backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/main.py -------------------------------------------------------------------------------- /Backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/requirements.txt -------------------------------------------------------------------------------- /Backend/src/authentication/api_key_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/authentication/api_key_authorization.py -------------------------------------------------------------------------------- /Backend/src/authentication/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/authentication/token.py -------------------------------------------------------------------------------- /Backend/src/data/dataFetch/webcrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataFetch/webcrawler.py -------------------------------------------------------------------------------- /Backend/src/data/dataFetch/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataFetch/youtube.py -------------------------------------------------------------------------------- /Backend/src/data/dataIntake/csvFallbackSplitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataIntake/csvFallbackSplitting.py -------------------------------------------------------------------------------- /Backend/src/data/dataIntake/fileTypes/loadX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataIntake/fileTypes/loadX.py -------------------------------------------------------------------------------- /Backend/src/data/dataIntake/getHtmlFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataIntake/getHtmlFiles.py -------------------------------------------------------------------------------- /Backend/src/data/dataIntake/loadFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataIntake/loadFile.py -------------------------------------------------------------------------------- /Backend/src/data/dataIntake/textSplitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/dataIntake/textSplitting.py -------------------------------------------------------------------------------- /Backend/src/data/database/checkAPIKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/database/checkAPIKey.py -------------------------------------------------------------------------------- /Backend/src/data/database/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/database/db.py -------------------------------------------------------------------------------- /Backend/src/data/database/getCollectionInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/database/getCollectionInfo.py -------------------------------------------------------------------------------- /Backend/src/data/database/getLLMApiKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/data/database/getLLMApiKey.py -------------------------------------------------------------------------------- /Backend/src/endpoint/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/api.py -------------------------------------------------------------------------------- /Backend/src/endpoint/deleteStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/deleteStore.py -------------------------------------------------------------------------------- /Backend/src/endpoint/devApiCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/devApiCall.py -------------------------------------------------------------------------------- /Backend/src/endpoint/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/embed.py -------------------------------------------------------------------------------- /Backend/src/endpoint/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/models.py -------------------------------------------------------------------------------- /Backend/src/endpoint/ragQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/ragQuery.py -------------------------------------------------------------------------------- /Backend/src/endpoint/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/transcribe.py -------------------------------------------------------------------------------- /Backend/src/endpoint/vectorQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/vectorQuery.py -------------------------------------------------------------------------------- /Backend/src/endpoint/webcrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/endpoint/webcrawl.py -------------------------------------------------------------------------------- /Backend/src/llms/llmQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/llmQuery.py -------------------------------------------------------------------------------- /Backend/src/llms/messages/formMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/messages/formMessages.py -------------------------------------------------------------------------------- /Backend/src/llms/providers/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/providers/local.py -------------------------------------------------------------------------------- /Backend/src/llms/providers/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/providers/ollama.py -------------------------------------------------------------------------------- /Backend/src/llms/providers/ooba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/providers/ooba.py -------------------------------------------------------------------------------- /Backend/src/llms/providers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/llms/providers/openai.py -------------------------------------------------------------------------------- /Backend/src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/src/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/exceptions.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/__init__.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/base.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/exllama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/exllama.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/hqq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/hqq.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/llamaccphf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/llamaccphf.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/llamacpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/llamacpp.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/tensorrt.py -------------------------------------------------------------------------------- /Backend/src/models/loaders/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/loaders/transformers.py -------------------------------------------------------------------------------- /Backend/src/models/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/manager.py -------------------------------------------------------------------------------- /Backend/src/models/streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/streamer.py -------------------------------------------------------------------------------- /Backend/src/models/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/src/models/utils/detect_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/utils/detect_type.py -------------------------------------------------------------------------------- /Backend/src/models/utils/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/utils/device.py -------------------------------------------------------------------------------- /Backend/src/models/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/utils/download.py -------------------------------------------------------------------------------- /Backend/src/models/utils/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/models/utils/platform.py -------------------------------------------------------------------------------- /Backend/src/vectorstorage/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/vectorstorage/embeddings.py -------------------------------------------------------------------------------- /Backend/src/vectorstorage/helpers/sanitizeCollectionName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/vectorstorage/helpers/sanitizeCollectionName.py -------------------------------------------------------------------------------- /Backend/src/vectorstorage/init_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/vectorstorage/init_store.py -------------------------------------------------------------------------------- /Backend/src/vectorstorage/vectorstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/vectorstorage/vectorstore.py -------------------------------------------------------------------------------- /Backend/src/voice/voice_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/src/voice/voice_to_text.py -------------------------------------------------------------------------------- /Backend/tests/testApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/tests/testApi.py -------------------------------------------------------------------------------- /Backend/tests/test_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Backend/tests/test_voice.py -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icon.png -------------------------------------------------------------------------------- /Frontend/build/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/128x128.png -------------------------------------------------------------------------------- /Frontend/build/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/16x16.png -------------------------------------------------------------------------------- /Frontend/build/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/24x24.png -------------------------------------------------------------------------------- /Frontend/build/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/256x256.png -------------------------------------------------------------------------------- /Frontend/build/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/32x32.png -------------------------------------------------------------------------------- /Frontend/build/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/48x48.png -------------------------------------------------------------------------------- /Frontend/build/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/512x512.png -------------------------------------------------------------------------------- /Frontend/build/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/64x64.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.icns -------------------------------------------------------------------------------- /Frontend/build/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.ico -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_64x64.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.iconset/icon_64x64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.iconset/icon_64x64@2x.png -------------------------------------------------------------------------------- /Frontend/build/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/icons/icon.png -------------------------------------------------------------------------------- /Frontend/build/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/build/linux.png -------------------------------------------------------------------------------- /Frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/components.json -------------------------------------------------------------------------------- /Frontend/e2e/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/e2e/app.spec.ts -------------------------------------------------------------------------------- /Frontend/electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/electron-builder.json -------------------------------------------------------------------------------- /Frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/eslint.config.js -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/playwright.config.ts -------------------------------------------------------------------------------- /Frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /Frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/postcss.config.js -------------------------------------------------------------------------------- /Frontend/src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/app/App.tsx -------------------------------------------------------------------------------- /Frontend/src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/app/index.css -------------------------------------------------------------------------------- /Frontend/src/app/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/app/main.tsx -------------------------------------------------------------------------------- /Frontend/src/app/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/app/vite-env.d.ts -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/ai-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/avatars/ai-avatar.png -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/ai-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/avatars/ai-avatar.svg -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/database-avatar.png: -------------------------------------------------------------------------------- 1 | 404: Not Found -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/database-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/avatars/database-avatar.svg -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/user-avatar.png: -------------------------------------------------------------------------------- 1 | 404: Not Found -------------------------------------------------------------------------------- /Frontend/src/assets/avatars/user-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/avatars/user-avatar.svg -------------------------------------------------------------------------------- /Frontend/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/icon.png -------------------------------------------------------------------------------- /Frontend/src/assets/providers/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/anthropic.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/azure.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/deepseek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/deepseek.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/gemini.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/network.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/ollama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/ollama.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/openai.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/openrouter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/openrouter.svg -------------------------------------------------------------------------------- /Frontend/src/assets/providers/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/providers/xai.svg -------------------------------------------------------------------------------- /Frontend/src/assets/toolbox/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/toolbox/toolbox.svg -------------------------------------------------------------------------------- /Frontend/src/assets/trayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/assets/trayIcon.png -------------------------------------------------------------------------------- /Frontend/src/components/AppAlert/SettingsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/AppAlert/SettingsAlert.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Authentication/CreateAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Authentication/CreateAccount.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Authentication/SelectAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Authentication/SelectAccount.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/Chat.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/ChatHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/ChatHeader.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/ChatInput.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/ChatMessage.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/ChatMessagesArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/ChatMessagesArea.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/LoadingIndicator.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/NewConvoWelcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/NewConvoWelcome.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/ReasoningMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/ReasoningMessage.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/StreamingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/StreamingMessage.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/StreamingReasoningMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/StreamingReasoningMessage.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/SyntaxHightlightedCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/SyntaxHightlightedCode.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Chat/ChatComponents/suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Chat/ChatComponents/suggestions.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/AddLibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/AddLibrary.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/DataStoreSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/DataStoreSelect.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/FIlesInCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/FIlesInCollection.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/Ingest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/Ingest.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/IngestProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/IngestProgress.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/IngestTabs/FileIngestTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/IngestTabs/FileIngestTab.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/IngestTabs/LinkIngestTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/IngestTabs/LinkIngestTab.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/CollectionComponents/ingestTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/CollectionComponents/ingestTypes.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CollectionModals/LibraryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/CollectionModals/LibraryModal.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FileExplorer/FileExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/FileExplorer/FileExplorer.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/HeaderComponents/MainWindowControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/HeaderComponents/MainWindowControl.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/HeaderComponents/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/HeaderComponents/Search.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/HeaderComponents/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/HeaderComponents/SettingsDialog.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/HeaderComponents/ToolsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/HeaderComponents/ToolsDialog.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Header/HeaderComponents/WinLinuxControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Header/HeaderComponents/WinLinuxControls.tsx -------------------------------------------------------------------------------- /Frontend/src/components/History/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/History/History.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/ChatSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/ChatSettings.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/DevIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/DevIntegration.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AddLocalModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AddLocalModel.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AddOllamaModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AddOllamaModel.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AzureOpenAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/AzureOpenAI.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/CustomLLM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/CustomLLM.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/External.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/External.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/ExternalOllama.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/ExternalOllama.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/LocalLLM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/LocalLLM.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/Ollama.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/Ollama.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/Openrouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMModels/Openrouter.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/LLMPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/LLMPanel.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/providers/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/providers/SvgIcon.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/providers/defaultsProviderModels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/providers/defaultsProviderModels.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsComponents/providers/providerIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsComponents/providers/providerIcons.tsx -------------------------------------------------------------------------------- /Frontend/src/components/SettingsModal/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/SettingsModal/SettingsModal.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Tools/ToolComponents/AddTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Tools/ToolComponents/AddTools.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Tools/ToolComponents/EnableTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Tools/ToolComponents/EnableTools.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Tools/Tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/Tools/Tools.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/buttonVariants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/buttonVariants.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/command.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /Frontend/src/context/ChatInputContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/ChatInputContext.tsx -------------------------------------------------------------------------------- /Frontend/src/context/LibraryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/LibraryContext.tsx -------------------------------------------------------------------------------- /Frontend/src/context/SysSettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/SysSettingsContext.tsx -------------------------------------------------------------------------------- /Frontend/src/context/UserClientProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/UserClientProviders.tsx -------------------------------------------------------------------------------- /Frontend/src/context/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/UserContext.tsx -------------------------------------------------------------------------------- /Frontend/src/context/ViewContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/ViewContext.tsx -------------------------------------------------------------------------------- /Frontend/src/context/useChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/useChatInput.tsx -------------------------------------------------------------------------------- /Frontend/src/context/useLibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/useLibrary.tsx -------------------------------------------------------------------------------- /Frontend/src/context/useSysSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/useSysSettings.tsx -------------------------------------------------------------------------------- /Frontend/src/context/useUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/useUser.tsx -------------------------------------------------------------------------------- /Frontend/src/context/useView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/context/useView.tsx -------------------------------------------------------------------------------- /Frontend/src/data/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/data/models.ts -------------------------------------------------------------------------------- /Frontend/src/data/sysSpecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/data/sysSpecs.ts -------------------------------------------------------------------------------- /Frontend/src/electron/authentication/devApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/authentication/devApi.ts -------------------------------------------------------------------------------- /Frontend/src/electron/authentication/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/authentication/secret.ts -------------------------------------------------------------------------------- /Frontend/src/electron/authentication/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/authentication/token.ts -------------------------------------------------------------------------------- /Frontend/src/electron/crawl/cancelWebcrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/crawl/cancelWebcrawl.ts -------------------------------------------------------------------------------- /Frontend/src/electron/crawl/webcrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/crawl/webcrawl.ts -------------------------------------------------------------------------------- /Frontend/src/electron/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/db.ts -------------------------------------------------------------------------------- /Frontend/src/electron/embedding/cancelEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/embedding/cancelEmbed.ts -------------------------------------------------------------------------------- /Frontend/src/electron/embedding/vectorstoreQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/embedding/vectorstoreQuery.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/azureHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/azureHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/chatHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/chatHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/closeEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/closeEventHandler.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/collectionHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/collectionHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/customApiHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/customApiHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/dbHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/dbHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/fileHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/fileHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/handlers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/handlers.test.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/ipcHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/ipcHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/localModelHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/localModelHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/menuHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/menuHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/ollamaHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/ollamaHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/openRouterHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/openRouterHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/handlers/voiceHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/handlers/voiceHandlers.ts -------------------------------------------------------------------------------- /Frontend/src/electron/helpers/spawnAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/helpers/spawnAsync.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/agentLayer/anthropicAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/agentLayer/anthropicAgent.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/agentLayer/geminiAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/agentLayer/geminiAgent.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/agentLayer/ollamaAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/agentLayer/ollamaAgent.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/agentLayer/openAiAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/agentLayer/openAiAgent.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/agentLayer/tools/websearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/agentLayer/tools/websearch.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/anthropic.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/deepseek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/deepseek.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/gemini.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/openai.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/openrouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/openrouter.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/apiCheckProviders/xai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/apiCheckProviders/xai.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/chatCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/chatCompletion.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/generateTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/generateTitle.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/keyValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/keyValidation.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/addAssistantMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/addAssistantMessage.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/addUserMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/addUserMessage.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/collectionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/collectionData.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/countMessageTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/countMessageTokens.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/getUserPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/getUserPrompt.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/ifNewConvo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/ifNewConvo.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/prepMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/prepMessages.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/providerInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/providerInit.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/providersMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/providersMap.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/returnReasoningPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/returnReasoningPrompt.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/returnSystemPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/returnSystemPrompt.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/sendMessageChunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/sendMessageChunk.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llmHelpers/truncateMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llmHelpers/truncateMessages.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/llms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/llms.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/anthropic.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/azureOpenAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/azureOpenAI.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/customEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/customEndpoint.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/deepseek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/deepseek.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/externalOllama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/externalOllama.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/gemini.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/localModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/localModel.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/ollama.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/openai.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/openrouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/openrouter.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/providers/xai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/providers/xai.ts -------------------------------------------------------------------------------- /Frontend/src/electron/llms/reasoningLayer/openAiChainOfThought.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/llms/reasoningLayer/openAiChainOfThought.ts -------------------------------------------------------------------------------- /Frontend/src/electron/loadingWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/loadingWindow.ts -------------------------------------------------------------------------------- /Frontend/src/electron/localLLMs/getDirModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/localLLMs/getDirModels.ts -------------------------------------------------------------------------------- /Frontend/src/electron/localLLMs/loadModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/localLLMs/loadModel.ts -------------------------------------------------------------------------------- /Frontend/src/electron/localLLMs/modelInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/localLLMs/modelInfo.ts -------------------------------------------------------------------------------- /Frontend/src/electron/localLLMs/unloadModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/localLLMs/unloadModel.ts -------------------------------------------------------------------------------- /Frontend/src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/main.ts -------------------------------------------------------------------------------- /Frontend/src/electron/mainWindow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/mainWindow.test.ts -------------------------------------------------------------------------------- /Frontend/src/electron/mainWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/mainWindow.ts -------------------------------------------------------------------------------- /Frontend/src/electron/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/menu.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/checkOllama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/checkOllama.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/fetchLocalModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/fetchLocalModels.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/getRunningModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/getRunningModels.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/isOllamaRunning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/isOllamaRunning.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/ollamaPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/ollamaPath.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/pullModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/pullModel.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/runOllama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/runOllama.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/unloadAllModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/unloadAllModels.ts -------------------------------------------------------------------------------- /Frontend/src/electron/ollama/unloadModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/ollama/unloadModel.ts -------------------------------------------------------------------------------- /Frontend/src/electron/pathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/pathResolver.ts -------------------------------------------------------------------------------- /Frontend/src/electron/preload.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/preload.cts -------------------------------------------------------------------------------- /Frontend/src/electron/python/ensurePythonAndVenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/ensurePythonAndVenv.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/extractFromAsar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/extractFromAsar.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/getLinuxPackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/getLinuxPackageManager.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/ifFedora.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/ifFedora.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/installDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/installDependencies.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/installLlamaCpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/installLlamaCpp.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/killProcessOnPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/killProcessOnPort.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/python.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/python.test.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/runWithPrivileges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/runWithPrivileges.ts -------------------------------------------------------------------------------- /Frontend/src/electron/python/startAndStopPython.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/python/startAndStopPython.ts -------------------------------------------------------------------------------- /Frontend/src/electron/resourceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/resourceManager.ts -------------------------------------------------------------------------------- /Frontend/src/electron/specs/systemSpecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/specs/systemSpecs.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/deleteCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/deleteCollection.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/getFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/getFiles.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/getUserFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/getUserFiles.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/newFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/newFile.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/openCollectionFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/openCollectionFolder.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/removeFileorFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/removeFileorFolder.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/renameFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/renameFile.ts -------------------------------------------------------------------------------- /Frontend/src/electron/storage/websiteFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/storage/websiteFetch.ts -------------------------------------------------------------------------------- /Frontend/src/electron/tray.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/tray.test.ts -------------------------------------------------------------------------------- /Frontend/src/electron/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/tray.ts -------------------------------------------------------------------------------- /Frontend/src/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/tsconfig.json -------------------------------------------------------------------------------- /Frontend/src/electron/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/util.ts -------------------------------------------------------------------------------- /Frontend/src/electron/voice/audioTranscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/voice/audioTranscription.ts -------------------------------------------------------------------------------- /Frontend/src/electron/youtube/youtubeIngest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/electron/youtube/youtubeIngest.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/useAppInitialization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useAppInitialization.tsx -------------------------------------------------------------------------------- /Frontend/src/hooks/useChatLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useChatLogic.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/useChatManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useChatManagement.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/useConversationManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useConversationManagement.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/useModelManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useModelManagement.ts -------------------------------------------------------------------------------- /Frontend/src/hooks/useStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useStatistics.tsx -------------------------------------------------------------------------------- /Frontend/src/hooks/useUIState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/hooks/useUIState.ts -------------------------------------------------------------------------------- /Frontend/src/lib/shikiHightlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/lib/shikiHightlight.ts -------------------------------------------------------------------------------- /Frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /Frontend/src/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/loading.html -------------------------------------------------------------------------------- /Frontend/src/types/contextTypes/LibraryContextTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/types/contextTypes/LibraryContextTypes.ts -------------------------------------------------------------------------------- /Frontend/src/types/contextTypes/SystemSettingsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/types/contextTypes/SystemSettingsTypes.ts -------------------------------------------------------------------------------- /Frontend/src/types/contextTypes/UserContextType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/types/contextTypes/UserContextType.ts -------------------------------------------------------------------------------- /Frontend/src/types/contextTypes/UserViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/types/contextTypes/UserViewTypes.ts -------------------------------------------------------------------------------- /Frontend/src/utils/chatUtilts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/utils/chatUtilts.ts -------------------------------------------------------------------------------- /Frontend/src/utils/webAudioRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/src/utils/webAudioRecorder.ts -------------------------------------------------------------------------------- /Frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/tailwind.config.js -------------------------------------------------------------------------------- /Frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/tsconfig.app.json -------------------------------------------------------------------------------- /Frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/tsconfig.json -------------------------------------------------------------------------------- /Frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/tsconfig.node.json -------------------------------------------------------------------------------- /Frontend/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/types.d.ts -------------------------------------------------------------------------------- /Frontend/vite.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/vite.config.d.ts -------------------------------------------------------------------------------- /Frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/vite.config.js -------------------------------------------------------------------------------- /Frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/Frontend/vite.config.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hairetsu/Notate/HEAD/README.md --------------------------------------------------------------------------------