├── .dockerignore ├── .env.docker ├── .env.sample ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yml ├── CLA.md ├── CONTRIBUTING.md ├── Dockerfile ├── README.md ├── docker-compose.yml ├── ecosystem.config.js ├── frontend ├── .dockerignore ├── .env.development ├── .env.docker ├── .env.sample ├── .gitignore ├── Dockerfile ├── nginx.conf ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.test.tsx │ ├── Base.tsx │ ├── ColorModeSwitcher.tsx │ ├── components │ │ ├── ChatBot │ │ │ ├── ChatBot.module.scss │ │ │ └── ChatBot.tsx │ │ ├── ChatSessions │ │ │ ├── ChatBubble.tsx │ │ │ ├── ChatList.tsx │ │ │ ├── ChatListItem.tsx │ │ │ ├── ChatWindow.module.scss │ │ │ └── ChatWindow.tsx │ │ ├── ConfirmationModal │ │ │ ├── ConfirmationModal.module.scss │ │ │ └── ConfirmationModal.tsx │ │ ├── DefaultMediaImage │ │ │ └── DefaultMediaImage.tsx │ │ ├── FileDropzone │ │ │ └── CustomDropzone.tsx │ │ ├── Icons │ │ │ ├── ChatBotLauncherIcons │ │ │ │ ├── LauncherIcon1.tsx │ │ │ │ ├── LauncherIcon2.tsx │ │ │ │ ├── LauncherIcon3.tsx │ │ │ │ ├── LauncherIcon4.tsx │ │ │ │ └── LauncherIcon5.tsx │ │ │ ├── CheckCircle.tsx │ │ │ ├── CheckCircleBlue.tsx │ │ │ ├── CheckCircleBlueIconMd.tsx │ │ │ ├── CheckedCircle.tsx │ │ │ ├── DeleteIcon.tsx │ │ │ ├── EditIcon.tsx │ │ │ ├── Google.tsx │ │ │ ├── Icon.tsx │ │ │ ├── Integrations │ │ │ │ ├── SlackIntegrationIcon.tsx │ │ │ │ └── ZapierIcon.tsx │ │ │ ├── MailIcon.tsx │ │ │ ├── ReadIcon.tsx │ │ │ ├── Stripe.tsx │ │ │ ├── StripeColor.tsx │ │ │ ├── ThreeDotIcon.tsx │ │ │ ├── UnreadIcon.tsx │ │ │ ├── UserAddIcon.tsx │ │ │ ├── UserIcon.tsx │ │ │ ├── checkIcon.tsx │ │ │ └── noData │ │ │ │ ├── NoDataChatSessions.tsx │ │ │ │ ├── NoDataFineTuneIcon.tsx │ │ │ │ ├── NoDataOfflineMessages.tsx │ │ │ │ ├── NoDataProjectIcon.tsx │ │ │ │ └── NoDataSubscribeIcon.tsx │ │ ├── Logo │ │ │ └── Logo.tsx │ │ ├── MediaListItem │ │ │ ├── MediaListItem.module.scss │ │ │ └── MediaListItem.tsx │ │ ├── OfflineMessages │ │ │ ├── OfflineChatListItem.tsx │ │ │ ├── OfflineMessageWindow.tsx │ │ │ └── OfflineMessagesList.tsx │ │ ├── Pricing │ │ │ ├── FreeComponent.tsx │ │ │ └── PricingCard.tsx │ │ ├── PrivateRoute │ │ │ └── PrivateRoute.tsx │ │ └── SectionTitle │ │ │ ├── SectionTitle.module.scss │ │ │ └── SectionTitle.tsx │ ├── config.ts │ ├── containers │ │ ├── AddTrainingData │ │ │ ├── AddTrainingData.module.scss │ │ │ └── AddTrainingData.tsx │ │ ├── AddTrainingDataForm │ │ │ ├── AddTrainingDataForm.module.scss │ │ │ └── AddTrainingDataForm.tsx │ │ ├── App │ │ │ ├── App.module.scss │ │ │ └── App.tsx │ │ ├── AppBase │ │ │ └── AppBase.tsx │ │ ├── ChatBotLauncher │ │ │ ├── ChatBotLauncher.module.scss │ │ │ └── ChatBotLauncher.tsx │ │ ├── ChatBotProductSetup │ │ │ ├── ChatBotProductSetup.module.scss │ │ │ └── ChatBotProductSetup.tsx │ │ ├── ChatBotsCustomize │ │ │ ├── ChatBotsCustomize.module.scss │ │ │ └── ChatBotsCustomize.tsx │ │ ├── ChatSessions │ │ │ ├── ChatSessions.module.scss │ │ │ ├── ChatSessions.tsx │ │ │ └── ChatSessionsNew.tsx │ │ ├── ChatbotList │ │ │ ├── ChatbotList.module.scss │ │ │ └── ChatbotList.tsx │ │ ├── CreateChatBots │ │ │ ├── CreateChatBots.module.scss │ │ │ └── CreateChatBots.tsx │ │ ├── CustomDomain │ │ │ ├── CustomDomain.module.scss │ │ │ └── CustomDomain.tsx │ │ ├── DemoChatbots │ │ │ ├── DealsList.module.scss │ │ │ └── DemoChatbots.tsx │ │ ├── EditChatbot │ │ │ ├── EditChatbot.module.scss │ │ │ └── EditChatbot.tsx │ │ ├── Integrations │ │ │ └── Integrations.tsx │ │ ├── Login │ │ │ ├── Login.module.scss │ │ │ └── Login.tsx │ │ ├── LoginWithGoogle │ │ │ └── LoginWithGoogle.tsx │ │ ├── MemberAddModal │ │ │ ├── MemberAddModal.module.scss │ │ │ └── MemberAddModal.tsx │ │ ├── Members │ │ │ ├── Members.module.scss │ │ │ └── Members.tsx │ │ ├── OfflineMessages │ │ │ ├── OfflineMessages.module.scss │ │ │ ├── OfflineMessages.tsx │ │ │ └── OfflineMessagesNew.tsx │ │ ├── Settings │ │ │ ├── Settings.module.scss │ │ │ └── Settings.tsx │ │ ├── SettingsGeneral │ │ │ ├── SettingsGeneral.module.scss │ │ │ └── SettingsGeneral.tsx │ │ ├── SettingsSubscription │ │ │ ├── SettingsSubscription.module.scss │ │ │ └── SettingsSubscription.tsx │ │ └── SignUp │ │ │ ├── SignUp.module.scss │ │ │ └── SignUp.tsx │ ├── index.tsx │ ├── logo.svg │ ├── providers │ │ └── providers.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── serviceWorker.ts │ ├── services │ │ ├── SocketService.ts │ │ ├── appConfig.ts │ │ ├── authServices.ts │ │ ├── commonServices.ts │ │ ├── knowledgebaseService.ts │ │ ├── productServices.ts │ │ └── userServices.ts │ ├── setupTests.ts │ ├── test-utils.tsx │ ├── theme │ │ ├── markdownTheme.tsx │ │ └── theme.ts │ ├── types │ │ ├── knowledgebase.type.ts │ │ ├── subscription.type.ts │ │ └── types.ts │ ├── utils │ │ ├── LauncherIconSVGs.tsx │ │ ├── authUtils.ts │ │ └── commonUtils.ts │ └── widgets │ │ └── Paginator │ │ ├── Paginator.module.scss │ │ └── Paginator.tsx └── tsconfig.json ├── license.md ├── migrations ├── .gitignore ├── migrate-mongo-config.js ├── migrations │ ├── 20230329063540-add-chunks-status-field.js │ ├── 20230329064051-migrate-embeddings-to-separate-docs.js │ ├── 20230329075104-add-chunks-default-type-field.js │ ├── 20230329172112-rename-kb_embeddings.js │ ├── 20230330071210-construct-kb-datastore-for-existing-chunks.js │ ├── 20230330110846-drop-website-urls-from-knowledgebase.js │ ├── 20230331084431-add-datastore-default-status-field.js │ ├── 20230331091620-add-embedding-type-field.js │ ├── 20240226161058-invite_user.js │ └── 20240228154157-invite_user_email.js ├── package.json └── yarn.lock ├── nest-cli.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── auth.controller.ts │ ├── auth.dto.ts │ ├── auth.module.ts │ ├── auth.service.ts │ ├── google-auth.ts │ ├── guards │ │ ├── apikey-auth.guard.ts │ │ ├── jwt-auth.guard.ts │ │ ├── local-auth.guard.ts │ │ ├── public.guard.ts │ │ └── role.enum.ts │ ├── strategies │ │ ├── apikey.strategy.ts │ │ ├── jwt.strategy.ts │ │ └── local.strategy.ts │ └── types │ │ ├── jwt-types.dto.ts │ │ └── role.enum.ts ├── common │ ├── @types │ │ └── nest.types.ts │ ├── celery │ │ └── celery-client.module.ts │ ├── config │ │ ├── appConfig.module.ts │ │ ├── appConfig.service.ts │ │ └── configuration.ts │ ├── custom-class-validators.ts │ ├── decorators │ │ └── apikey.decorator.ts │ ├── email │ │ ├── email.module.ts │ │ └── email.service.ts │ ├── local-flie-interceptor.ts │ ├── max-job-queue.ts │ ├── mongo │ │ └── mongo.module.ts │ ├── redis-io.adaptor.ts │ ├── redis │ │ └── redis.module.ts │ ├── sentry │ │ ├── sentry.interceptor.ts │ │ ├── sentry.module.ts │ │ └── sentry.service.ts │ └── utils.ts ├── crawler.main.ts ├── importers │ ├── chunker.spec.ts │ ├── chunker.ts │ ├── crawler │ │ ├── crawlee │ │ │ ├── cheerio-crawler.ts │ │ │ ├── crawlee-crawler.ts │ │ │ ├── crawler.types.ts │ │ │ └── playwright-crawler.ts │ │ ├── crawler.service.ts │ │ └── readability │ │ │ ├── readability.ts │ │ │ └── readability.types.ts │ ├── importers.controller.ts │ ├── importers.dto.ts │ ├── importers.module.ts │ ├── inscriptis │ │ └── inscriptis-importer.service.ts │ ├── pdf │ │ └── pdf-importer.service.ts │ └── textract │ │ └── textract-importer.service.ts ├── knowledgebase │ ├── chatbot │ │ ├── chatbot.controller.ts │ │ ├── chatbot.dto.ts │ │ ├── chatbot.service.ts │ │ ├── openaiChatbot.constant.ts │ │ ├── openaiChatbotService.spec.ts │ │ └── openaiChatbotService.ts │ ├── custom-key.service.ts │ ├── datastore.service.ts │ ├── knowledgebase-db.service.ts │ ├── knowledgebase-utils.ts │ ├── knowledgebase.controller.ts │ ├── knowledgebase.dto.ts │ ├── knowledgebase.module.ts │ ├── knowledgebase.schema.ts │ ├── knowledgebase.service.spec.ts │ ├── knowledgebase.service.ts │ ├── offline-msg │ │ ├── offline-msg.controller.ts │ │ ├── offline-msg.dto.ts │ │ ├── offline-msg.schema.ts │ │ └── offline-msg.service.ts │ ├── prompt │ │ ├── prompt.controller.ts │ │ └── prompt.service.ts │ └── websocketchat.gateway.ts ├── main.ts ├── openai │ ├── openai.module.ts │ └── openai.service.ts ├── public-apis │ └── public-apis.module.ts ├── repl.ts ├── slack │ ├── slack-bolt.middleware.ts │ ├── slack-token.service.ts │ ├── slack.module.ts │ └── slackbot.service.ts ├── subscription │ ├── lemon-squeezy.controller.ts │ ├── lemon-squeezy.types.ts │ ├── subscription-plan.service.ts │ ├── subscription.const.ts │ ├── subscription.module.ts │ └── subscription.service.ts ├── task │ ├── task.module.ts │ ├── task.schema.ts │ └── task.service.ts ├── user │ ├── apikey │ │ ├── apikey.controller.ts │ │ ├── apikey.dto.ts │ │ └── apikey.service.ts │ ├── user.controller.ts │ ├── user.dto.ts │ ├── user.module.ts │ ├── user.schema.ts │ └── user.service.ts └── webhook │ ├── webhook.controller.ts │ ├── webhook.dto.ts │ ├── webhook.module.ts │ ├── webhook.service.ts │ └── webhook.types.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json ├── widget ├── .dockerignore ├── .env.development ├── .env.docker ├── .env.sample ├── .gitignore ├── .htmlnanorc ├── Dockerfile ├── app.css ├── index.html ├── nginx.conf ├── package-lock.json ├── package.json ├── test-chatbot.html └── webwhiz-sdk.js ├── workers ├── .dockerignore ├── .env.docker ├── .env.sample ├── .gitignore ├── .vscode │ └── settings.json ├── Dockerfile ├── README.md ├── __init__.py ├── cosine_similarity.py ├── extract_text.py ├── requirements.txt └── worker.py └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.env.docker -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/.yml -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/CLA.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/.env.docker -------------------------------------------------------------------------------- /frontend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/.env.sample -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/Base.tsx -------------------------------------------------------------------------------- /frontend/src/ColorModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/ColorModeSwitcher.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChatBot/ChatBot.module.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | } 3 | -------------------------------------------------------------------------------- /frontend/src/components/ChatBot/ChatBot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatBot/ChatBot.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChatSessions/ChatBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatSessions/ChatBubble.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChatSessions/ChatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatSessions/ChatList.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChatSessions/ChatListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatSessions/ChatListItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChatSessions/ChatWindow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatSessions/ChatWindow.module.scss -------------------------------------------------------------------------------- /frontend/src/components/ChatSessions/ChatWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ChatSessions/ChatWindow.tsx -------------------------------------------------------------------------------- /frontend/src/components/ConfirmationModal/ConfirmationModal.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/components/ConfirmationModal/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/ConfirmationModal/ConfirmationModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/DefaultMediaImage/DefaultMediaImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/DefaultMediaImage/DefaultMediaImage.tsx -------------------------------------------------------------------------------- /frontend/src/components/FileDropzone/CustomDropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/FileDropzone/CustomDropzone.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon1.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon2.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon3.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon4.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ChatBotLauncherIcons/LauncherIcon5.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/CheckCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/CheckCircle.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/CheckCircleBlue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/CheckCircleBlue.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/CheckCircleBlueIconMd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/CheckCircleBlueIconMd.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/CheckedCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/CheckedCircle.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/DeleteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/DeleteIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/EditIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/Google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/Google.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/Icon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/Integrations/SlackIntegrationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/Integrations/SlackIntegrationIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/Integrations/ZapierIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/Integrations/ZapierIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/MailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/MailIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ReadIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ReadIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/Stripe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/Stripe.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/StripeColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/StripeColor.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/ThreeDotIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/ThreeDotIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/UnreadIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/UnreadIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/UserAddIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/UserAddIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/UserIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/checkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/checkIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/noData/NoDataChatSessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/noData/NoDataChatSessions.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/noData/NoDataFineTuneIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/noData/NoDataFineTuneIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/noData/NoDataOfflineMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/noData/NoDataOfflineMessages.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/noData/NoDataProjectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/noData/NoDataProjectIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Icons/noData/NoDataSubscribeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Icons/noData/NoDataSubscribeIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Logo/Logo.tsx -------------------------------------------------------------------------------- /frontend/src/components/MediaListItem/MediaListItem.module.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | } 3 | -------------------------------------------------------------------------------- /frontend/src/components/MediaListItem/MediaListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/MediaListItem/MediaListItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/OfflineMessages/OfflineChatListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/OfflineMessages/OfflineChatListItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/OfflineMessages/OfflineMessageWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/OfflineMessages/OfflineMessageWindow.tsx -------------------------------------------------------------------------------- /frontend/src/components/OfflineMessages/OfflineMessagesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/OfflineMessages/OfflineMessagesList.tsx -------------------------------------------------------------------------------- /frontend/src/components/Pricing/FreeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Pricing/FreeComponent.tsx -------------------------------------------------------------------------------- /frontend/src/components/Pricing/PricingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/Pricing/PricingCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/PrivateRoute/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/PrivateRoute/PrivateRoute.tsx -------------------------------------------------------------------------------- /frontend/src/components/SectionTitle/SectionTitle.module.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | } 3 | -------------------------------------------------------------------------------- /frontend/src/components/SectionTitle/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/components/SectionTitle/SectionTitle.tsx -------------------------------------------------------------------------------- /frontend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/config.ts -------------------------------------------------------------------------------- /frontend/src/containers/AddTrainingData/AddTrainingData.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/AddTrainingData/AddTrainingData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/AddTrainingData/AddTrainingData.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddTrainingDataForm/AddTrainingDataForm.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/AddTrainingDataForm/AddTrainingDataForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/AddTrainingDataForm/AddTrainingDataForm.tsx -------------------------------------------------------------------------------- /frontend/src/containers/App/App.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/App/App.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/App/App.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AppBase/AppBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/AppBase/AppBase.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotLauncher/ChatBotLauncher.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotLauncher/ChatBotLauncher.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotLauncher/ChatBotLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotLauncher/ChatBotLauncher.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotProductSetup/ChatBotProductSetup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotProductSetup/ChatBotProductSetup.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotProductSetup/ChatBotProductSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotProductSetup/ChatBotProductSetup.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotsCustomize/ChatBotsCustomize.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotsCustomize/ChatBotsCustomize.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/ChatBotsCustomize/ChatBotsCustomize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatBotsCustomize/ChatBotsCustomize.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatSessions/ChatSessions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatSessions/ChatSessions.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/ChatSessions/ChatSessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatSessions/ChatSessions.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatSessions/ChatSessionsNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatSessions/ChatSessionsNew.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChatbotList/ChatbotList.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/ChatbotList/ChatbotList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/ChatbotList/ChatbotList.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CreateChatBots/CreateChatBots.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/CreateChatBots/CreateChatBots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/CreateChatBots/CreateChatBots.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CustomDomain/CustomDomain.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/CustomDomain/CustomDomain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/CustomDomain/CustomDomain.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DemoChatbots/DealsList.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/DemoChatbots/DemoChatbots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/DemoChatbots/DemoChatbots.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditChatbot/EditChatbot.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/EditChatbot/EditChatbot.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/EditChatbot/EditChatbot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/EditChatbot/EditChatbot.tsx -------------------------------------------------------------------------------- /frontend/src/containers/Integrations/Integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Integrations/Integrations.tsx -------------------------------------------------------------------------------- /frontend/src/containers/Login/Login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Login/Login.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Login/Login.tsx -------------------------------------------------------------------------------- /frontend/src/containers/LoginWithGoogle/LoginWithGoogle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/LoginWithGoogle/LoginWithGoogle.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MemberAddModal/MemberAddModal.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/MemberAddModal/MemberAddModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/MemberAddModal/MemberAddModal.tsx -------------------------------------------------------------------------------- /frontend/src/containers/Members/Members.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/containers/Members/Members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Members/Members.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OfflineMessages/OfflineMessages.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/OfflineMessages/OfflineMessages.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/OfflineMessages/OfflineMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/OfflineMessages/OfflineMessages.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OfflineMessages/OfflineMessagesNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/OfflineMessages/OfflineMessagesNew.tsx -------------------------------------------------------------------------------- /frontend/src/containers/Settings/Settings.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Settings/Settings.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/Settings/Settings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SettingsGeneral/SettingsGeneral.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SettingsGeneral/SettingsGeneral.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/SettingsGeneral/SettingsGeneral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SettingsGeneral/SettingsGeneral.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SettingsSubscription/SettingsSubscription.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SettingsSubscription/SettingsSubscription.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/SettingsSubscription/SettingsSubscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SettingsSubscription/SettingsSubscription.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SignUp/SignUp.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SignUp/SignUp.module.scss -------------------------------------------------------------------------------- /frontend/src/containers/SignUp/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/containers/SignUp/SignUp.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/providers/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/providers/providers.tsx -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/serviceWorker.ts -------------------------------------------------------------------------------- /frontend/src/services/SocketService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/SocketService.ts -------------------------------------------------------------------------------- /frontend/src/services/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/appConfig.ts -------------------------------------------------------------------------------- /frontend/src/services/authServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/authServices.ts -------------------------------------------------------------------------------- /frontend/src/services/commonServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/commonServices.ts -------------------------------------------------------------------------------- /frontend/src/services/knowledgebaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/knowledgebaseService.ts -------------------------------------------------------------------------------- /frontend/src/services/productServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/productServices.ts -------------------------------------------------------------------------------- /frontend/src/services/userServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/services/userServices.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/test-utils.tsx -------------------------------------------------------------------------------- /frontend/src/theme/markdownTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/theme/markdownTheme.tsx -------------------------------------------------------------------------------- /frontend/src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/theme/theme.ts -------------------------------------------------------------------------------- /frontend/src/types/knowledgebase.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/types/knowledgebase.type.ts -------------------------------------------------------------------------------- /frontend/src/types/subscription.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/types/subscription.type.ts -------------------------------------------------------------------------------- /frontend/src/types/types.ts: -------------------------------------------------------------------------------- 1 | export interface SignUp { 2 | token: string; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/utils/LauncherIconSVGs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/utils/LauncherIconSVGs.tsx -------------------------------------------------------------------------------- /frontend/src/utils/authUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/utils/authUtils.ts -------------------------------------------------------------------------------- /frontend/src/utils/commonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/utils/commonUtils.ts -------------------------------------------------------------------------------- /frontend/src/widgets/Paginator/Paginator.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/widgets/Paginator/Paginator.module.scss -------------------------------------------------------------------------------- /frontend/src/widgets/Paginator/Paginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/src/widgets/Paginator/Paginator.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/license.md -------------------------------------------------------------------------------- /migrations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/.gitignore -------------------------------------------------------------------------------- /migrations/migrate-mongo-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrate-mongo-config.js -------------------------------------------------------------------------------- /migrations/migrations/20230329063540-add-chunks-status-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230329063540-add-chunks-status-field.js -------------------------------------------------------------------------------- /migrations/migrations/20230329064051-migrate-embeddings-to-separate-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230329064051-migrate-embeddings-to-separate-docs.js -------------------------------------------------------------------------------- /migrations/migrations/20230329075104-add-chunks-default-type-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230329075104-add-chunks-default-type-field.js -------------------------------------------------------------------------------- /migrations/migrations/20230329172112-rename-kb_embeddings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230329172112-rename-kb_embeddings.js -------------------------------------------------------------------------------- /migrations/migrations/20230330071210-construct-kb-datastore-for-existing-chunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230330071210-construct-kb-datastore-for-existing-chunks.js -------------------------------------------------------------------------------- /migrations/migrations/20230330110846-drop-website-urls-from-knowledgebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230330110846-drop-website-urls-from-knowledgebase.js -------------------------------------------------------------------------------- /migrations/migrations/20230331084431-add-datastore-default-status-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230331084431-add-datastore-default-status-field.js -------------------------------------------------------------------------------- /migrations/migrations/20230331091620-add-embedding-type-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20230331091620-add-embedding-type-field.js -------------------------------------------------------------------------------- /migrations/migrations/20240226161058-invite_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20240226161058-invite_user.js -------------------------------------------------------------------------------- /migrations/migrations/20240228154157-invite_user_email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/migrations/20240228154157-invite_user_email.js -------------------------------------------------------------------------------- /migrations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/package.json -------------------------------------------------------------------------------- /migrations/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/migrations/yarn.lock -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/auth/auth.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/auth.dto.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/auth.service.ts -------------------------------------------------------------------------------- /src/auth/google-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/google-auth.ts -------------------------------------------------------------------------------- /src/auth/guards/apikey-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/guards/apikey-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/public.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/guards/public.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/guards/role.enum.ts -------------------------------------------------------------------------------- /src/auth/strategies/apikey.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/strategies/apikey.strategy.ts -------------------------------------------------------------------------------- /src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /src/auth/strategies/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/strategies/local.strategy.ts -------------------------------------------------------------------------------- /src/auth/types/jwt-types.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/types/jwt-types.dto.ts -------------------------------------------------------------------------------- /src/auth/types/role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/auth/types/role.enum.ts -------------------------------------------------------------------------------- /src/common/@types/nest.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/@types/nest.types.ts -------------------------------------------------------------------------------- /src/common/celery/celery-client.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/celery/celery-client.module.ts -------------------------------------------------------------------------------- /src/common/config/appConfig.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/config/appConfig.module.ts -------------------------------------------------------------------------------- /src/common/config/appConfig.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/config/appConfig.service.ts -------------------------------------------------------------------------------- /src/common/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/config/configuration.ts -------------------------------------------------------------------------------- /src/common/custom-class-validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/custom-class-validators.ts -------------------------------------------------------------------------------- /src/common/decorators/apikey.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/decorators/apikey.decorator.ts -------------------------------------------------------------------------------- /src/common/email/email.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/email/email.module.ts -------------------------------------------------------------------------------- /src/common/email/email.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/email/email.service.ts -------------------------------------------------------------------------------- /src/common/local-flie-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/local-flie-interceptor.ts -------------------------------------------------------------------------------- /src/common/max-job-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/max-job-queue.ts -------------------------------------------------------------------------------- /src/common/mongo/mongo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/mongo/mongo.module.ts -------------------------------------------------------------------------------- /src/common/redis-io.adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/redis-io.adaptor.ts -------------------------------------------------------------------------------- /src/common/redis/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/redis/redis.module.ts -------------------------------------------------------------------------------- /src/common/sentry/sentry.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/sentry/sentry.interceptor.ts -------------------------------------------------------------------------------- /src/common/sentry/sentry.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/sentry/sentry.module.ts -------------------------------------------------------------------------------- /src/common/sentry/sentry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/sentry/sentry.service.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/crawler.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/crawler.main.ts -------------------------------------------------------------------------------- /src/importers/chunker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/chunker.spec.ts -------------------------------------------------------------------------------- /src/importers/chunker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/chunker.ts -------------------------------------------------------------------------------- /src/importers/crawler/crawlee/cheerio-crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/crawlee/cheerio-crawler.ts -------------------------------------------------------------------------------- /src/importers/crawler/crawlee/crawlee-crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/crawlee/crawlee-crawler.ts -------------------------------------------------------------------------------- /src/importers/crawler/crawlee/crawler.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/crawlee/crawler.types.ts -------------------------------------------------------------------------------- /src/importers/crawler/crawlee/playwright-crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/crawlee/playwright-crawler.ts -------------------------------------------------------------------------------- /src/importers/crawler/crawler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/crawler.service.ts -------------------------------------------------------------------------------- /src/importers/crawler/readability/readability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/readability/readability.ts -------------------------------------------------------------------------------- /src/importers/crawler/readability/readability.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/crawler/readability/readability.types.ts -------------------------------------------------------------------------------- /src/importers/importers.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/importers.controller.ts -------------------------------------------------------------------------------- /src/importers/importers.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/importers.dto.ts -------------------------------------------------------------------------------- /src/importers/importers.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/importers.module.ts -------------------------------------------------------------------------------- /src/importers/inscriptis/inscriptis-importer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/inscriptis/inscriptis-importer.service.ts -------------------------------------------------------------------------------- /src/importers/pdf/pdf-importer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/pdf/pdf-importer.service.ts -------------------------------------------------------------------------------- /src/importers/textract/textract-importer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/importers/textract/textract-importer.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/chatbot.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/chatbot.controller.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/chatbot.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/chatbot.dto.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/chatbot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/chatbot.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/openaiChatbot.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/openaiChatbot.constant.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/openaiChatbotService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/openaiChatbotService.spec.ts -------------------------------------------------------------------------------- /src/knowledgebase/chatbot/openaiChatbotService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/chatbot/openaiChatbotService.ts -------------------------------------------------------------------------------- /src/knowledgebase/custom-key.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/custom-key.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/datastore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/datastore.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase-db.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase-db.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase-utils.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.controller.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.dto.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.module.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.schema.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.service.spec.ts -------------------------------------------------------------------------------- /src/knowledgebase/knowledgebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/knowledgebase.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/offline-msg/offline-msg.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/offline-msg/offline-msg.controller.ts -------------------------------------------------------------------------------- /src/knowledgebase/offline-msg/offline-msg.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/offline-msg/offline-msg.dto.ts -------------------------------------------------------------------------------- /src/knowledgebase/offline-msg/offline-msg.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/offline-msg/offline-msg.schema.ts -------------------------------------------------------------------------------- /src/knowledgebase/offline-msg/offline-msg.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/offline-msg/offline-msg.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/prompt/prompt.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/prompt/prompt.controller.ts -------------------------------------------------------------------------------- /src/knowledgebase/prompt/prompt.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/prompt/prompt.service.ts -------------------------------------------------------------------------------- /src/knowledgebase/websocketchat.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/knowledgebase/websocketchat.gateway.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/openai/openai.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/openai/openai.module.ts -------------------------------------------------------------------------------- /src/openai/openai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/openai/openai.service.ts -------------------------------------------------------------------------------- /src/public-apis/public-apis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/public-apis/public-apis.module.ts -------------------------------------------------------------------------------- /src/repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/repl.ts -------------------------------------------------------------------------------- /src/slack/slack-bolt.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/slack/slack-bolt.middleware.ts -------------------------------------------------------------------------------- /src/slack/slack-token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/slack/slack-token.service.ts -------------------------------------------------------------------------------- /src/slack/slack.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/slack/slack.module.ts -------------------------------------------------------------------------------- /src/slack/slackbot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/slack/slackbot.service.ts -------------------------------------------------------------------------------- /src/subscription/lemon-squeezy.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/lemon-squeezy.controller.ts -------------------------------------------------------------------------------- /src/subscription/lemon-squeezy.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/lemon-squeezy.types.ts -------------------------------------------------------------------------------- /src/subscription/subscription-plan.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/subscription-plan.service.ts -------------------------------------------------------------------------------- /src/subscription/subscription.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/subscription.const.ts -------------------------------------------------------------------------------- /src/subscription/subscription.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/subscription.module.ts -------------------------------------------------------------------------------- /src/subscription/subscription.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/subscription/subscription.service.ts -------------------------------------------------------------------------------- /src/task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/task/task.module.ts -------------------------------------------------------------------------------- /src/task/task.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/task/task.schema.ts -------------------------------------------------------------------------------- /src/task/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/task/task.service.ts -------------------------------------------------------------------------------- /src/user/apikey/apikey.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/apikey/apikey.controller.ts -------------------------------------------------------------------------------- /src/user/apikey/apikey.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/apikey/apikey.dto.ts -------------------------------------------------------------------------------- /src/user/apikey/apikey.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/apikey/apikey.service.ts -------------------------------------------------------------------------------- /src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/user.controller.ts -------------------------------------------------------------------------------- /src/user/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/user.dto.ts -------------------------------------------------------------------------------- /src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/user.module.ts -------------------------------------------------------------------------------- /src/user/user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/user.schema.ts -------------------------------------------------------------------------------- /src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/user/user.service.ts -------------------------------------------------------------------------------- /src/webhook/webhook.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/webhook/webhook.controller.ts -------------------------------------------------------------------------------- /src/webhook/webhook.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/webhook/webhook.dto.ts -------------------------------------------------------------------------------- /src/webhook/webhook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/webhook/webhook.module.ts -------------------------------------------------------------------------------- /src/webhook/webhook.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/webhook/webhook.service.ts -------------------------------------------------------------------------------- /src/webhook/webhook.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/src/webhook/webhook.types.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/tsconfig.json -------------------------------------------------------------------------------- /widget/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/.dockerignore -------------------------------------------------------------------------------- /widget/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/.env.development -------------------------------------------------------------------------------- /widget/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/.env.docker -------------------------------------------------------------------------------- /widget/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/.env.sample -------------------------------------------------------------------------------- /widget/.gitignore: -------------------------------------------------------------------------------- 1 | .parcel-cache 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /widget/.htmlnanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/.htmlnanorc -------------------------------------------------------------------------------- /widget/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/Dockerfile -------------------------------------------------------------------------------- /widget/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/app.css -------------------------------------------------------------------------------- /widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/index.html -------------------------------------------------------------------------------- /widget/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/nginx.conf -------------------------------------------------------------------------------- /widget/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/package-lock.json -------------------------------------------------------------------------------- /widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/package.json -------------------------------------------------------------------------------- /widget/test-chatbot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/test-chatbot.html -------------------------------------------------------------------------------- /widget/webwhiz-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/widget/webwhiz-sdk.js -------------------------------------------------------------------------------- /workers/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/.dockerignore -------------------------------------------------------------------------------- /workers/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/.env.docker -------------------------------------------------------------------------------- /workers/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/.env.sample -------------------------------------------------------------------------------- /workers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/.gitignore -------------------------------------------------------------------------------- /workers/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/.vscode/settings.json -------------------------------------------------------------------------------- /workers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/Dockerfile -------------------------------------------------------------------------------- /workers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/README.md -------------------------------------------------------------------------------- /workers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/cosine_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/cosine_similarity.py -------------------------------------------------------------------------------- /workers/extract_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/extract_text.py -------------------------------------------------------------------------------- /workers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/requirements.txt -------------------------------------------------------------------------------- /workers/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/workers/worker.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webwhiz-ai/webwhiz/HEAD/yarn.lock --------------------------------------------------------------------------------