├── .DS_Store ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client ├── .env.sample ├── .gitignore ├── README.md ├── package.json ├── public │ ├── CollabAI-Favicon.png │ ├── New-Thumbnail.png │ ├── Website-preview-thumbnail.png │ ├── favicon-2.ico │ ├── favicon.ico │ ├── favicon1.ico │ ├── google-drive-icon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── Hooks │ ├── useAssistantFileUpload.js │ ├── useAssistantPage.js │ ├── useAssistantsChatPage.js │ ├── useAuth.js │ ├── useAxios.js │ ├── useChatPage.js │ ├── useFavoriteAssistantPage.js │ ├── usePublicAssistantPage.js │ └── useSocket.js │ ├── Pages │ ├── Account │ │ ├── AdvanceAiParameters.jsx │ │ ├── CustomizeChat.jsx │ │ ├── Profile.jsx │ │ ├── ProfileInfo.jsx │ │ ├── ProfileInfoStyle.css │ │ ├── TrackUsageComponent │ │ │ ├── AssistantUsageTable.jsx │ │ │ └── UserTrackUsageTable.jsx │ │ ├── Trash.jsx │ │ ├── Usage.css │ │ └── Usage.jsx │ ├── AssistantFileDownload │ │ └── index.jsx │ ├── AssistantType │ │ └── index.jsx │ ├── Assistants │ │ └── Assistants.jsx │ ├── AssistantsChatPage │ │ ├── AssistantChatLoading.jsx │ │ ├── AssistantInfo.jsx │ │ ├── AssistantsIntro.jsx │ │ ├── ConversationStarter.jsx │ │ └── index.jsx │ ├── ChatPage │ │ ├── chat-page-media.scss │ │ ├── chat-page.scss │ │ └── index.jsx │ ├── ExploreGPTs │ │ ├── ExploredAssistantModal.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── KnowledgeBase │ │ ├── KnowledgeBase.css │ │ └── index.jsx │ ├── Layout │ │ ├── AssistantLayout.jsx │ │ ├── index.jsx │ │ └── main-layout.scss │ ├── LoginPage │ │ ├── index.jsx │ │ └── login.scss │ ├── PageNotFound │ │ ├── 404.css │ │ └── index.jsx │ ├── PromptList │ │ ├── PromptDetailViewModal.jsx │ │ ├── Promptlist.scss │ │ └── index.jsx │ ├── PromptUserList │ │ └── index.jsx │ ├── ResetPassword │ │ ├── ResetPassword.scss │ │ └── index.jsx │ ├── SuperAdmin │ │ ├── Assistant │ │ │ ├── AssistantsList.jsx │ │ │ └── defineFunctionModal.css │ │ ├── Modals │ │ │ ├── FunctionDefinitionModal.js │ │ │ └── ValidationModel.js │ │ ├── Organizations │ │ │ ├── CreateOrganizationModal.jsx │ │ │ ├── DebouncedSearchInput.jsx │ │ │ ├── OrganizationTable.jsx │ │ │ └── OrganizationsComponent.jsx │ │ ├── SuperAdmin.scss │ │ ├── Tags │ │ │ ├── ConfirmationModal.jsx │ │ │ ├── CreateTagModal.jsx │ │ │ ├── EditTagModal.jsx │ │ │ ├── TagListTable.jsx │ │ │ └── TagsComponent.jsx │ │ ├── TaskCommands │ │ │ ├── AddCommandsCategoryModal.jsx │ │ │ ├── ConfirmationModal.jsx │ │ │ ├── TaskCommandListTable.jsx │ │ │ ├── TaskCommandModal.jsx │ │ │ └── TaskCommands.jsx │ │ ├── Team │ │ │ ├── ConfirmationModal.jsx │ │ │ ├── CreateTeamModal.jsx │ │ │ ├── EditTeamModal.jsx │ │ │ ├── TeamTable.jsx │ │ │ └── Teams.jsx │ │ ├── Templates │ │ │ ├── AddCategoryModal.jsx │ │ │ ├── ConfirmationModal.jsx │ │ │ ├── CreateTemplateModal.jsx │ │ │ ├── EditTemplateModal.jsx │ │ │ ├── TemplateList.jsx │ │ │ └── TemplateListTable.jsx │ │ ├── TrackUsage │ │ │ ├── AssistantUsage.jsx │ │ │ ├── DailyUsage.jsx │ │ │ ├── TrackUsage.css │ │ │ ├── TrackUsage.jsx │ │ │ └── TrackUsageComponent.jsx │ │ ├── Users │ │ │ └── Users.jsx │ │ └── api │ │ │ ├── functionCallingAssistant.js │ │ │ └── functionDefinition.js │ ├── Users │ │ ├── Add │ │ │ ├── AddUser.css │ │ │ └── AddUser.jsx │ │ ├── EditUser │ │ │ └── EditUser.jsx │ │ ├── List │ │ │ └── index.jsx │ │ └── Users.scss │ ├── UsersAssistantList │ │ └── UsersAssistant.jsx │ ├── configration │ │ ├── ClaudeAIConfig.jsx │ │ ├── ConnectionWithWorkboard.jsx │ │ ├── DalleConfig.jsx │ │ ├── GeminiAIConfig.jsx │ │ ├── OpenAIConfig.jsx │ │ ├── UsersTokenConfig.jsx │ │ ├── index.jsx │ │ └── style.css │ └── index.js │ ├── Utility │ ├── addPublicAssistantHelper.js │ ├── assistant-helper.js │ ├── authHelper.js │ ├── chat-page-helper.js │ ├── helper.js │ ├── service.js │ └── showModalHelper.js │ ├── api │ ├── assistant-chat-page-api.js │ ├── assistant.js │ ├── assistantApiFunctions.js │ ├── assistantChatPageApi.js │ ├── assistantType.js │ ├── assistantTypeApi.js │ ├── assistant_api_constant.js │ ├── auth.js │ ├── axios.js │ ├── chat-page-api.js │ ├── favoriteAssistant.js │ ├── googleAuthApi.js │ ├── knowledgeBase.js │ ├── personalizeAssistant.js │ ├── pinnedAssistant.js │ ├── profile.js │ ├── promptApiFunctions.js │ ├── prompt_api_constant.js │ ├── publicAssistant.js │ ├── publicAssistantApi.js │ ├── settings.js │ ├── tags-admin.js │ ├── taskCommands.js │ ├── taskCommandsCategory.js │ ├── team-admin.js │ ├── templates.js │ ├── templatesCategory.js │ ├── threadApiFunctions.js │ ├── track-usage-api-functions.js │ ├── track-usage-api-slug.js │ ├── user.js │ ├── userApiFunctions.js │ ├── userPreference.js │ ├── user_api_constant.js │ └── usersPrompt.js │ ├── assests │ └── images │ │ ├── NewLogo-dark.png │ │ ├── NewLogo.png │ │ ├── Temporary Logo Black.png │ │ ├── Temporary Logo White.png │ │ ├── Xeem_App.pptx │ │ ├── agents-placeholder.png │ │ ├── chatgpt.png │ │ ├── claude-ai-icon.png │ │ ├── claudeAi.png │ │ ├── collab_ai_logo_black.svg │ │ ├── collab_ai_logo_white.svg │ │ ├── drive.svg │ │ ├── flower.jpg │ │ ├── gemini-ai-icon.png │ │ ├── google-drive-icon.ico │ │ ├── google-drive-icon.png │ │ ├── image (8).png │ │ ├── new-chat-icon.png │ │ ├── product-logo.png │ │ ├── product-logo_old.png │ │ ├── site-logo-new.png │ │ ├── site-logo.png │ │ ├── sorted-rack-logo.svg │ │ ├── user-icon.png │ │ └── work-board-icon.png │ ├── base │ ├── color.css │ ├── color.css.map │ ├── color.scss │ ├── global.scss │ ├── include-media.css │ ├── include-media.css.map │ ├── include-media.scss │ ├── typography.css │ ├── typography.css.map │ └── typography.scss │ ├── component │ ├── Assistant │ │ ├── AdminAssistantList.jsx │ │ ├── Assistant.css │ │ ├── AssistantSettings.jsx │ │ ├── AssistantTable.jsx │ │ ├── AssistantTeamAssignModal.jsx │ │ ├── Assistantmodal │ │ │ ├── AssistantForm.jsx │ │ │ ├── ConversationStater.jsx │ │ │ ├── ConvoStarter.css │ │ │ ├── CreateAssistantModal.jsx │ │ │ ├── FunctionCallingAssistantForm.jsx │ │ │ ├── RAGFileList.css │ │ │ ├── api │ │ │ │ └── assistant_functionCallingCreation.js │ │ │ └── functionCallingAssForm.css │ │ ├── FavoriteAssistantList.jsx │ │ ├── FunctionCallingAssistantTable.jsx │ │ ├── PersonalAssistantList.jsx │ │ ├── PublicAssistantList.jsx │ │ └── UserAssistantList.jsx │ ├── AssistantType │ │ ├── AssistantTypeTable.jsx │ │ ├── CreateAssistantTypeFormFields.jsx │ │ ├── CreateAssistantTypeModal.jsx │ │ ├── EditAssistantTypeFormFields.jsx │ │ └── EditAssistantTypeModal.jsx │ ├── AssistantsChatPage │ │ └── AssistantChatInputPrompt.jsx │ ├── Card │ │ ├── Card.jsx │ │ └── index.css │ ├── CardList │ │ ├── CardinList.jsx │ │ └── style.css │ ├── CardWithDetails │ │ ├── CardDetails.jsx │ │ └── style.css │ ├── Chat │ │ ├── BotIcon.jsx │ │ ├── BotResponse.jsx │ │ ├── Chat.css │ │ ├── ChatSkeleton.jsx │ │ ├── CodeInterPreterOutput.jsx │ │ ├── MessageContainer.jsx │ │ ├── SendIcon.jsx │ │ ├── ShareDropdown.jsx │ │ ├── UserIcon.jsx │ │ └── UserPrompt.jsx │ ├── ChatPage │ │ ├── ChatPromptInputForm.jsx │ │ ├── PromptTemplatesIntro.jsx │ │ └── UsefulPromptDropdown.jsx │ ├── IntegrateApplications │ │ ├── GoogleDrive.jsx │ │ ├── GoogleDriveHelperFunctions.jsx │ │ ├── IntegrateApplications.jsx │ │ ├── Login.jsx │ │ ├── LoginWithGoogle.jsx │ │ ├── Logout.jsx │ │ ├── LogoutOfGoogle.jsx │ │ ├── useGoogleDrive.jsx │ │ └── useGoogleDrivePicker.jsx │ ├── KnowledgeBase │ │ ├── FileHelpers.js │ │ ├── FileTree.js │ │ ├── Modals.js │ │ ├── ModalsComponent.jsx │ │ ├── RAGTree.css │ │ ├── RAGTree.js │ │ ├── ShowFileTree.js │ │ ├── fileToBase64.js │ │ └── importFromGoogle.jsx │ ├── Prompt │ │ ├── Avatar.jsx │ │ ├── BotResponse.jsx │ │ ├── Button.jsx │ │ ├── CodeHighlighter.jsx │ │ ├── ConfirmationModal.jsx │ │ ├── Error.jsx │ │ ├── Introsection.jsx │ │ ├── Loading.jsx │ │ ├── Modal.jsx │ │ ├── NavBar.css │ │ ├── NavContent.jsx │ │ ├── NavContentDuplicate.css │ │ ├── NavContentDuplicate.jsx │ │ ├── NavLink.jsx │ │ ├── NavLinksContainer.jsx │ │ ├── NavPrompt.jsx │ │ ├── NewChat.jsx │ │ ├── NewChatWithSameAssistant.jsx │ │ ├── Prompt.scss │ │ ├── PromptSkeleton.jsx │ │ ├── SvgComponent.jsx │ │ ├── Templates.jsx │ │ ├── ThreadSidebar │ │ │ └── ThreadSidebarWrapper.jsx │ │ └── exploreAssistant.css │ ├── ProtectedRoute │ │ └── ProtectedRoute.jsx │ ├── RoutesData │ │ └── SuperAdminRoutes.js │ ├── Welcome-Card │ │ ├── WelcomeCard.js │ │ └── welcomeCard.css │ ├── common │ │ ├── AssistantIcon.jsx │ │ ├── Avatar.jsx │ │ ├── Card.jsx │ │ ├── CodeHighlighter.jsx │ │ ├── ConfirmationModal.jsx │ │ ├── CustomModal.jsx │ │ ├── CustomSpinner.css │ │ ├── CustomSpinner.jsx │ │ ├── DarkModeToggler │ │ │ ├── DarkModeToggler.jsx │ │ │ └── style.scss │ │ ├── Error.jsx │ │ ├── FormButton.jsx │ │ ├── FormCheckbox.jsx │ │ ├── FormComponent.jsx │ │ ├── FormDatePicker.jsx │ │ ├── FormEmail.jsx │ │ ├── FormFileInput.jsx │ │ ├── FormInput.jsx │ │ ├── FormSelect.jsx │ │ ├── FormTextArea.jsx │ │ ├── InputModal.jsx │ │ ├── Loading.jsx │ │ ├── MultiSelect.jsx │ │ ├── TableComponent.jsx │ │ └── popUpCard.jsx │ ├── index.js │ ├── layout │ │ ├── AssistantSidebar │ │ │ ├── AssistantNewChat.jsx │ │ │ ├── AssistantSidebar.jsx │ │ │ ├── AssistantSidebarContent.jsx │ │ │ ├── AssistantThread.jsx │ │ │ └── ConfirmationModal.jsx │ │ ├── Header │ │ │ ├── Header.jsx │ │ │ ├── Header.scss │ │ │ └── Utilities │ │ │ │ └── pageTitleInfo.js │ │ ├── NewSidebar │ │ │ ├── AdminNavLinks.jsx │ │ │ ├── AssistantList.css │ │ │ ├── AssistantList.jsx │ │ │ ├── AssistantListPinIcon.css │ │ │ ├── CommonNavLinks.jsx │ │ │ ├── NewSidebar.css │ │ │ ├── NewSidebar.jsx │ │ │ ├── SuperAdminNavLinks.jsx │ │ │ └── UserNavLinks.jsx │ │ ├── Sidebar │ │ │ ├── Sidebar.css │ │ │ ├── Sidebar.css.map │ │ │ ├── Sidebar.jsx │ │ │ └── Sidebar.scss │ │ ├── footer │ │ │ ├── footer.jsx │ │ │ └── footer.scss │ │ └── mainContent │ │ │ ├── mainContent.css │ │ │ ├── mainContent.css.map │ │ │ ├── mainContent.jsx │ │ │ └── mainContent.scss │ └── meetingType │ │ └── MeetingTypeDropdown.jsx │ ├── constants │ ├── Api_constants.js │ ├── AssistanceModelConst.js │ ├── FileLIstConstants.js │ ├── PublicAndPrivateAssistantMessages.js │ ├── chatPageConstants.js │ ├── localStorage.js │ ├── setting_api_constant.js │ ├── setting_constant.js │ ├── sockets │ │ ├── assistant.js │ │ └── chat.js │ └── user-advanced-ai-parameters.js │ ├── contexts │ ├── AssistantContext.js │ ├── AssistantsFetchContext.js │ ├── FileContext.js │ ├── NewAuthProvider.js │ ├── PromptTemplateContext.js │ ├── SidebarContext.js │ ├── ThemeProvider.js │ ├── TitleContext.js │ └── themeConfig.js │ ├── data │ ├── ExampleFormFields.js │ ├── ExampleModal.js │ ├── ForgotPasswordFormFields.js │ ├── LoginFormFields.js │ └── ResetPasswordFromFields.js │ ├── index.js │ ├── main.scss │ ├── reportWebVitals.js │ └── setupTests.js └── server ├── .DS_Store ├── .env.sample ├── .gitignore ├── README.md ├── app.js ├── config.js ├── config ├── claudeAI.js ├── db.js ├── dbPostgre.js ├── geminiAi.js ├── openAI.js ├── openaiClient.js └── socket.js ├── constants ├── enums.js └── tokenPrices.js ├── controllers ├── assistantController.js ├── assistantThreadController.js ├── assistantTypesController.js ├── assistantUsageController.js ├── auth.js ├── categoryController.js ├── commandsCategoryController.js ├── companyController.js ├── configController.js ├── customTrainDataController.js ├── favoriteAssistantController.js ├── feedbackController.js ├── googleAuth.js ├── imageController.js ├── initController.js ├── knowledgeBase.js ├── meetingTypeController.js ├── organizationController.js ├── pinnedAssistantController.js ├── preprocessOfRAG.js ├── promptController.js ├── publicAssistantController.js ├── ragImplementationWithS3Files.js ├── taskCommandController.js ├── teamController.js ├── templateController.js ├── trackUsageController.js ├── userController.js ├── userModalPreferanceController.js ├── vectorStoreController.js └── workBoardController.js ├── docs ├── 800KB.pdf ├── Collab-AI-API.yaml └── test-1.pdf ├── errors ├── bad-request.js └── custom-api.js ├── index.js ├── lib ├── openai.js ├── s3.js └── vectorStore.js ├── locale └── index.js ├── middlewares ├── customError.js ├── errorMiddleware.js ├── login.js └── superadminAuth.js ├── migrations └── initial-config.js ├── models ├── assistantModel.js ├── assistantThreadModel.js ├── assistantTypes.js ├── assistantUsageModel.js ├── categoryModel.js ├── commandsCategoryModel.js ├── companyModel.js ├── configurationModel.js ├── favourite_assistant.js ├── feebackModel.js ├── functionDefinitionModel.js ├── googleAuth.js ├── gptKeyModel.js ├── imageModel.js ├── knowledgeBase.js ├── knowledgeBaseAssistants.js ├── meetingTypeModel.js ├── pinnedAssistantModel.js ├── promptModel.js ├── public_assistant.js ├── subscriberModel.js ├── subscriptionModel.js ├── taskCommandsModel.js ├── teamModel.js ├── templateModel.js ├── threadWithMeetingType.js ├── token.js ├── trackUsageModel.js ├── user.js ├── userModalPreferancesModel.js ├── userPromptModel.js └── vectorStoreModel.js ├── package.json ├── pm2.json ├── routers ├── assistantRoutes.js ├── assistantThreadRoutes.js ├── assistantTypesRoutes.js ├── assistantUsageRoutes.js ├── authRoute.js ├── categoryRoute.js ├── commandsCategoryRoute.js ├── companyRoute.js ├── configRoute.js ├── favouriteAssistantRoute.js ├── feedbackRoute.js ├── googleDriveRouters.js ├── gptPromptRoute.js ├── imageRoute.js ├── knowledgeBase.js ├── meetingTypeRoute.js ├── organizationRoutes.js ├── pinnedAssistantRoutes.js ├── publicAssistantRoute.js ├── ragWithKnowledgeBase.js ├── taskCommandRoutes.js ├── teamRoutes.js ├── templateRoute.js ├── trackUsageRoute.js ├── userModalPreferenceRoute.js ├── userRoute.js ├── vectorStoreRoutes.js └── workBoardRoute.js ├── service ├── PinnedAssistantService.js ├── aggregationService.js ├── assistantService.js ├── assistantTypeService.js ├── claudeAiPromptService.js ├── configService.js ├── cronEmailService.js ├── favoriteAssistantService.js ├── geminiAiPromptService.js ├── googleAuthService.js ├── gptPromptService.js ├── knowledgeBase.js ├── openaiService.js ├── organizationService.js ├── postgreService.js ├── publicAssistantService.js ├── rag.js ├── trackUsageService.js ├── userService.js ├── vectorStoreService.js └── workBoardService.js ├── sockets ├── assistants │ ├── assistantHandler.js │ ├── assistantNamespace.js │ └── assistantService.js ├── chat │ ├── chatHandler.js │ ├── chatNamespace.js │ └── chatServices.js └── index.js ├── test └── data │ └── 05-versions-space.pdf └── utils ├── assets ├── 3275432.png ├── 3275432.zip ├── NewLogo.2c8f11a8fa78c471ba66.png ├── Up_pink.png ├── Welcome_Email.png ├── facebook2x.png ├── instagram2x.png ├── linkedin2x.png ├── twitter2x.png └── white_down.png ├── assistant.js ├── assistantFunctionMapper.js ├── fileSearchFileExtensions.js ├── getUserPrefenceConfigHelper.js ├── googleDriveHelperFunctions.js ├── mailGun.js ├── openAIErrors.js ├── openAiConfigHelper.js ├── sendEmail.js ├── sendEmailViaOutlook.js ├── spreadsheetPrompt.js ├── template ├── adminApprovedUser.handlebars ├── adminAprrovedUser.handlebars ├── adminNotifyNewCompany.handlebars ├── newCompanies.handlebars ├── requestResetPassword.handlebars ├── userSignupApprove.handlebars ├── userregister.handlebars └── welcomeCompany.handlebars └── validations.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/README.md -------------------------------------------------------------------------------- /client/.env.sample: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL=http://localhost:8001.com/ 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/CollabAI-Favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/CollabAI-Favicon.png -------------------------------------------------------------------------------- /client/public/New-Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/New-Thumbnail.png -------------------------------------------------------------------------------- /client/public/Website-preview-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/Website-preview-thumbnail.png -------------------------------------------------------------------------------- /client/public/favicon-2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/favicon-2.ico -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/favicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/favicon1.ico -------------------------------------------------------------------------------- /client/public/google-drive-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/google-drive-icon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/Hooks/useAssistantFileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useAssistantFileUpload.js -------------------------------------------------------------------------------- /client/src/Hooks/useAssistantPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useAssistantPage.js -------------------------------------------------------------------------------- /client/src/Hooks/useAssistantsChatPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useAssistantsChatPage.js -------------------------------------------------------------------------------- /client/src/Hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useAuth.js -------------------------------------------------------------------------------- /client/src/Hooks/useAxios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useAxios.js -------------------------------------------------------------------------------- /client/src/Hooks/useChatPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useChatPage.js -------------------------------------------------------------------------------- /client/src/Hooks/useFavoriteAssistantPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useFavoriteAssistantPage.js -------------------------------------------------------------------------------- /client/src/Hooks/usePublicAssistantPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/usePublicAssistantPage.js -------------------------------------------------------------------------------- /client/src/Hooks/useSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Hooks/useSocket.js -------------------------------------------------------------------------------- /client/src/Pages/Account/AdvanceAiParameters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/AdvanceAiParameters.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/CustomizeChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/CustomizeChat.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/Profile.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/ProfileInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/ProfileInfo.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/ProfileInfoStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/ProfileInfoStyle.css -------------------------------------------------------------------------------- /client/src/Pages/Account/TrackUsageComponent/AssistantUsageTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/TrackUsageComponent/AssistantUsageTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/TrackUsageComponent/UserTrackUsageTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/TrackUsageComponent/UserTrackUsageTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/Trash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/Trash.jsx -------------------------------------------------------------------------------- /client/src/Pages/Account/Usage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/Usage.css -------------------------------------------------------------------------------- /client/src/Pages/Account/Usage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Account/Usage.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantFileDownload/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantFileDownload/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantType/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantType/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/Assistants/Assistants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Assistants/Assistants.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantsChatPage/AssistantChatLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantsChatPage/AssistantChatLoading.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantsChatPage/AssistantInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantsChatPage/AssistantInfo.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantsChatPage/AssistantsIntro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantsChatPage/AssistantsIntro.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantsChatPage/ConversationStarter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantsChatPage/ConversationStarter.jsx -------------------------------------------------------------------------------- /client/src/Pages/AssistantsChatPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/AssistantsChatPage/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/ChatPage/chat-page-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ChatPage/chat-page-media.scss -------------------------------------------------------------------------------- /client/src/Pages/ChatPage/chat-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ChatPage/chat-page.scss -------------------------------------------------------------------------------- /client/src/Pages/ChatPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ChatPage/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/ExploreGPTs/ExploredAssistantModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ExploreGPTs/ExploredAssistantModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/ExploreGPTs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ExploreGPTs/index.css -------------------------------------------------------------------------------- /client/src/Pages/ExploreGPTs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ExploreGPTs/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/KnowledgeBase/KnowledgeBase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/KnowledgeBase/KnowledgeBase.css -------------------------------------------------------------------------------- /client/src/Pages/KnowledgeBase/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/KnowledgeBase/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/Layout/AssistantLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Layout/AssistantLayout.jsx -------------------------------------------------------------------------------- /client/src/Pages/Layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Layout/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/Layout/main-layout.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/src/Pages/LoginPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/LoginPage/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/LoginPage/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/LoginPage/login.scss -------------------------------------------------------------------------------- /client/src/Pages/PageNotFound/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PageNotFound/404.css -------------------------------------------------------------------------------- /client/src/Pages/PageNotFound/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PageNotFound/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/PromptList/PromptDetailViewModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PromptList/PromptDetailViewModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/PromptList/Promptlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PromptList/Promptlist.scss -------------------------------------------------------------------------------- /client/src/Pages/PromptList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PromptList/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/PromptUserList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/PromptUserList/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/ResetPassword/ResetPassword.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ResetPassword/ResetPassword.scss -------------------------------------------------------------------------------- /client/src/Pages/ResetPassword/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/ResetPassword/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Assistant/AssistantsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Assistant/AssistantsList.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Assistant/defineFunctionModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Assistant/defineFunctionModal.css -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Modals/FunctionDefinitionModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Modals/FunctionDefinitionModal.js -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Modals/ValidationModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Modals/ValidationModel.js -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Organizations/CreateOrganizationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Organizations/CreateOrganizationModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Organizations/DebouncedSearchInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Organizations/DebouncedSearchInput.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Organizations/OrganizationTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Organizations/OrganizationTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Organizations/OrganizationsComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Organizations/OrganizationsComponent.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/SuperAdmin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/SuperAdmin.scss -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Tags/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Tags/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Tags/CreateTagModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Tags/CreateTagModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Tags/EditTagModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Tags/EditTagModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Tags/TagListTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Tags/TagListTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Tags/TagsComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Tags/TagsComponent.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TaskCommands/AddCommandsCategoryModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TaskCommands/AddCommandsCategoryModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TaskCommands/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TaskCommands/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TaskCommands/TaskCommandListTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TaskCommands/TaskCommandListTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TaskCommands/TaskCommandModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TaskCommands/TaskCommandModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TaskCommands/TaskCommands.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TaskCommands/TaskCommands.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Team/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Team/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Team/CreateTeamModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Team/CreateTeamModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Team/EditTeamModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Team/EditTeamModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Team/TeamTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Team/TeamTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Team/Teams.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Team/Teams.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/AddCategoryModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/AddCategoryModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/CreateTemplateModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/CreateTemplateModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/EditTemplateModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/EditTemplateModal.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/TemplateList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/TemplateList.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Templates/TemplateListTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Templates/TemplateListTable.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TrackUsage/AssistantUsage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TrackUsage/AssistantUsage.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TrackUsage/DailyUsage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TrackUsage/DailyUsage.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TrackUsage/TrackUsage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TrackUsage/TrackUsage.css -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TrackUsage/TrackUsage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TrackUsage/TrackUsage.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/TrackUsage/TrackUsageComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/TrackUsage/TrackUsageComponent.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/Users/Users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/Users/Users.jsx -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/api/functionCallingAssistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/api/functionCallingAssistant.js -------------------------------------------------------------------------------- /client/src/Pages/SuperAdmin/api/functionDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/SuperAdmin/api/functionDefinition.js -------------------------------------------------------------------------------- /client/src/Pages/Users/Add/AddUser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Users/Add/AddUser.css -------------------------------------------------------------------------------- /client/src/Pages/Users/Add/AddUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Users/Add/AddUser.jsx -------------------------------------------------------------------------------- /client/src/Pages/Users/EditUser/EditUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Users/EditUser/EditUser.jsx -------------------------------------------------------------------------------- /client/src/Pages/Users/List/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Users/List/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/Users/Users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/Users/Users.scss -------------------------------------------------------------------------------- /client/src/Pages/UsersAssistantList/UsersAssistant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/UsersAssistantList/UsersAssistant.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/ClaudeAIConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/ClaudeAIConfig.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/ConnectionWithWorkboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/ConnectionWithWorkboard.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/DalleConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/DalleConfig.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/GeminiAIConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/GeminiAIConfig.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/OpenAIConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/OpenAIConfig.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/UsersTokenConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/UsersTokenConfig.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/index.jsx -------------------------------------------------------------------------------- /client/src/Pages/configration/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/configration/style.css -------------------------------------------------------------------------------- /client/src/Pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Pages/index.js -------------------------------------------------------------------------------- /client/src/Utility/addPublicAssistantHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/addPublicAssistantHelper.js -------------------------------------------------------------------------------- /client/src/Utility/assistant-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/assistant-helper.js -------------------------------------------------------------------------------- /client/src/Utility/authHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/authHelper.js -------------------------------------------------------------------------------- /client/src/Utility/chat-page-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/chat-page-helper.js -------------------------------------------------------------------------------- /client/src/Utility/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/helper.js -------------------------------------------------------------------------------- /client/src/Utility/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/service.js -------------------------------------------------------------------------------- /client/src/Utility/showModalHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/Utility/showModalHelper.js -------------------------------------------------------------------------------- /client/src/api/assistant-chat-page-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistant-chat-page-api.js -------------------------------------------------------------------------------- /client/src/api/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistant.js -------------------------------------------------------------------------------- /client/src/api/assistantApiFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistantApiFunctions.js -------------------------------------------------------------------------------- /client/src/api/assistantChatPageApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistantChatPageApi.js -------------------------------------------------------------------------------- /client/src/api/assistantType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistantType.js -------------------------------------------------------------------------------- /client/src/api/assistantTypeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistantTypeApi.js -------------------------------------------------------------------------------- /client/src/api/assistant_api_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/assistant_api_constant.js -------------------------------------------------------------------------------- /client/src/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/auth.js -------------------------------------------------------------------------------- /client/src/api/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/axios.js -------------------------------------------------------------------------------- /client/src/api/chat-page-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/chat-page-api.js -------------------------------------------------------------------------------- /client/src/api/favoriteAssistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/favoriteAssistant.js -------------------------------------------------------------------------------- /client/src/api/googleAuthApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/googleAuthApi.js -------------------------------------------------------------------------------- /client/src/api/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/knowledgeBase.js -------------------------------------------------------------------------------- /client/src/api/personalizeAssistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/personalizeAssistant.js -------------------------------------------------------------------------------- /client/src/api/pinnedAssistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/pinnedAssistant.js -------------------------------------------------------------------------------- /client/src/api/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/profile.js -------------------------------------------------------------------------------- /client/src/api/promptApiFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/promptApiFunctions.js -------------------------------------------------------------------------------- /client/src/api/prompt_api_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/prompt_api_constant.js -------------------------------------------------------------------------------- /client/src/api/publicAssistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/publicAssistant.js -------------------------------------------------------------------------------- /client/src/api/publicAssistantApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/publicAssistantApi.js -------------------------------------------------------------------------------- /client/src/api/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/settings.js -------------------------------------------------------------------------------- /client/src/api/tags-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/tags-admin.js -------------------------------------------------------------------------------- /client/src/api/taskCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/taskCommands.js -------------------------------------------------------------------------------- /client/src/api/taskCommandsCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/taskCommandsCategory.js -------------------------------------------------------------------------------- /client/src/api/team-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/team-admin.js -------------------------------------------------------------------------------- /client/src/api/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/templates.js -------------------------------------------------------------------------------- /client/src/api/templatesCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/templatesCategory.js -------------------------------------------------------------------------------- /client/src/api/threadApiFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/threadApiFunctions.js -------------------------------------------------------------------------------- /client/src/api/track-usage-api-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/track-usage-api-functions.js -------------------------------------------------------------------------------- /client/src/api/track-usage-api-slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/track-usage-api-slug.js -------------------------------------------------------------------------------- /client/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/user.js -------------------------------------------------------------------------------- /client/src/api/userApiFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/userApiFunctions.js -------------------------------------------------------------------------------- /client/src/api/userPreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/userPreference.js -------------------------------------------------------------------------------- /client/src/api/user_api_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/user_api_constant.js -------------------------------------------------------------------------------- /client/src/api/usersPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/api/usersPrompt.js -------------------------------------------------------------------------------- /client/src/assests/images/NewLogo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/NewLogo-dark.png -------------------------------------------------------------------------------- /client/src/assests/images/NewLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/NewLogo.png -------------------------------------------------------------------------------- /client/src/assests/images/Temporary Logo Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/Temporary Logo Black.png -------------------------------------------------------------------------------- /client/src/assests/images/Temporary Logo White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/Temporary Logo White.png -------------------------------------------------------------------------------- /client/src/assests/images/Xeem_App.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/Xeem_App.pptx -------------------------------------------------------------------------------- /client/src/assests/images/agents-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/agents-placeholder.png -------------------------------------------------------------------------------- /client/src/assests/images/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/chatgpt.png -------------------------------------------------------------------------------- /client/src/assests/images/claude-ai-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/claude-ai-icon.png -------------------------------------------------------------------------------- /client/src/assests/images/claudeAi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/claudeAi.png -------------------------------------------------------------------------------- /client/src/assests/images/collab_ai_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/collab_ai_logo_black.svg -------------------------------------------------------------------------------- /client/src/assests/images/collab_ai_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/collab_ai_logo_white.svg -------------------------------------------------------------------------------- /client/src/assests/images/drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/drive.svg -------------------------------------------------------------------------------- /client/src/assests/images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/flower.jpg -------------------------------------------------------------------------------- /client/src/assests/images/gemini-ai-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/gemini-ai-icon.png -------------------------------------------------------------------------------- /client/src/assests/images/google-drive-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/google-drive-icon.ico -------------------------------------------------------------------------------- /client/src/assests/images/google-drive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/google-drive-icon.png -------------------------------------------------------------------------------- /client/src/assests/images/image (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/image (8).png -------------------------------------------------------------------------------- /client/src/assests/images/new-chat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/new-chat-icon.png -------------------------------------------------------------------------------- /client/src/assests/images/product-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/product-logo.png -------------------------------------------------------------------------------- /client/src/assests/images/product-logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/product-logo_old.png -------------------------------------------------------------------------------- /client/src/assests/images/site-logo-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/site-logo-new.png -------------------------------------------------------------------------------- /client/src/assests/images/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/site-logo.png -------------------------------------------------------------------------------- /client/src/assests/images/sorted-rack-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/sorted-rack-logo.svg -------------------------------------------------------------------------------- /client/src/assests/images/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/user-icon.png -------------------------------------------------------------------------------- /client/src/assests/images/work-board-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/assests/images/work-board-icon.png -------------------------------------------------------------------------------- /client/src/base/color.css: -------------------------------------------------------------------------------- 1 | /* No CSS *//*# sourceMappingURL=color.css.map */ -------------------------------------------------------------------------------- /client/src/base/color.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/color.css.map -------------------------------------------------------------------------------- /client/src/base/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/color.scss -------------------------------------------------------------------------------- /client/src/base/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/global.scss -------------------------------------------------------------------------------- /client/src/base/include-media.css: -------------------------------------------------------------------------------- 1 | /* No CSS *//*# sourceMappingURL=include-media.css.map */ -------------------------------------------------------------------------------- /client/src/base/include-media.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/include-media.css.map -------------------------------------------------------------------------------- /client/src/base/include-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/include-media.scss -------------------------------------------------------------------------------- /client/src/base/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/typography.css -------------------------------------------------------------------------------- /client/src/base/typography.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/typography.css.map -------------------------------------------------------------------------------- /client/src/base/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/base/typography.scss -------------------------------------------------------------------------------- /client/src/component/Assistant/AdminAssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/AdminAssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistant.css -------------------------------------------------------------------------------- /client/src/component/Assistant/AssistantSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/AssistantSettings.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/AssistantTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/AssistantTable.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/AssistantTeamAssignModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/AssistantTeamAssignModal.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/AssistantForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/AssistantForm.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/ConversationStater.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/ConversationStater.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/ConvoStarter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/ConvoStarter.css -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/CreateAssistantModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/CreateAssistantModal.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/FunctionCallingAssistantForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/FunctionCallingAssistantForm.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/RAGFileList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/RAGFileList.css -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/api/assistant_functionCallingCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/Assistantmodal/api/assistant_functionCallingCreation.js -------------------------------------------------------------------------------- /client/src/component/Assistant/Assistantmodal/functionCallingAssForm.css: -------------------------------------------------------------------------------- 1 | .propContainer { 2 | background: transparent; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /client/src/component/Assistant/FavoriteAssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/FavoriteAssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/FunctionCallingAssistantTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/FunctionCallingAssistantTable.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/PersonalAssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/PersonalAssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/PublicAssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/PublicAssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/Assistant/UserAssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Assistant/UserAssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantType/AssistantTypeTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantType/AssistantTypeTable.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantType/CreateAssistantTypeFormFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantType/CreateAssistantTypeFormFields.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantType/CreateAssistantTypeModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantType/CreateAssistantTypeModal.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantType/EditAssistantTypeFormFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantType/EditAssistantTypeFormFields.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantType/EditAssistantTypeModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantType/EditAssistantTypeModal.jsx -------------------------------------------------------------------------------- /client/src/component/AssistantsChatPage/AssistantChatInputPrompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/AssistantsChatPage/AssistantChatInputPrompt.jsx -------------------------------------------------------------------------------- /client/src/component/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Card/Card.jsx -------------------------------------------------------------------------------- /client/src/component/Card/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Card/index.css -------------------------------------------------------------------------------- /client/src/component/CardList/CardinList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/CardList/CardinList.jsx -------------------------------------------------------------------------------- /client/src/component/CardList/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/CardList/style.css -------------------------------------------------------------------------------- /client/src/component/CardWithDetails/CardDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/CardWithDetails/CardDetails.jsx -------------------------------------------------------------------------------- /client/src/component/CardWithDetails/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/CardWithDetails/style.css -------------------------------------------------------------------------------- /client/src/component/Chat/BotIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/BotIcon.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/BotResponse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/BotResponse.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/Chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/Chat.css -------------------------------------------------------------------------------- /client/src/component/Chat/ChatSkeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/ChatSkeleton.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/CodeInterPreterOutput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/CodeInterPreterOutput.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/MessageContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/MessageContainer.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/SendIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/SendIcon.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/ShareDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/ShareDropdown.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/UserIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/UserIcon.jsx -------------------------------------------------------------------------------- /client/src/component/Chat/UserPrompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Chat/UserPrompt.jsx -------------------------------------------------------------------------------- /client/src/component/ChatPage/ChatPromptInputForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/ChatPage/ChatPromptInputForm.jsx -------------------------------------------------------------------------------- /client/src/component/ChatPage/PromptTemplatesIntro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/ChatPage/PromptTemplatesIntro.jsx -------------------------------------------------------------------------------- /client/src/component/ChatPage/UsefulPromptDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/ChatPage/UsefulPromptDropdown.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/GoogleDrive.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/GoogleDrive.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/GoogleDriveHelperFunctions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/GoogleDriveHelperFunctions.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/IntegrateApplications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/IntegrateApplications.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/Login.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/LoginWithGoogle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/LoginWithGoogle.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/Logout.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/LogoutOfGoogle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/LogoutOfGoogle.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/useGoogleDrive.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/useGoogleDrive.jsx -------------------------------------------------------------------------------- /client/src/component/IntegrateApplications/useGoogleDrivePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/IntegrateApplications/useGoogleDrivePicker.jsx -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/FileHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/FileHelpers.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/FileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/FileTree.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/Modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/Modals.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/ModalsComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/ModalsComponent.jsx -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/RAGTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/RAGTree.css -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/RAGTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/RAGTree.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/ShowFileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/ShowFileTree.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/fileToBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/fileToBase64.js -------------------------------------------------------------------------------- /client/src/component/KnowledgeBase/importFromGoogle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/KnowledgeBase/importFromGoogle.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Avatar.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/BotResponse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/BotResponse.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Button.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/CodeHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/CodeHighlighter.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Error.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Introsection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Introsection.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Loading.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Modal.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavBar.css -------------------------------------------------------------------------------- /client/src/component/Prompt/NavContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavContent.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NavContentDuplicate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavContentDuplicate.css -------------------------------------------------------------------------------- /client/src/component/Prompt/NavContentDuplicate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavContentDuplicate.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavLink.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NavLinksContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavLinksContainer.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NavPrompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NavPrompt.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NewChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NewChat.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/NewChatWithSameAssistant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/NewChatWithSameAssistant.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Prompt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Prompt.scss -------------------------------------------------------------------------------- /client/src/component/Prompt/PromptSkeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/PromptSkeleton.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/SvgComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/SvgComponent.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/Templates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/Templates.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/ThreadSidebar/ThreadSidebarWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/ThreadSidebar/ThreadSidebarWrapper.jsx -------------------------------------------------------------------------------- /client/src/component/Prompt/exploreAssistant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Prompt/exploreAssistant.css -------------------------------------------------------------------------------- /client/src/component/ProtectedRoute/ProtectedRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/ProtectedRoute/ProtectedRoute.jsx -------------------------------------------------------------------------------- /client/src/component/RoutesData/SuperAdminRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/RoutesData/SuperAdminRoutes.js -------------------------------------------------------------------------------- /client/src/component/Welcome-Card/WelcomeCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Welcome-Card/WelcomeCard.js -------------------------------------------------------------------------------- /client/src/component/Welcome-Card/welcomeCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/Welcome-Card/welcomeCard.css -------------------------------------------------------------------------------- /client/src/component/common/AssistantIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/AssistantIcon.jsx -------------------------------------------------------------------------------- /client/src/component/common/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/Avatar.jsx -------------------------------------------------------------------------------- /client/src/component/common/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/Card.jsx -------------------------------------------------------------------------------- /client/src/component/common/CodeHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/CodeHighlighter.jsx -------------------------------------------------------------------------------- /client/src/component/common/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/component/common/CustomModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/CustomModal.jsx -------------------------------------------------------------------------------- /client/src/component/common/CustomSpinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/CustomSpinner.css -------------------------------------------------------------------------------- /client/src/component/common/CustomSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/CustomSpinner.jsx -------------------------------------------------------------------------------- /client/src/component/common/DarkModeToggler/DarkModeToggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/DarkModeToggler/DarkModeToggler.jsx -------------------------------------------------------------------------------- /client/src/component/common/DarkModeToggler/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/DarkModeToggler/style.scss -------------------------------------------------------------------------------- /client/src/component/common/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/Error.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormButton.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormCheckbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormCheckbox.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormComponent.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormDatePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormDatePicker.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormEmail.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormFileInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormFileInput.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormInput.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormSelect.jsx -------------------------------------------------------------------------------- /client/src/component/common/FormTextArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/FormTextArea.jsx -------------------------------------------------------------------------------- /client/src/component/common/InputModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/InputModal.jsx -------------------------------------------------------------------------------- /client/src/component/common/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/Loading.jsx -------------------------------------------------------------------------------- /client/src/component/common/MultiSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/MultiSelect.jsx -------------------------------------------------------------------------------- /client/src/component/common/TableComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/TableComponent.jsx -------------------------------------------------------------------------------- /client/src/component/common/popUpCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/common/popUpCard.jsx -------------------------------------------------------------------------------- /client/src/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/index.js -------------------------------------------------------------------------------- /client/src/component/layout/AssistantSidebar/AssistantNewChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/AssistantSidebar/AssistantNewChat.jsx -------------------------------------------------------------------------------- /client/src/component/layout/AssistantSidebar/AssistantSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/AssistantSidebar/AssistantSidebar.jsx -------------------------------------------------------------------------------- /client/src/component/layout/AssistantSidebar/AssistantSidebarContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/AssistantSidebar/AssistantSidebarContent.jsx -------------------------------------------------------------------------------- /client/src/component/layout/AssistantSidebar/AssistantThread.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/AssistantSidebar/AssistantThread.jsx -------------------------------------------------------------------------------- /client/src/component/layout/AssistantSidebar/ConfirmationModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/AssistantSidebar/ConfirmationModal.jsx -------------------------------------------------------------------------------- /client/src/component/layout/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Header/Header.jsx -------------------------------------------------------------------------------- /client/src/component/layout/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Header/Header.scss -------------------------------------------------------------------------------- /client/src/component/layout/Header/Utilities/pageTitleInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Header/Utilities/pageTitleInfo.js -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/AdminNavLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/AdminNavLinks.jsx -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/AssistantList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/AssistantList.css -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/AssistantList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/AssistantList.jsx -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/AssistantListPinIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/AssistantListPinIcon.css -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/CommonNavLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/CommonNavLinks.jsx -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/NewSidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/NewSidebar.css -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/NewSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/NewSidebar.jsx -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/SuperAdminNavLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/SuperAdminNavLinks.jsx -------------------------------------------------------------------------------- /client/src/component/layout/NewSidebar/UserNavLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/NewSidebar/UserNavLinks.jsx -------------------------------------------------------------------------------- /client/src/component/layout/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /client/src/component/layout/Sidebar/Sidebar.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Sidebar/Sidebar.css.map -------------------------------------------------------------------------------- /client/src/component/layout/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /client/src/component/layout/Sidebar/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/Sidebar/Sidebar.scss -------------------------------------------------------------------------------- /client/src/component/layout/footer/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/footer/footer.jsx -------------------------------------------------------------------------------- /client/src/component/layout/footer/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/footer/footer.scss -------------------------------------------------------------------------------- /client/src/component/layout/mainContent/mainContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/mainContent/mainContent.css -------------------------------------------------------------------------------- /client/src/component/layout/mainContent/mainContent.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/mainContent/mainContent.css.map -------------------------------------------------------------------------------- /client/src/component/layout/mainContent/mainContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/mainContent/mainContent.jsx -------------------------------------------------------------------------------- /client/src/component/layout/mainContent/mainContent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/layout/mainContent/mainContent.scss -------------------------------------------------------------------------------- /client/src/component/meetingType/MeetingTypeDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/component/meetingType/MeetingTypeDropdown.jsx -------------------------------------------------------------------------------- /client/src/constants/Api_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/Api_constants.js -------------------------------------------------------------------------------- /client/src/constants/AssistanceModelConst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/AssistanceModelConst.js -------------------------------------------------------------------------------- /client/src/constants/FileLIstConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/FileLIstConstants.js -------------------------------------------------------------------------------- /client/src/constants/PublicAndPrivateAssistantMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/PublicAndPrivateAssistantMessages.js -------------------------------------------------------------------------------- /client/src/constants/chatPageConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/chatPageConstants.js -------------------------------------------------------------------------------- /client/src/constants/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/localStorage.js -------------------------------------------------------------------------------- /client/src/constants/setting_api_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/setting_api_constant.js -------------------------------------------------------------------------------- /client/src/constants/setting_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/setting_constant.js -------------------------------------------------------------------------------- /client/src/constants/sockets/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/sockets/assistant.js -------------------------------------------------------------------------------- /client/src/constants/sockets/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/sockets/chat.js -------------------------------------------------------------------------------- /client/src/constants/user-advanced-ai-parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/constants/user-advanced-ai-parameters.js -------------------------------------------------------------------------------- /client/src/contexts/AssistantContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/AssistantContext.js -------------------------------------------------------------------------------- /client/src/contexts/AssistantsFetchContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/AssistantsFetchContext.js -------------------------------------------------------------------------------- /client/src/contexts/FileContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/FileContext.js -------------------------------------------------------------------------------- /client/src/contexts/NewAuthProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/NewAuthProvider.js -------------------------------------------------------------------------------- /client/src/contexts/PromptTemplateContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/PromptTemplateContext.js -------------------------------------------------------------------------------- /client/src/contexts/SidebarContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/SidebarContext.js -------------------------------------------------------------------------------- /client/src/contexts/ThemeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/ThemeProvider.js -------------------------------------------------------------------------------- /client/src/contexts/TitleContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/TitleContext.js -------------------------------------------------------------------------------- /client/src/contexts/themeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/contexts/themeConfig.js -------------------------------------------------------------------------------- /client/src/data/ExampleFormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/data/ExampleFormFields.js -------------------------------------------------------------------------------- /client/src/data/ExampleModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/data/ExampleModal.js -------------------------------------------------------------------------------- /client/src/data/ForgotPasswordFormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/data/ForgotPasswordFormFields.js -------------------------------------------------------------------------------- /client/src/data/LoginFormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/data/LoginFormFields.js -------------------------------------------------------------------------------- /client/src/data/ResetPasswordFromFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/data/ResetPasswordFromFields.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/main.scss -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/.DS_Store -------------------------------------------------------------------------------- /server/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/.env.sample -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config.js -------------------------------------------------------------------------------- /server/config/claudeAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/claudeAI.js -------------------------------------------------------------------------------- /server/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/db.js -------------------------------------------------------------------------------- /server/config/dbPostgre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/dbPostgre.js -------------------------------------------------------------------------------- /server/config/geminiAi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/geminiAi.js -------------------------------------------------------------------------------- /server/config/openAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/openAI.js -------------------------------------------------------------------------------- /server/config/openaiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/openaiClient.js -------------------------------------------------------------------------------- /server/config/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/config/socket.js -------------------------------------------------------------------------------- /server/constants/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/constants/enums.js -------------------------------------------------------------------------------- /server/constants/tokenPrices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/constants/tokenPrices.js -------------------------------------------------------------------------------- /server/controllers/assistantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/assistantController.js -------------------------------------------------------------------------------- /server/controllers/assistantThreadController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/assistantThreadController.js -------------------------------------------------------------------------------- /server/controllers/assistantTypesController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/assistantTypesController.js -------------------------------------------------------------------------------- /server/controllers/assistantUsageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/assistantUsageController.js -------------------------------------------------------------------------------- /server/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/auth.js -------------------------------------------------------------------------------- /server/controllers/categoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/categoryController.js -------------------------------------------------------------------------------- /server/controllers/commandsCategoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/commandsCategoryController.js -------------------------------------------------------------------------------- /server/controllers/companyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/companyController.js -------------------------------------------------------------------------------- /server/controllers/configController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/configController.js -------------------------------------------------------------------------------- /server/controllers/customTrainDataController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/customTrainDataController.js -------------------------------------------------------------------------------- /server/controllers/favoriteAssistantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/favoriteAssistantController.js -------------------------------------------------------------------------------- /server/controllers/feedbackController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/feedbackController.js -------------------------------------------------------------------------------- /server/controllers/googleAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/googleAuth.js -------------------------------------------------------------------------------- /server/controllers/imageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/imageController.js -------------------------------------------------------------------------------- /server/controllers/initController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/initController.js -------------------------------------------------------------------------------- /server/controllers/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/knowledgeBase.js -------------------------------------------------------------------------------- /server/controllers/meetingTypeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/meetingTypeController.js -------------------------------------------------------------------------------- /server/controllers/organizationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/organizationController.js -------------------------------------------------------------------------------- /server/controllers/pinnedAssistantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/pinnedAssistantController.js -------------------------------------------------------------------------------- /server/controllers/preprocessOfRAG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/preprocessOfRAG.js -------------------------------------------------------------------------------- /server/controllers/promptController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/promptController.js -------------------------------------------------------------------------------- /server/controllers/publicAssistantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/publicAssistantController.js -------------------------------------------------------------------------------- /server/controllers/ragImplementationWithS3Files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/ragImplementationWithS3Files.js -------------------------------------------------------------------------------- /server/controllers/taskCommandController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/taskCommandController.js -------------------------------------------------------------------------------- /server/controllers/teamController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/teamController.js -------------------------------------------------------------------------------- /server/controllers/templateController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/templateController.js -------------------------------------------------------------------------------- /server/controllers/trackUsageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/trackUsageController.js -------------------------------------------------------------------------------- /server/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/userController.js -------------------------------------------------------------------------------- /server/controllers/userModalPreferanceController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/userModalPreferanceController.js -------------------------------------------------------------------------------- /server/controllers/vectorStoreController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/vectorStoreController.js -------------------------------------------------------------------------------- /server/controllers/workBoardController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/controllers/workBoardController.js -------------------------------------------------------------------------------- /server/docs/800KB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/docs/800KB.pdf -------------------------------------------------------------------------------- /server/docs/Collab-AI-API.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/docs/Collab-AI-API.yaml -------------------------------------------------------------------------------- /server/docs/test-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/docs/test-1.pdf -------------------------------------------------------------------------------- /server/errors/bad-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/errors/bad-request.js -------------------------------------------------------------------------------- /server/errors/custom-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/errors/custom-api.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/index.js -------------------------------------------------------------------------------- /server/lib/openai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/lib/openai.js -------------------------------------------------------------------------------- /server/lib/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/lib/s3.js -------------------------------------------------------------------------------- /server/lib/vectorStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/lib/vectorStore.js -------------------------------------------------------------------------------- /server/locale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/locale/index.js -------------------------------------------------------------------------------- /server/middlewares/customError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/middlewares/customError.js -------------------------------------------------------------------------------- /server/middlewares/errorMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/middlewares/errorMiddleware.js -------------------------------------------------------------------------------- /server/middlewares/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/middlewares/login.js -------------------------------------------------------------------------------- /server/middlewares/superadminAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/middlewares/superadminAuth.js -------------------------------------------------------------------------------- /server/migrations/initial-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/migrations/initial-config.js -------------------------------------------------------------------------------- /server/models/assistantModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/assistantModel.js -------------------------------------------------------------------------------- /server/models/assistantThreadModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/assistantThreadModel.js -------------------------------------------------------------------------------- /server/models/assistantTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/assistantTypes.js -------------------------------------------------------------------------------- /server/models/assistantUsageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/assistantUsageModel.js -------------------------------------------------------------------------------- /server/models/categoryModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/categoryModel.js -------------------------------------------------------------------------------- /server/models/commandsCategoryModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/commandsCategoryModel.js -------------------------------------------------------------------------------- /server/models/companyModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/companyModel.js -------------------------------------------------------------------------------- /server/models/configurationModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/configurationModel.js -------------------------------------------------------------------------------- /server/models/favourite_assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/favourite_assistant.js -------------------------------------------------------------------------------- /server/models/feebackModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/feebackModel.js -------------------------------------------------------------------------------- /server/models/functionDefinitionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/functionDefinitionModel.js -------------------------------------------------------------------------------- /server/models/googleAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/googleAuth.js -------------------------------------------------------------------------------- /server/models/gptKeyModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/gptKeyModel.js -------------------------------------------------------------------------------- /server/models/imageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/imageModel.js -------------------------------------------------------------------------------- /server/models/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/knowledgeBase.js -------------------------------------------------------------------------------- /server/models/knowledgeBaseAssistants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/knowledgeBaseAssistants.js -------------------------------------------------------------------------------- /server/models/meetingTypeModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/meetingTypeModel.js -------------------------------------------------------------------------------- /server/models/pinnedAssistantModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/pinnedAssistantModel.js -------------------------------------------------------------------------------- /server/models/promptModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/promptModel.js -------------------------------------------------------------------------------- /server/models/public_assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/public_assistant.js -------------------------------------------------------------------------------- /server/models/subscriberModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/subscriberModel.js -------------------------------------------------------------------------------- /server/models/subscriptionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/subscriptionModel.js -------------------------------------------------------------------------------- /server/models/taskCommandsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/taskCommandsModel.js -------------------------------------------------------------------------------- /server/models/teamModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/teamModel.js -------------------------------------------------------------------------------- /server/models/templateModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/templateModel.js -------------------------------------------------------------------------------- /server/models/threadWithMeetingType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/threadWithMeetingType.js -------------------------------------------------------------------------------- /server/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/token.js -------------------------------------------------------------------------------- /server/models/trackUsageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/trackUsageModel.js -------------------------------------------------------------------------------- /server/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/user.js -------------------------------------------------------------------------------- /server/models/userModalPreferancesModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/userModalPreferancesModel.js -------------------------------------------------------------------------------- /server/models/userPromptModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/userPromptModel.js -------------------------------------------------------------------------------- /server/models/vectorStoreModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/models/vectorStoreModel.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/package.json -------------------------------------------------------------------------------- /server/pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/pm2.json -------------------------------------------------------------------------------- /server/routers/assistantRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/assistantRoutes.js -------------------------------------------------------------------------------- /server/routers/assistantThreadRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/assistantThreadRoutes.js -------------------------------------------------------------------------------- /server/routers/assistantTypesRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/assistantTypesRoutes.js -------------------------------------------------------------------------------- /server/routers/assistantUsageRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/assistantUsageRoutes.js -------------------------------------------------------------------------------- /server/routers/authRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/authRoute.js -------------------------------------------------------------------------------- /server/routers/categoryRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/categoryRoute.js -------------------------------------------------------------------------------- /server/routers/commandsCategoryRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/commandsCategoryRoute.js -------------------------------------------------------------------------------- /server/routers/companyRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/companyRoute.js -------------------------------------------------------------------------------- /server/routers/configRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/configRoute.js -------------------------------------------------------------------------------- /server/routers/favouriteAssistantRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/favouriteAssistantRoute.js -------------------------------------------------------------------------------- /server/routers/feedbackRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/feedbackRoute.js -------------------------------------------------------------------------------- /server/routers/googleDriveRouters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/googleDriveRouters.js -------------------------------------------------------------------------------- /server/routers/gptPromptRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/gptPromptRoute.js -------------------------------------------------------------------------------- /server/routers/imageRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/imageRoute.js -------------------------------------------------------------------------------- /server/routers/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/knowledgeBase.js -------------------------------------------------------------------------------- /server/routers/meetingTypeRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/meetingTypeRoute.js -------------------------------------------------------------------------------- /server/routers/organizationRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/organizationRoutes.js -------------------------------------------------------------------------------- /server/routers/pinnedAssistantRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/pinnedAssistantRoutes.js -------------------------------------------------------------------------------- /server/routers/publicAssistantRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/publicAssistantRoute.js -------------------------------------------------------------------------------- /server/routers/ragWithKnowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/ragWithKnowledgeBase.js -------------------------------------------------------------------------------- /server/routers/taskCommandRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/taskCommandRoutes.js -------------------------------------------------------------------------------- /server/routers/teamRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/teamRoutes.js -------------------------------------------------------------------------------- /server/routers/templateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/templateRoute.js -------------------------------------------------------------------------------- /server/routers/trackUsageRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/trackUsageRoute.js -------------------------------------------------------------------------------- /server/routers/userModalPreferenceRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/userModalPreferenceRoute.js -------------------------------------------------------------------------------- /server/routers/userRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/userRoute.js -------------------------------------------------------------------------------- /server/routers/vectorStoreRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/vectorStoreRoutes.js -------------------------------------------------------------------------------- /server/routers/workBoardRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/routers/workBoardRoute.js -------------------------------------------------------------------------------- /server/service/PinnedAssistantService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/PinnedAssistantService.js -------------------------------------------------------------------------------- /server/service/aggregationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/aggregationService.js -------------------------------------------------------------------------------- /server/service/assistantService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/assistantService.js -------------------------------------------------------------------------------- /server/service/assistantTypeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/assistantTypeService.js -------------------------------------------------------------------------------- /server/service/claudeAiPromptService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/claudeAiPromptService.js -------------------------------------------------------------------------------- /server/service/configService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/configService.js -------------------------------------------------------------------------------- /server/service/cronEmailService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/cronEmailService.js -------------------------------------------------------------------------------- /server/service/favoriteAssistantService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/favoriteAssistantService.js -------------------------------------------------------------------------------- /server/service/geminiAiPromptService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/geminiAiPromptService.js -------------------------------------------------------------------------------- /server/service/googleAuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/googleAuthService.js -------------------------------------------------------------------------------- /server/service/gptPromptService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/gptPromptService.js -------------------------------------------------------------------------------- /server/service/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/knowledgeBase.js -------------------------------------------------------------------------------- /server/service/openaiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/openaiService.js -------------------------------------------------------------------------------- /server/service/organizationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/organizationService.js -------------------------------------------------------------------------------- /server/service/postgreService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/postgreService.js -------------------------------------------------------------------------------- /server/service/publicAssistantService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/publicAssistantService.js -------------------------------------------------------------------------------- /server/service/rag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/rag.js -------------------------------------------------------------------------------- /server/service/trackUsageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/trackUsageService.js -------------------------------------------------------------------------------- /server/service/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/userService.js -------------------------------------------------------------------------------- /server/service/vectorStoreService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/vectorStoreService.js -------------------------------------------------------------------------------- /server/service/workBoardService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/service/workBoardService.js -------------------------------------------------------------------------------- /server/sockets/assistants/assistantHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/assistants/assistantHandler.js -------------------------------------------------------------------------------- /server/sockets/assistants/assistantNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/assistants/assistantNamespace.js -------------------------------------------------------------------------------- /server/sockets/assistants/assistantService.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sockets/chat/chatHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/chat/chatHandler.js -------------------------------------------------------------------------------- /server/sockets/chat/chatNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/chat/chatNamespace.js -------------------------------------------------------------------------------- /server/sockets/chat/chatServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/chat/chatServices.js -------------------------------------------------------------------------------- /server/sockets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/sockets/index.js -------------------------------------------------------------------------------- /server/test/data/05-versions-space.pdf: -------------------------------------------------------------------------------- 1 | this is dhaka -------------------------------------------------------------------------------- /server/utils/assets/3275432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/3275432.png -------------------------------------------------------------------------------- /server/utils/assets/3275432.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/3275432.zip -------------------------------------------------------------------------------- /server/utils/assets/NewLogo.2c8f11a8fa78c471ba66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/NewLogo.2c8f11a8fa78c471ba66.png -------------------------------------------------------------------------------- /server/utils/assets/Up_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/Up_pink.png -------------------------------------------------------------------------------- /server/utils/assets/Welcome_Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/Welcome_Email.png -------------------------------------------------------------------------------- /server/utils/assets/facebook2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/facebook2x.png -------------------------------------------------------------------------------- /server/utils/assets/instagram2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/instagram2x.png -------------------------------------------------------------------------------- /server/utils/assets/linkedin2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/linkedin2x.png -------------------------------------------------------------------------------- /server/utils/assets/twitter2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/twitter2x.png -------------------------------------------------------------------------------- /server/utils/assets/white_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assets/white_down.png -------------------------------------------------------------------------------- /server/utils/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assistant.js -------------------------------------------------------------------------------- /server/utils/assistantFunctionMapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/assistantFunctionMapper.js -------------------------------------------------------------------------------- /server/utils/fileSearchFileExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/fileSearchFileExtensions.js -------------------------------------------------------------------------------- /server/utils/getUserPrefenceConfigHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/getUserPrefenceConfigHelper.js -------------------------------------------------------------------------------- /server/utils/googleDriveHelperFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/googleDriveHelperFunctions.js -------------------------------------------------------------------------------- /server/utils/mailGun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/mailGun.js -------------------------------------------------------------------------------- /server/utils/openAIErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/openAIErrors.js -------------------------------------------------------------------------------- /server/utils/openAiConfigHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/openAiConfigHelper.js -------------------------------------------------------------------------------- /server/utils/sendEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/sendEmail.js -------------------------------------------------------------------------------- /server/utils/sendEmailViaOutlook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/sendEmailViaOutlook.js -------------------------------------------------------------------------------- /server/utils/spreadsheetPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/spreadsheetPrompt.js -------------------------------------------------------------------------------- /server/utils/template/adminApprovedUser.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/adminApprovedUser.handlebars -------------------------------------------------------------------------------- /server/utils/template/adminAprrovedUser.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/adminAprrovedUser.handlebars -------------------------------------------------------------------------------- /server/utils/template/adminNotifyNewCompany.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/adminNotifyNewCompany.handlebars -------------------------------------------------------------------------------- /server/utils/template/newCompanies.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/newCompanies.handlebars -------------------------------------------------------------------------------- /server/utils/template/requestResetPassword.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/requestResetPassword.handlebars -------------------------------------------------------------------------------- /server/utils/template/userSignupApprove.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/userSignupApprove.handlebars -------------------------------------------------------------------------------- /server/utils/template/userregister.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/userregister.handlebars -------------------------------------------------------------------------------- /server/utils/template/welcomeCompany.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/template/welcomeCompany.handlebars -------------------------------------------------------------------------------- /server/utils/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjinnovation/CollabAI/HEAD/server/utils/validations.js --------------------------------------------------------------------------------