├── .DS_Store ├── .env.example ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── mongoSettings.xml ├── ssebowa.iml └── vcs.xml ├── LICENSE ├── README.md ├── api ├── .DS_Store ├── app │ ├── bingai.js │ ├── chatgpt-browser.js │ ├── clients │ │ ├── AnthropicClient.js │ │ ├── BaseClient.js │ │ ├── ChatGPTClient.js │ │ ├── GoogleClient.js │ │ ├── OpenAIClient.js │ │ ├── PluginsClient.js │ │ ├── TextStream.js │ │ ├── agents │ │ │ ├── CustomAgent │ │ │ │ ├── CustomAgent.js │ │ │ │ ├── initializeCustomAgent.js │ │ │ │ ├── instructions.js │ │ │ │ └── outputParser.js │ │ │ ├── Functions │ │ │ │ ├── FunctionsAgent.js │ │ │ │ ├── addToolDescriptions.js │ │ │ │ └── initializeFunctionsAgent.js │ │ │ └── index.js │ │ ├── callbacks │ │ │ ├── createStartHandler.js │ │ │ └── index.js │ │ ├── chains │ │ │ ├── index.js │ │ │ ├── predictNewSummary.js │ │ │ └── runTitleChain.js │ │ ├── document │ │ │ ├── index.js │ │ │ ├── tokenSplit.js │ │ │ └── tokenSplit.spec.js │ │ ├── index.js │ │ ├── llm │ │ │ ├── RunManager.js │ │ │ ├── createLLM.js │ │ │ └── index.js │ │ ├── memory │ │ │ ├── example.js │ │ │ ├── index.js │ │ │ ├── summaryBuffer.demo.js │ │ │ └── summaryBuffer.js │ │ ├── output_parsers │ │ │ ├── addImages.js │ │ │ ├── addImages.spec.js │ │ │ ├── handleOutputs.js │ │ │ └── index.js │ │ ├── prompts │ │ │ ├── formatGoogleInputs.js │ │ │ ├── formatGoogleInputs.spec.js │ │ │ ├── formatMessages.js │ │ │ ├── formatMessages.spec.js │ │ │ ├── handleInputs.js │ │ │ ├── index.js │ │ │ ├── instructions.js │ │ │ ├── summaryPrompts.js │ │ │ ├── titlePrompts.js │ │ │ └── truncateText.js │ │ ├── specs │ │ │ ├── AnthropicClient.test.js │ │ │ ├── BaseClient.test.js │ │ │ ├── FakeClient.js │ │ │ ├── OpenAIClient.test.js │ │ │ ├── OpenAIClient.tokens.js │ │ │ └── PluginsClient.test.js │ │ └── tools │ │ │ ├── .well-known │ │ │ ├── Ai_PDF.json │ │ │ ├── BrowserOp.json │ │ │ ├── Dr_Thoths_Tarot.json │ │ │ ├── DreamInterpreter.json │ │ │ ├── VoxScript.json │ │ │ ├── askyourpdf.json │ │ │ ├── drink_maestro.json │ │ │ ├── earthImagesAndVisualizations.json │ │ │ ├── has-issues │ │ │ │ ├── scholarly_graph_link.json │ │ │ │ └── web_pilot.json │ │ │ ├── image_prompt_enhancer.json │ │ │ ├── openapi │ │ │ │ ├── askyourpdf.yaml │ │ │ │ └── scholarai.yaml │ │ │ ├── qrCodes.json │ │ │ ├── scholarai.json │ │ │ ├── uberchord.json │ │ │ └── web_search.json │ │ │ ├── AzureAiSearch.js │ │ │ ├── CodeBrew.js │ │ │ ├── DALL-E.js │ │ │ ├── GoogleSearch.js │ │ │ ├── HumanTool.js │ │ │ ├── SelfReflection.js │ │ │ ├── StableDiffusion.js │ │ │ ├── Wolfram.js │ │ │ ├── dynamic │ │ │ ├── OpenAPIPlugin.js │ │ │ └── OpenAPIPlugin.spec.js │ │ │ ├── index.js │ │ │ ├── manifest.json │ │ │ ├── structured │ │ │ ├── AzureAISearch.js │ │ │ ├── ChatTool.js │ │ │ ├── CodeSherpa.js │ │ │ ├── CodeSherpaTools.js │ │ │ ├── DALLE3.js │ │ │ ├── E2BTools.js │ │ │ ├── StableDiffusion.js │ │ │ ├── TavilySearchResults.js │ │ │ ├── TraversaalSearch.js │ │ │ ├── Wolfram.js │ │ │ ├── extractionChain.js │ │ │ └── specs │ │ │ │ └── DALLE3.spec.js │ │ │ ├── util │ │ │ ├── addOpenAPISpecs.js │ │ │ ├── addOpenAPISpecs.spec.js │ │ │ ├── handleOpenAIErrors.js │ │ │ ├── handleTools.js │ │ │ ├── handleTools.test.js │ │ │ ├── index.js │ │ │ ├── loadSpecs.js │ │ │ ├── loadSpecs.spec.js │ │ │ └── loadToolSuite.js │ │ │ └── wolfram-guidelines.md │ ├── index.js │ └── titleConvoBing.js ├── cache │ ├── banViolation.js │ ├── banViolation.spec.js │ ├── clearPendingReq.js │ ├── getLogStores.js │ ├── index.js │ ├── keyvFiles.js │ ├── keyvMongo.js │ ├── keyvRedis.js │ ├── logViolation.js │ └── redis.js ├── config │ ├── index.js │ ├── meiliLogger.js │ ├── parsers.js │ ├── paths.js │ └── winston.js ├── jest.config.js ├── jsconfig.json ├── lib │ ├── db │ │ ├── connectDb.js │ │ ├── index.js │ │ └── indexSync.js │ └── utils │ │ ├── mergeSort.js │ │ ├── misc.js │ │ └── reduceHits.js ├── models │ ├── Action.js │ ├── Assistant.js │ ├── Balance.js │ ├── Config.js │ ├── Conversation.js │ ├── File.js │ ├── Key.js │ ├── Message.js │ ├── Preset.js │ ├── Prompt.js │ ├── Session.js │ ├── SsebowaConversation.js │ ├── SsebowaMessage.js │ ├── Transaction.js │ ├── User.js │ ├── checkBalance.js │ ├── index.js │ ├── plugins │ │ └── mongoMeili.js │ ├── schema │ │ ├── action.js │ │ ├── assistant.js │ │ ├── balance.js │ │ ├── convoSchema.js │ │ ├── defaults.js │ │ ├── fileSchema.js │ │ ├── key.js │ │ ├── messageSchema.js │ │ ├── pluginAuthSchema.js │ │ ├── presetSchema.js │ │ ├── ssebowaConversationSchema.js │ │ ├── ssebowaMessageSchema.js │ │ ├── tokenSchema.js │ │ ├── transaction.js │ │ └── userSchema.js │ ├── spendTokens.js │ ├── tx.js │ ├── tx.spec.js │ └── userMethods.js ├── package.json ├── server │ ├── controllers │ │ ├── AskController.js │ │ ├── AuthController.js │ │ ├── Balance.js │ │ ├── EditController.js │ │ ├── EndpointController.js │ │ ├── ErrorController.js │ │ ├── ModelController.js │ │ ├── OverrideController.js │ │ ├── PluginController.js │ │ ├── UserController.js │ │ └── auth │ │ │ ├── LoginController.js │ │ │ └── LogoutController.js │ ├── index.js │ ├── middleware │ │ ├── abortControllers.js │ │ ├── abortMiddleware.js │ │ ├── abortRun.js │ │ ├── buildEndpointOption.js │ │ ├── checkBan.js │ │ ├── concurrentLimiter.js │ │ ├── denyRequest.js │ │ ├── index.js │ │ ├── loginLimiter.js │ │ ├── messageLimiters.js │ │ ├── moderateText.js │ │ ├── noIndex.js │ │ ├── registerLimiter.js │ │ ├── requireJwtAuth.js │ │ ├── requireLocalAuth.js │ │ ├── setHeaders.js │ │ ├── uaParser.js │ │ ├── uploadLimiters.js │ │ ├── validateEndpoint.js │ │ ├── validateMessageReq.js │ │ ├── validateModel.js │ │ └── validateRegistration.js │ ├── routes │ │ ├── __tests__ │ │ │ └── config.spec.js │ │ ├── ask │ │ │ ├── addToCache.js │ │ │ ├── anthropic.js │ │ │ ├── askChatGPTBrowser.js │ │ │ ├── bingAI.js │ │ │ ├── custom.js │ │ │ ├── google.js │ │ │ ├── gptPlugins.js │ │ │ ├── index.js │ │ │ └── openAI.js │ │ ├── assistants │ │ │ ├── actions.js │ │ │ ├── assistants.js │ │ │ ├── chat.js │ │ │ ├── index.js │ │ │ └── tools.js │ │ ├── auth.js │ │ ├── balance.js │ │ ├── config.js │ │ ├── convos.js │ │ ├── edit │ │ │ ├── anthropic.js │ │ │ ├── custom.js │ │ │ ├── google.js │ │ │ ├── gptPlugins.js │ │ │ ├── index.js │ │ │ └── openAI.js │ │ ├── endpoints.js │ │ ├── files │ │ │ ├── avatar.js │ │ │ ├── files.js │ │ │ ├── images.js │ │ │ ├── index.js │ │ │ └── multer.js │ │ ├── index.js │ │ ├── keys.js │ │ ├── messages.js │ │ ├── models.js │ │ ├── oauth.js │ │ ├── plugins.js │ │ ├── presets.js │ │ ├── prompts.js │ │ ├── search.js │ │ ├── ssebowa.js │ │ ├── tokenizer.js │ │ ├── types │ │ │ └── assistants.js │ │ └── user.js │ ├── services │ │ ├── ActionService.js │ │ ├── AppService.js │ │ ├── AppService.spec.js │ │ ├── AssistantService.js │ │ ├── AuthService.js │ │ ├── AuthService.spec.js │ │ ├── Config │ │ │ ├── EndpointService.js │ │ │ ├── getCustomConfig.js │ │ │ ├── handleRateLimits.js │ │ │ ├── index.js │ │ │ ├── loadAsyncEndpoints.js │ │ │ ├── loadConfigEndpoints.js │ │ │ ├── loadConfigModels.js │ │ │ ├── loadConfigModels.spec.js │ │ │ ├── loadCustomConfig.js │ │ │ ├── loadDefaultEConfig.js │ │ │ ├── loadDefaultModels.js │ │ │ └── loadOverrideConfig.js │ │ ├── Endpoints │ │ │ ├── anthropic │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ └── initializeClient.js │ │ │ ├── assistant │ │ │ │ ├── addTitle.js │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ ├── initializeClient.js │ │ │ │ └── initializeClient.spec.js │ │ │ ├── custom │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ └── initializeClient.js │ │ │ ├── google │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ ├── initializeClient.js │ │ │ │ └── initializeClient.spec.js │ │ │ ├── gptPlugins │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ ├── initializeClient.js │ │ │ │ └── initializeClient.spec.js │ │ │ └── openAI │ │ │ │ ├── addTitle.js │ │ │ │ ├── buildOptions.js │ │ │ │ ├── index.js │ │ │ │ ├── initializeClient.js │ │ │ │ └── initializeClient.spec.js │ │ ├── Files │ │ │ ├── Firebase │ │ │ │ ├── crud.js │ │ │ │ ├── images.js │ │ │ │ ├── index.js │ │ │ │ └── initialize.js │ │ │ ├── Local │ │ │ │ ├── crud.js │ │ │ │ ├── images.js │ │ │ │ └── index.js │ │ │ ├── OpenAI │ │ │ │ ├── crud.js │ │ │ │ └── index.js │ │ │ ├── images │ │ │ │ ├── avatar.js │ │ │ │ ├── convert.js │ │ │ │ ├── encode.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ └── resize.js │ │ │ ├── process.js │ │ │ └── strategies.js │ │ ├── ModelService.js │ │ ├── ModelService.spec.js │ │ ├── PluginService.js │ │ ├── Runs │ │ │ ├── RunManager.js │ │ │ ├── handle.js │ │ │ ├── index.js │ │ │ └── methods.js │ │ ├── Threads │ │ │ ├── index.js │ │ │ └── manage.js │ │ ├── ToolService.js │ │ ├── UserService.js │ │ └── signPayload.js │ ├── socialLogins.js │ └── utils │ │ ├── citations.js │ │ ├── countTokens.js │ │ ├── crypto.js │ │ ├── emails │ │ ├── passwordReset.handlebars │ │ └── requestPasswordReset.handlebars │ │ ├── files.js │ │ ├── handleText.js │ │ ├── handleText.spec.js │ │ ├── index.js │ │ ├── math.js │ │ ├── queue.js │ │ ├── removePorts.js │ │ ├── sendEmail.js │ │ └── streamResponse.js ├── strategies │ ├── discordStrategy.js │ ├── facebookStrategy.js │ ├── githubStrategy.js │ ├── googleStrategy.js │ ├── index.js │ ├── joseStrategy.js │ ├── jwtStrategy.js │ ├── localStrategy.js │ ├── openidStrategy.js │ ├── process.js │ ├── validators.js │ └── validators.spec.js ├── test │ ├── .env.test.example │ ├── __mocks__ │ │ ├── KeyvMongo.js │ │ ├── auth.mock.json │ │ ├── fetchEventSource.js │ │ └── logger.js │ └── jestSetup.js ├── typedefs.js └── utils │ ├── LoggingSystem.js │ ├── azureUtils.js │ ├── azureUtils.spec.js │ ├── debug.js │ ├── extractBaseURL.js │ ├── extractBaseURL.spec.js │ ├── findMessageContent.js │ ├── index.js │ ├── loadYaml.js │ ├── logger.js │ ├── tokens.js │ └── tokens.spec.js ├── bun.lockb ├── client ├── .DS_Store ├── babel.config.cjs ├── index.html ├── jest.config.cjs ├── nginx.conf ├── package.json ├── postcss.config.cjs ├── public │ ├── .DS_Store │ ├── assets │ │ ├── anyscale.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── bingai-jb.png │ │ ├── bingai.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.png │ │ ├── fireworks.png │ │ ├── google-palm.svg │ │ ├── groq.png │ │ ├── mistral.png │ │ ├── ollama.png │ │ ├── openrouter.png │ │ ├── perplexity.png │ │ ├── ssebowaIcon.png │ │ ├── together.png │ │ ├── usericon.png │ │ └── web-browser.svg │ └── fonts │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── roboto-mono-latin-400-italic.woff2 │ │ ├── roboto-mono-latin-400-normal.woff2 │ │ └── roboto-mono-latin-700-normal.woff2 ├── src │ ├── .DS_Store │ ├── App.jsx │ ├── Providers │ │ ├── AssistantsContext.tsx │ │ ├── AssistantsMapContext.tsx │ │ ├── ChatContext.tsx │ │ ├── FileMapContext.tsx │ │ ├── ToastContext.tsx │ │ └── index.ts │ ├── common │ │ ├── assistants-types.ts │ │ ├── index.ts │ │ └── types.ts │ ├── components │ │ ├── Auth │ │ │ ├── ApiErrorWatcher.tsx │ │ │ ├── Login.tsx │ │ │ ├── LoginForm.tsx │ │ │ ├── Registration.tsx │ │ │ ├── RequestPasswordReset.tsx │ │ │ ├── ResetPassword.tsx │ │ │ ├── SocialButton.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Login.spec.tsx │ │ │ │ ├── LoginForm.spec.tsx │ │ │ │ └── Registration.spec.tsx │ │ │ └── index.ts │ │ ├── Chat │ │ │ ├── ChatView.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Input │ │ │ │ ├── ChatForm.tsx │ │ │ │ ├── Files │ │ │ │ │ ├── AttachFile.tsx │ │ │ │ │ ├── DragDropOverlay.tsx │ │ │ │ │ ├── FileContainer.tsx │ │ │ │ │ ├── FilePreview.tsx │ │ │ │ │ ├── FileRow.tsx │ │ │ │ │ ├── FilesView.tsx │ │ │ │ │ ├── Image.tsx │ │ │ │ │ ├── ImagePreview.tsx │ │ │ │ │ ├── ProgressCircle.tsx │ │ │ │ │ ├── RemoveFile.tsx │ │ │ │ │ └── Table │ │ │ │ │ │ ├── Columns.tsx │ │ │ │ │ │ ├── DataTable.tsx │ │ │ │ │ │ ├── SortFilterHeader.tsx │ │ │ │ │ │ ├── TemplateTable.tsx │ │ │ │ │ │ ├── fakeData.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── GenerationButtons.tsx │ │ │ │ ├── HeaderOptions.tsx │ │ │ │ ├── OptionsBar.tsx │ │ │ │ ├── OptionsPopover.tsx │ │ │ │ ├── PopoverButtons.tsx │ │ │ │ ├── SearchFileBubbleChat.tsx │ │ │ │ ├── SendButton.tsx │ │ │ │ ├── StopButton.tsx │ │ │ │ └── Textarea.tsx │ │ │ ├── Landing.tsx │ │ │ ├── Menus │ │ │ │ ├── Endpoints │ │ │ │ │ ├── Icons.tsx │ │ │ │ │ ├── MenuItem.tsx │ │ │ │ │ ├── MenuItems.tsx │ │ │ │ │ └── UnknownIcon.tsx │ │ │ │ ├── EndpointsMenu.tsx │ │ │ │ ├── HeaderNewChat.tsx │ │ │ │ ├── Presets │ │ │ │ │ ├── EditPresetDialog.tsx │ │ │ │ │ ├── PresetItems.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PresetsMenu.tsx │ │ │ │ ├── UI │ │ │ │ │ ├── MenuItem.tsx │ │ │ │ │ ├── MenuSeparator.tsx │ │ │ │ │ ├── TitleButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── Messages │ │ │ │ ├── Content │ │ │ │ │ ├── ActionIcon.tsx │ │ │ │ │ ├── CancelledIcon.tsx │ │ │ │ │ ├── CodeAnalyze.tsx │ │ │ │ │ ├── Container.tsx │ │ │ │ │ ├── ContentParts.tsx │ │ │ │ │ ├── DialogImage.tsx │ │ │ │ │ ├── EditMessage.tsx │ │ │ │ │ ├── FinishedIcon.tsx │ │ │ │ │ ├── Image.tsx │ │ │ │ │ ├── ImageGen.tsx │ │ │ │ │ ├── InProgressCall.tsx │ │ │ │ │ ├── Markdown.tsx │ │ │ │ │ ├── MarkdownLite.tsx │ │ │ │ │ ├── MessageContent.tsx │ │ │ │ │ ├── Part.tsx │ │ │ │ │ ├── ProgressCircle.tsx │ │ │ │ │ ├── ProgressText.tsx │ │ │ │ │ ├── RetrievalCall.tsx │ │ │ │ │ ├── RetrievalIcon.tsx │ │ │ │ │ ├── ToolCall.tsx │ │ │ │ │ ├── ToolPopover.tsx │ │ │ │ │ └── WrenchIcon.tsx │ │ │ │ ├── HoverButtons.tsx │ │ │ │ ├── Message.tsx │ │ │ │ ├── MessageCard.tsx │ │ │ │ ├── MessageParts.tsx │ │ │ │ ├── MessagesView.tsx │ │ │ │ ├── MultiMessage.tsx │ │ │ │ ├── SiblingSwitch.tsx │ │ │ │ └── SubRow.tsx │ │ │ ├── Presentation.tsx │ │ │ └── SearchView.tsx │ │ ├── Conversations │ │ │ ├── Conversation.jsx │ │ │ ├── Conversations.tsx │ │ │ ├── Convo.tsx │ │ │ ├── DeleteButton.tsx │ │ │ ├── Pages.tsx │ │ │ ├── RenameButton.tsx │ │ │ └── index.ts │ │ ├── Endpoints │ │ │ ├── EditPresetDialog.tsx │ │ │ ├── EndpointOptionsDialog.tsx │ │ │ ├── EndpointOptionsPopover.tsx │ │ │ ├── EndpointSettings.tsx │ │ │ ├── Icon.tsx │ │ │ ├── MinimalIcon.tsx │ │ │ ├── PopoverButtons.tsx │ │ │ ├── SaveAsPresetDialog.tsx │ │ │ ├── Settings │ │ │ │ ├── AgentSettings.tsx │ │ │ │ ├── Anthropic.tsx │ │ │ │ ├── Assistants.tsx │ │ │ │ ├── BingAI.tsx │ │ │ │ ├── Examples.tsx │ │ │ │ ├── Google.tsx │ │ │ │ ├── MultiView │ │ │ │ │ ├── Google.tsx │ │ │ │ │ ├── GoogleSettings.tsx │ │ │ │ │ ├── PluginSettings.tsx │ │ │ │ │ ├── Plugins.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── OpenAI.tsx │ │ │ │ ├── OptionHover.tsx │ │ │ │ ├── Plugins.tsx │ │ │ │ ├── index.ts │ │ │ │ └── settings.ts │ │ │ └── index.ts │ │ ├── Input │ │ │ ├── EndpointMenu │ │ │ │ ├── EndpointItem.tsx │ │ │ │ ├── EndpointItems.tsx │ │ │ │ ├── EndpointMenu.jsx │ │ │ │ ├── FileUpload.tsx │ │ │ │ ├── PresetItem.tsx │ │ │ │ ├── PresetItems.tsx │ │ │ │ └── index.ts │ │ │ ├── Footer.tsx │ │ │ ├── GenerationButtons.tsx │ │ │ ├── Generations │ │ │ │ ├── Button.tsx │ │ │ │ ├── Continue.tsx │ │ │ │ ├── GenerationButtons.tsx │ │ │ │ ├── Regenerate.tsx │ │ │ │ ├── Stop.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Button.spec.tsx │ │ │ │ │ ├── Continue.spec.tsx │ │ │ │ │ ├── Regenerate.spec.tsx │ │ │ │ │ └── Stop.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── ModelSelect │ │ │ │ ├── Anthropic.tsx │ │ │ │ ├── BingAI.tsx │ │ │ │ ├── ChatGPT.tsx │ │ │ │ ├── Google.tsx │ │ │ │ ├── ModelSelect.tsx │ │ │ │ ├── OpenAI.tsx │ │ │ │ ├── Plugins.tsx │ │ │ │ ├── PluginsByIndex.tsx │ │ │ │ ├── index.ts │ │ │ │ └── options.ts │ │ │ ├── OptionsBar.tsx │ │ │ ├── SetKeyDialog │ │ │ │ ├── CustomEndpoint.tsx │ │ │ │ ├── GoogleConfig.tsx │ │ │ │ ├── HelpText.tsx │ │ │ │ ├── InputWithLabel.tsx │ │ │ │ ├── OpenAIConfig.tsx │ │ │ │ ├── OtherConfig.tsx │ │ │ │ ├── SetKeyDialog.tsx │ │ │ │ └── index.ts │ │ │ ├── SubmitButton.tsx │ │ │ └── TextChat.tsx │ │ ├── Messages │ │ │ ├── Content │ │ │ │ ├── CodeBlock.tsx │ │ │ │ ├── Container.tsx │ │ │ │ ├── EditMessage.tsx │ │ │ │ ├── Error.tsx │ │ │ │ ├── Markdown.tsx │ │ │ │ ├── MessageContent.tsx │ │ │ │ ├── Plugin.tsx │ │ │ │ ├── SubRow.tsx │ │ │ │ └── index.ts │ │ │ ├── HoverButtons.tsx │ │ │ ├── Message.tsx │ │ │ ├── MessageHeader.tsx │ │ │ ├── Messages.tsx │ │ │ ├── MultiMessage.tsx │ │ │ ├── ScrollToBottom.tsx │ │ │ └── SiblingSwitch.tsx │ │ ├── Nav │ │ │ ├── ClearConvos.tsx │ │ │ ├── ExportConversation │ │ │ │ ├── ExportConversation.jsx │ │ │ │ ├── ExportModal.jsx │ │ │ │ └── index.ts │ │ │ ├── Logout.tsx │ │ │ ├── MobileNav.tsx │ │ │ ├── Nav.tsx │ │ │ ├── NavLink.tsx │ │ │ ├── NavLinks.tsx │ │ │ ├── NavToggle.tsx │ │ │ ├── NewChat.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── Settings.tsx │ │ │ ├── SettingsTabs │ │ │ │ ├── Account │ │ │ │ │ ├── Account.tsx │ │ │ │ │ └── Avatar.tsx │ │ │ │ ├── Beta │ │ │ │ │ ├── Beta.tsx │ │ │ │ │ ├── LaTeXParsing.tsx │ │ │ │ │ └── ModularChat.tsx │ │ │ │ ├── DangerButton.tsx │ │ │ │ ├── Data │ │ │ │ │ └── Data.tsx │ │ │ │ ├── General │ │ │ │ │ ├── AutoScrollSwitch.spec.tsx │ │ │ │ │ ├── AutoScrollSwitch.tsx │ │ │ │ │ ├── ClearChatsButton.spec.tsx │ │ │ │ │ ├── General.tsx │ │ │ │ │ ├── HideSidePanelSwitch.tsx │ │ │ │ │ ├── LangSelector.spec.tsx │ │ │ │ │ └── ThemeSelector.spec.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Plugins │ │ │ ├── Store │ │ │ │ ├── PluginAuthForm.tsx │ │ │ │ ├── PluginPagination.tsx │ │ │ │ ├── PluginStoreDialog.tsx │ │ │ │ ├── PluginStoreItem.tsx │ │ │ │ ├── PluginStoreLinkButton.tsx │ │ │ │ ├── PluginTooltip.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── PluginAuthForm.spec.tsx │ │ │ │ │ ├── PluginPagination.spec.tsx │ │ │ │ │ ├── PluginStoreDialog.spec.tsx │ │ │ │ │ └── PluginStoreItem.spec.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.css │ │ │ └── index.ts │ │ ├── SidePanel │ │ │ ├── Builder │ │ │ │ ├── ActionsAuth.tsx │ │ │ │ ├── ActionsInput.tsx │ │ │ │ ├── ActionsPanel.tsx │ │ │ │ ├── ActionsTable │ │ │ │ │ ├── Columns.tsx │ │ │ │ │ ├── Table.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AssistantAction.tsx │ │ │ │ ├── AssistantAvatar.tsx │ │ │ │ ├── AssistantPanel.tsx │ │ │ │ ├── AssistantSelect.tsx │ │ │ │ ├── AssistantTool.tsx │ │ │ │ ├── ContextButton.tsx │ │ │ │ ├── Images.tsx │ │ │ │ ├── Knowledge.tsx │ │ │ │ └── PanelSwitch.tsx │ │ │ ├── Files │ │ │ │ ├── Panel.tsx │ │ │ │ ├── PanelColumns.tsx │ │ │ │ ├── PanelFileCell.tsx │ │ │ │ └── PanelTable.tsx │ │ │ ├── Nav.tsx │ │ │ ├── SidePanel.tsx │ │ │ ├── Switcher.tsx │ │ │ ├── data.tsx │ │ │ └── index.ts │ │ ├── Tools │ │ │ ├── ToolItem.tsx │ │ │ ├── ToolSelectDialog.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── svg │ │ │ ├── AnthropicIcon.tsx │ │ │ ├── AnthropicMinimalIcon.tsx │ │ │ ├── AssistantIcon.tsx │ │ │ ├── AttachmentIcon.tsx │ │ │ ├── AzureMinimalIcon.tsx │ │ │ ├── BingAIMinimalIcon.tsx │ │ │ ├── BingChatIcon.tsx │ │ │ ├── BingIcon.tsx │ │ │ ├── BingIconBackup.tsx │ │ │ ├── BingJbIcon.tsx │ │ │ ├── BirthdayIcon.tsx │ │ │ ├── Blocks.tsx │ │ │ ├── CautionIcon.tsx │ │ │ ├── ChatGPTMinimalIcon.tsx │ │ │ ├── ChatIcon.tsx │ │ │ ├── CheckMark.tsx │ │ │ ├── Clipboard.tsx │ │ │ ├── CodeyIcon.tsx │ │ │ ├── ContinueIcon.tsx │ │ │ ├── ConvoIcon.tsx │ │ │ ├── CrossIcon.tsx │ │ │ ├── CustomMinimalIcon.tsx │ │ │ ├── DarkModeIcon.tsx │ │ │ ├── DataIcon.tsx │ │ │ ├── DiscordIcon.tsx │ │ │ ├── DislikeIcon.tsx │ │ │ ├── DotsIcon.tsx │ │ │ ├── EditIcon.tsx │ │ │ ├── ExperimentIcon.tsx │ │ │ ├── FacebookIcon.tsx │ │ │ ├── Files │ │ │ │ ├── CodePaths.tsx │ │ │ │ ├── FileIcon.tsx │ │ │ │ ├── FilePaths.tsx │ │ │ │ ├── SheetPaths.tsx │ │ │ │ └── TextPaths.tsx │ │ │ ├── GPTIcon.tsx │ │ │ ├── GearIcon.tsx │ │ │ ├── GeminiIcon.tsx │ │ │ ├── GithubIcon.tsx │ │ │ ├── GoogleIcon.tsx │ │ │ ├── GoogleIconChat.tsx │ │ │ ├── GoogleMinimalIcon.tsx │ │ │ ├── LightModeIcon.tsx │ │ │ ├── LightningIcon.tsx │ │ │ ├── LikeIcon.tsx │ │ │ ├── LinkIcon.tsx │ │ │ ├── LogOutIcon.tsx │ │ │ ├── MessagesSquared.tsx │ │ │ ├── MinimalPlugin.tsx │ │ │ ├── NewChatIcon.tsx │ │ │ ├── NewTrashIcon.tsx │ │ │ ├── OGBingIcon.tsx │ │ │ ├── OpenAIMinimalIcon.tsx │ │ │ ├── OpenIDIcon.tsx │ │ │ ├── PaLMIcon.tsx │ │ │ ├── PaLMinimalIcon.tsx │ │ │ ├── Panel.tsx │ │ │ ├── PinIcon.tsx │ │ │ ├── Plugin.tsx │ │ │ ├── RegenerateIcon.tsx │ │ │ ├── RenameIcon.tsx │ │ │ ├── SaveIcon.tsx │ │ │ ├── SendIcon.tsx │ │ │ ├── SendMessageIcon.tsx │ │ │ ├── Sparkles.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── StopGeneratingIcon.tsx │ │ │ ├── SunIcon.tsx │ │ │ ├── SwitchIcon.tsx │ │ │ ├── TrashIcon.tsx │ │ │ ├── UserIcon.tsx │ │ │ └── index.ts │ │ └── ui │ │ │ ├── Accordion.tsx │ │ │ ├── AlertDialog.tsx │ │ │ ├── Button.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── Collapsible.tsx │ │ │ ├── DataTableColumnHeader.tsx │ │ │ ├── DelayedRender.tsx │ │ │ ├── Dialog.tsx │ │ │ ├── DialogTemplate.spec.tsx │ │ │ ├── DialogTemplate.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── DropdownMenu.tsx │ │ │ ├── FileUpload.tsx │ │ │ ├── HoverCard.tsx │ │ │ ├── Input.tsx │ │ │ ├── InputNumber.tsx │ │ │ ├── Label.tsx │ │ │ ├── Landing.tsx │ │ │ ├── MultiSelectDropDown.tsx │ │ │ ├── MultiSelectPop.tsx │ │ │ ├── Prompt.tsx │ │ │ ├── QuestionMark.tsx │ │ │ ├── Resizable.tsx │ │ │ ├── Select.tsx │ │ │ ├── SelectDropDown.tsx │ │ │ ├── SelectDropDownPop.tsx │ │ │ ├── Separator.tsx │ │ │ ├── Slider.tsx │ │ │ ├── Switch.tsx │ │ │ ├── Table.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── Templates.tsx │ │ │ ├── Textarea.tsx │ │ │ ├── ThemeSelector.tsx │ │ │ ├── Toast.tsx │ │ │ ├── Tooltip.tsx │ │ │ └── index.ts │ ├── data-provider │ │ ├── axios.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ └── queries.ts │ ├── hooks │ │ ├── ApiErrorBoundaryContext.tsx │ │ ├── Assistants │ │ │ ├── index.ts │ │ │ ├── useAssistantsMap.ts │ │ │ └── useSelectAssistant.ts │ │ ├── AuthContext.tsx │ │ ├── Config │ │ │ ├── index.ts │ │ │ └── useConfigOverride.ts │ │ ├── Conversations │ │ │ ├── index.ts │ │ │ ├── useDebouncedInput.ts │ │ │ ├── useGetSender.ts │ │ │ └── usePresets.ts │ │ ├── Files │ │ │ ├── index.ts │ │ │ ├── useDeleteFilesFromTable.tsx │ │ │ ├── useDragHelpers.ts │ │ │ ├── useFileDeletion.ts │ │ │ ├── useFileHandling.ts │ │ │ ├── useFileMap.ts │ │ │ ├── useSetFilesToDelete.ts │ │ │ └── useUpdateFiles.ts │ │ ├── Input │ │ │ ├── index.ts │ │ │ ├── useDebounce.ts │ │ │ ├── useMultipleKeys.ts │ │ │ ├── useRequiresKey.ts │ │ │ ├── useTextarea.ts │ │ │ └── useUserKey.ts │ │ ├── Messages │ │ │ ├── index.ts │ │ │ ├── useAvatar.ts │ │ │ ├── useMessageHelpers.ts │ │ │ ├── useMessageScrolling.ts │ │ │ └── useProgress.ts │ │ ├── Nav │ │ │ ├── index.ts │ │ │ └── useNavScrolling.ts │ │ ├── Plugins │ │ │ ├── index.ts │ │ │ └── usePluginDialogHelpers.ts │ │ ├── SSE │ │ │ ├── index.ts │ │ │ ├── useContentHandler.ts │ │ │ └── useSSE.ts │ │ ├── ScreenshotContext.tsx │ │ ├── ThemeContext.tsx │ │ ├── index.ts │ │ ├── useChatHelpers.ts │ │ ├── useConversation.ts │ │ ├── useConversations.ts │ │ ├── useDefaultConvo.ts │ │ ├── useDelayedRender.tsx │ │ ├── useDocumentTitle.ts │ │ ├── useGenerations.ts │ │ ├── useGenerationsByLatest.ts │ │ ├── useLocalStorage.tsx │ │ ├── useLocalize.ts │ │ ├── useMediaQuery.tsx │ │ ├── useMessageHandler.ts │ │ ├── useNavigateToConvo.tsx │ │ ├── useNewConvo.ts │ │ ├── useOnClickOutside.ts │ │ ├── useOriginNavigate.ts │ │ ├── usePresetIndexOptions.ts │ │ ├── usePresetOptions.ts │ │ ├── useScrollToRef.ts │ │ ├── useServerStream.ts │ │ ├── useSetIndexOptions.ts │ │ ├── useSetOptions.ts │ │ ├── useSetStorage.ts │ │ ├── useTimeout.tsx │ │ └── useToast.ts │ ├── localization │ │ ├── Translation.tsx │ │ └── languages │ │ │ ├── Ar.tsx │ │ │ ├── Br.tsx │ │ │ ├── De.tsx │ │ │ ├── Eng.tsx │ │ │ ├── Es.tsx │ │ │ ├── Fr.tsx │ │ │ ├── He.tsx │ │ │ ├── Id.tsx │ │ │ ├── It.tsx │ │ │ ├── Jp.tsx │ │ │ ├── Ko.tsx │ │ │ ├── Nl.tsx │ │ │ ├── Pl.tsx │ │ │ ├── Ru.tsx │ │ │ ├── Sv.tsx │ │ │ ├── Tr.tsx │ │ │ ├── Vi.tsx │ │ │ ├── Zh.tsx │ │ │ └── ZhTraditional.tsx │ ├── main.jsx │ ├── mobile.css │ ├── routes │ │ ├── Chat.tsx │ │ ├── ChatRoute.tsx │ │ ├── Root.tsx │ │ ├── Search.tsx │ │ ├── index.tsx │ │ └── useAuthRedirect.ts │ ├── store │ │ ├── conversation.ts │ │ ├── conversations.ts │ │ ├── endpoints.ts │ │ ├── families.ts │ │ ├── index.ts │ │ ├── language.ts │ │ ├── models.ts │ │ ├── preset.ts │ │ ├── search.ts │ │ ├── settings.ts │ │ ├── submission.ts │ │ ├── text.ts │ │ ├── toast.ts │ │ └── user.ts │ ├── style.css │ └── utils │ │ ├── buildDefaultConvo.ts │ │ ├── buildTree.ts │ │ ├── cleanupPreset.ts │ │ ├── cn.ts │ │ ├── content.ts │ │ ├── convos.fakeData.ts │ │ ├── convos.spec.ts │ │ ├── convos.ts │ │ ├── endpoints.spec.ts │ │ ├── endpoints.ts │ │ ├── files.ts │ │ ├── getDefaultEndpoint.ts │ │ ├── getLocalStorageItems.ts │ │ ├── getLoginError.ts │ │ ├── index.ts │ │ ├── json.ts │ │ ├── languages.ts │ │ ├── latex.spec.ts │ │ ├── latex.ts │ │ ├── map.ts │ │ ├── presets.ts │ │ ├── resetConvo.ts │ │ └── validateIframe.ts ├── tailwind.config.cjs ├── test │ ├── layout-test-utils.tsx │ ├── matchMedia.mock │ └── setupTests.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── config ├── add-balance.js ├── ban-user.js ├── connect.js ├── create-user.js ├── delete-user.js ├── deployed-update.js ├── helpers.js ├── install.js ├── list-balances.js ├── loader.js ├── packages.js ├── prepare.js ├── stop-backend.js ├── update.js └── upgrade.js ├── docs ├── .DS_Store ├── CNAME ├── assets │ ├── LibreChat-wide-margin.svg │ ├── LibreChat.svg │ └── favicon_package │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── mstile-70x70.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest ├── contributions │ ├── coding_conventions.md │ ├── documentation_guidelines.md │ ├── how_to_contribute.md │ ├── index.md │ ├── testing.md │ └── translation_contribution.md ├── deployment │ ├── azure-terraform.md │ ├── cloudflare.md │ ├── digitalocean.md │ ├── heroku.md │ ├── hetzner_ubuntu.md │ ├── huggingface.md │ ├── index.md │ ├── linode.md │ ├── meilisearch_in_render.md │ ├── ngrok.md │ ├── render.md │ └── zeabur.md ├── dev │ ├── Dockerfile-app │ ├── README.md │ ├── deploy-compose.yml │ ├── eslintrc-stripped.js │ ├── meilisearch.yml │ └── single-compose.yml ├── features │ ├── bing_jailbreak.md │ ├── firebase.md │ ├── index.md │ ├── logging_system.md │ ├── manage_your_database.md │ ├── mod_system.md │ ├── plugins │ │ ├── azure_ai_search.md │ │ ├── chatgpt_plugins_openapi.md │ │ ├── google_search.md │ │ ├── index.md │ │ ├── introduction.md │ │ ├── make_your_own.md │ │ ├── stable_diffusion.md │ │ └── wolfram.md │ ├── presets.md │ ├── third_party.md │ └── token_usage.md ├── general_info │ ├── breaking_changes.md │ ├── index.md │ ├── multilingual_information.md │ ├── project_origin.md │ └── tech_stack.md ├── index.md └── install │ ├── configuration │ ├── ai_endpoints.md │ ├── ai_setup.md │ ├── azure_openai.md │ ├── custom_config.md │ ├── default_language.md │ ├── docker_override.md │ ├── dotenv.md │ ├── free_ai_apis.md │ ├── index.md │ ├── litellm.md │ ├── misc.md │ ├── mongodb.md │ ├── ollama.md │ └── user_auth_system.md │ ├── index.md │ └── installation │ ├── container_install.md │ ├── docker_compose_install.md │ ├── index.md │ ├── linux_install.md │ ├── mac_install.md │ └── windows_install.md ├── e2e ├── .DS_Store ├── jestSetup.js ├── playwright.config.local.ts ├── playwright.config.ts ├── setup │ ├── authenticate.ts │ ├── cleanupUser.ts │ ├── global-setup.local.ts │ ├── global-setup.ts │ ├── global-teardown.local.ts │ └── global-teardown.ts └── specs │ ├── keys.spec.ts │ ├── landing.spec.ts │ ├── messages.spec.ts │ ├── nav.spec.ts │ ├── popup.spec.ts │ └── settings.spec.ts ├── images ├── .gitignore ├── Screenshot_imgen.png ├── Screenshot_llm.png ├── Screenshot_vlm1.png ├── college.png ├── cover.jpg ├── cover2.jpg ├── sbwvlm.jpg ├── ssebowa_banner.jpg └── ssebowa_charity.jpg ├── index.html ├── mkdocs.yml ├── package.json ├── packages ├── .DS_Store └── data-provider │ ├── .DS_Store │ ├── .gitignore │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── react-query │ └── package.json │ ├── rollup.config.js │ ├── server-rollup.config.js │ ├── specs │ ├── actions.spec.ts │ ├── azure.spec.ts │ ├── filetypes.spec.ts │ ├── openapiSpecs.ts │ └── parsers.spec.ts │ ├── src │ ├── actions.ts │ ├── api-endpoints.ts │ ├── azure.ts │ ├── config.ts │ ├── createPayload.ts │ ├── data-service.ts │ ├── file-config.ts │ ├── headers-helpers.ts │ ├── index.ts │ ├── keys.ts │ ├── parsers.ts │ ├── react-query │ │ ├── index.ts │ │ └── react-query-service.ts │ ├── request.ts │ ├── schemas.ts │ ├── sse.js │ ├── types.ts │ └── types │ │ ├── assistants.ts │ │ ├── files.ts │ │ ├── mutations.ts │ │ └── queries.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── prettier.config.js └── uploads ├── .DS_Store └── temp ├── .DS_Store └── 65fd72b20171ae6abcdb2120 └── 05_35aa79d0-63ec-4001-9473-8e0280d36dbe.webp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/mongoSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/mongoSettings.xml -------------------------------------------------------------------------------- /.idea/ssebowa.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/ssebowa.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/README.md -------------------------------------------------------------------------------- /api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/.DS_Store -------------------------------------------------------------------------------- /api/app/bingai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/bingai.js -------------------------------------------------------------------------------- /api/app/chatgpt-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/chatgpt-browser.js -------------------------------------------------------------------------------- /api/app/clients/AnthropicClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/AnthropicClient.js -------------------------------------------------------------------------------- /api/app/clients/BaseClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/BaseClient.js -------------------------------------------------------------------------------- /api/app/clients/ChatGPTClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/ChatGPTClient.js -------------------------------------------------------------------------------- /api/app/clients/GoogleClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/GoogleClient.js -------------------------------------------------------------------------------- /api/app/clients/OpenAIClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/OpenAIClient.js -------------------------------------------------------------------------------- /api/app/clients/PluginsClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/PluginsClient.js -------------------------------------------------------------------------------- /api/app/clients/TextStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/TextStream.js -------------------------------------------------------------------------------- /api/app/clients/agents/CustomAgent/CustomAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/agents/CustomAgent/CustomAgent.js -------------------------------------------------------------------------------- /api/app/clients/agents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/agents/index.js -------------------------------------------------------------------------------- /api/app/clients/callbacks/createStartHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/callbacks/createStartHandler.js -------------------------------------------------------------------------------- /api/app/clients/callbacks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/callbacks/index.js -------------------------------------------------------------------------------- /api/app/clients/chains/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/chains/index.js -------------------------------------------------------------------------------- /api/app/clients/chains/predictNewSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/chains/predictNewSummary.js -------------------------------------------------------------------------------- /api/app/clients/chains/runTitleChain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/chains/runTitleChain.js -------------------------------------------------------------------------------- /api/app/clients/document/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/document/index.js -------------------------------------------------------------------------------- /api/app/clients/document/tokenSplit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/document/tokenSplit.js -------------------------------------------------------------------------------- /api/app/clients/document/tokenSplit.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/document/tokenSplit.spec.js -------------------------------------------------------------------------------- /api/app/clients/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/index.js -------------------------------------------------------------------------------- /api/app/clients/llm/RunManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/llm/RunManager.js -------------------------------------------------------------------------------- /api/app/clients/llm/createLLM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/llm/createLLM.js -------------------------------------------------------------------------------- /api/app/clients/llm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/llm/index.js -------------------------------------------------------------------------------- /api/app/clients/memory/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/memory/example.js -------------------------------------------------------------------------------- /api/app/clients/memory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/memory/index.js -------------------------------------------------------------------------------- /api/app/clients/memory/summaryBuffer.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/memory/summaryBuffer.demo.js -------------------------------------------------------------------------------- /api/app/clients/memory/summaryBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/memory/summaryBuffer.js -------------------------------------------------------------------------------- /api/app/clients/output_parsers/addImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/output_parsers/addImages.js -------------------------------------------------------------------------------- /api/app/clients/output_parsers/addImages.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/output_parsers/addImages.spec.js -------------------------------------------------------------------------------- /api/app/clients/output_parsers/handleOutputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/output_parsers/handleOutputs.js -------------------------------------------------------------------------------- /api/app/clients/output_parsers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/output_parsers/index.js -------------------------------------------------------------------------------- /api/app/clients/prompts/formatGoogleInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/formatGoogleInputs.js -------------------------------------------------------------------------------- /api/app/clients/prompts/formatMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/formatMessages.js -------------------------------------------------------------------------------- /api/app/clients/prompts/formatMessages.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/formatMessages.spec.js -------------------------------------------------------------------------------- /api/app/clients/prompts/handleInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/handleInputs.js -------------------------------------------------------------------------------- /api/app/clients/prompts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/index.js -------------------------------------------------------------------------------- /api/app/clients/prompts/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/instructions.js -------------------------------------------------------------------------------- /api/app/clients/prompts/summaryPrompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/summaryPrompts.js -------------------------------------------------------------------------------- /api/app/clients/prompts/titlePrompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/titlePrompts.js -------------------------------------------------------------------------------- /api/app/clients/prompts/truncateText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/prompts/truncateText.js -------------------------------------------------------------------------------- /api/app/clients/specs/AnthropicClient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/AnthropicClient.test.js -------------------------------------------------------------------------------- /api/app/clients/specs/BaseClient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/BaseClient.test.js -------------------------------------------------------------------------------- /api/app/clients/specs/FakeClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/FakeClient.js -------------------------------------------------------------------------------- /api/app/clients/specs/OpenAIClient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/OpenAIClient.test.js -------------------------------------------------------------------------------- /api/app/clients/specs/OpenAIClient.tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/OpenAIClient.tokens.js -------------------------------------------------------------------------------- /api/app/clients/specs/PluginsClient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/specs/PluginsClient.test.js -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/Ai_PDF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/Ai_PDF.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/BrowserOp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/BrowserOp.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/VoxScript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/VoxScript.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/askyourpdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/askyourpdf.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/qrCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/qrCodes.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/scholarai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/scholarai.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/uberchord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/uberchord.json -------------------------------------------------------------------------------- /api/app/clients/tools/.well-known/web_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/.well-known/web_search.json -------------------------------------------------------------------------------- /api/app/clients/tools/AzureAiSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/AzureAiSearch.js -------------------------------------------------------------------------------- /api/app/clients/tools/CodeBrew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/CodeBrew.js -------------------------------------------------------------------------------- /api/app/clients/tools/DALL-E.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/DALL-E.js -------------------------------------------------------------------------------- /api/app/clients/tools/GoogleSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/GoogleSearch.js -------------------------------------------------------------------------------- /api/app/clients/tools/HumanTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/HumanTool.js -------------------------------------------------------------------------------- /api/app/clients/tools/SelfReflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/SelfReflection.js -------------------------------------------------------------------------------- /api/app/clients/tools/StableDiffusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/StableDiffusion.js -------------------------------------------------------------------------------- /api/app/clients/tools/Wolfram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/Wolfram.js -------------------------------------------------------------------------------- /api/app/clients/tools/dynamic/OpenAPIPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/dynamic/OpenAPIPlugin.js -------------------------------------------------------------------------------- /api/app/clients/tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/index.js -------------------------------------------------------------------------------- /api/app/clients/tools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/manifest.json -------------------------------------------------------------------------------- /api/app/clients/tools/structured/AzureAISearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/AzureAISearch.js -------------------------------------------------------------------------------- /api/app/clients/tools/structured/ChatTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/ChatTool.js -------------------------------------------------------------------------------- /api/app/clients/tools/structured/CodeSherpa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/CodeSherpa.js -------------------------------------------------------------------------------- /api/app/clients/tools/structured/DALLE3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/DALLE3.js -------------------------------------------------------------------------------- /api/app/clients/tools/structured/E2BTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/E2BTools.js -------------------------------------------------------------------------------- /api/app/clients/tools/structured/Wolfram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/structured/Wolfram.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/addOpenAPISpecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/addOpenAPISpecs.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/handleOpenAIErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/handleOpenAIErrors.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/handleTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/handleTools.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/handleTools.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/handleTools.test.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/index.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/loadSpecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/loadSpecs.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/loadSpecs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/loadSpecs.spec.js -------------------------------------------------------------------------------- /api/app/clients/tools/util/loadToolSuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/util/loadToolSuite.js -------------------------------------------------------------------------------- /api/app/clients/tools/wolfram-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/clients/tools/wolfram-guidelines.md -------------------------------------------------------------------------------- /api/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/index.js -------------------------------------------------------------------------------- /api/app/titleConvoBing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/app/titleConvoBing.js -------------------------------------------------------------------------------- /api/cache/banViolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/banViolation.js -------------------------------------------------------------------------------- /api/cache/banViolation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/banViolation.spec.js -------------------------------------------------------------------------------- /api/cache/clearPendingReq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/clearPendingReq.js -------------------------------------------------------------------------------- /api/cache/getLogStores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/getLogStores.js -------------------------------------------------------------------------------- /api/cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/index.js -------------------------------------------------------------------------------- /api/cache/keyvFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/keyvFiles.js -------------------------------------------------------------------------------- /api/cache/keyvMongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/keyvMongo.js -------------------------------------------------------------------------------- /api/cache/keyvRedis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/keyvRedis.js -------------------------------------------------------------------------------- /api/cache/logViolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/logViolation.js -------------------------------------------------------------------------------- /api/cache/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/cache/redis.js -------------------------------------------------------------------------------- /api/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/config/index.js -------------------------------------------------------------------------------- /api/config/meiliLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/config/meiliLogger.js -------------------------------------------------------------------------------- /api/config/parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/config/parsers.js -------------------------------------------------------------------------------- /api/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/config/paths.js -------------------------------------------------------------------------------- /api/config/winston.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/config/winston.js -------------------------------------------------------------------------------- /api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/jest.config.js -------------------------------------------------------------------------------- /api/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/jsconfig.json -------------------------------------------------------------------------------- /api/lib/db/connectDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/db/connectDb.js -------------------------------------------------------------------------------- /api/lib/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/db/index.js -------------------------------------------------------------------------------- /api/lib/db/indexSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/db/indexSync.js -------------------------------------------------------------------------------- /api/lib/utils/mergeSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/utils/mergeSort.js -------------------------------------------------------------------------------- /api/lib/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/utils/misc.js -------------------------------------------------------------------------------- /api/lib/utils/reduceHits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/lib/utils/reduceHits.js -------------------------------------------------------------------------------- /api/models/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Action.js -------------------------------------------------------------------------------- /api/models/Assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Assistant.js -------------------------------------------------------------------------------- /api/models/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Balance.js -------------------------------------------------------------------------------- /api/models/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Config.js -------------------------------------------------------------------------------- /api/models/Conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Conversation.js -------------------------------------------------------------------------------- /api/models/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/File.js -------------------------------------------------------------------------------- /api/models/Key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Key.js -------------------------------------------------------------------------------- /api/models/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Message.js -------------------------------------------------------------------------------- /api/models/Preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Preset.js -------------------------------------------------------------------------------- /api/models/Prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Prompt.js -------------------------------------------------------------------------------- /api/models/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Session.js -------------------------------------------------------------------------------- /api/models/SsebowaConversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/SsebowaConversation.js -------------------------------------------------------------------------------- /api/models/SsebowaMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/SsebowaMessage.js -------------------------------------------------------------------------------- /api/models/Transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/Transaction.js -------------------------------------------------------------------------------- /api/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/User.js -------------------------------------------------------------------------------- /api/models/checkBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/checkBalance.js -------------------------------------------------------------------------------- /api/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/index.js -------------------------------------------------------------------------------- /api/models/plugins/mongoMeili.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/plugins/mongoMeili.js -------------------------------------------------------------------------------- /api/models/schema/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/action.js -------------------------------------------------------------------------------- /api/models/schema/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/assistant.js -------------------------------------------------------------------------------- /api/models/schema/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/balance.js -------------------------------------------------------------------------------- /api/models/schema/convoSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/convoSchema.js -------------------------------------------------------------------------------- /api/models/schema/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/defaults.js -------------------------------------------------------------------------------- /api/models/schema/fileSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/fileSchema.js -------------------------------------------------------------------------------- /api/models/schema/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/key.js -------------------------------------------------------------------------------- /api/models/schema/messageSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/messageSchema.js -------------------------------------------------------------------------------- /api/models/schema/pluginAuthSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/pluginAuthSchema.js -------------------------------------------------------------------------------- /api/models/schema/presetSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/presetSchema.js -------------------------------------------------------------------------------- /api/models/schema/ssebowaConversationSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/ssebowaConversationSchema.js -------------------------------------------------------------------------------- /api/models/schema/ssebowaMessageSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/ssebowaMessageSchema.js -------------------------------------------------------------------------------- /api/models/schema/tokenSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/tokenSchema.js -------------------------------------------------------------------------------- /api/models/schema/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/transaction.js -------------------------------------------------------------------------------- /api/models/schema/userSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/schema/userSchema.js -------------------------------------------------------------------------------- /api/models/spendTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/spendTokens.js -------------------------------------------------------------------------------- /api/models/tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/tx.js -------------------------------------------------------------------------------- /api/models/tx.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/tx.spec.js -------------------------------------------------------------------------------- /api/models/userMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/models/userMethods.js -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/package.json -------------------------------------------------------------------------------- /api/server/controllers/AskController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/AskController.js -------------------------------------------------------------------------------- /api/server/controllers/AuthController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/AuthController.js -------------------------------------------------------------------------------- /api/server/controllers/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/Balance.js -------------------------------------------------------------------------------- /api/server/controllers/EditController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/EditController.js -------------------------------------------------------------------------------- /api/server/controllers/EndpointController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/EndpointController.js -------------------------------------------------------------------------------- /api/server/controllers/ErrorController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/ErrorController.js -------------------------------------------------------------------------------- /api/server/controllers/ModelController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/ModelController.js -------------------------------------------------------------------------------- /api/server/controllers/OverrideController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/OverrideController.js -------------------------------------------------------------------------------- /api/server/controllers/PluginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/PluginController.js -------------------------------------------------------------------------------- /api/server/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/UserController.js -------------------------------------------------------------------------------- /api/server/controllers/auth/LoginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/auth/LoginController.js -------------------------------------------------------------------------------- /api/server/controllers/auth/LogoutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/controllers/auth/LogoutController.js -------------------------------------------------------------------------------- /api/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/index.js -------------------------------------------------------------------------------- /api/server/middleware/abortControllers.js: -------------------------------------------------------------------------------- 1 | // abortControllers.js 2 | module.exports = new Map(); 3 | -------------------------------------------------------------------------------- /api/server/middleware/abortMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/abortMiddleware.js -------------------------------------------------------------------------------- /api/server/middleware/abortRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/abortRun.js -------------------------------------------------------------------------------- /api/server/middleware/buildEndpointOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/buildEndpointOption.js -------------------------------------------------------------------------------- /api/server/middleware/checkBan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/checkBan.js -------------------------------------------------------------------------------- /api/server/middleware/concurrentLimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/concurrentLimiter.js -------------------------------------------------------------------------------- /api/server/middleware/denyRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/denyRequest.js -------------------------------------------------------------------------------- /api/server/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/index.js -------------------------------------------------------------------------------- /api/server/middleware/loginLimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/loginLimiter.js -------------------------------------------------------------------------------- /api/server/middleware/messageLimiters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/messageLimiters.js -------------------------------------------------------------------------------- /api/server/middleware/moderateText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/moderateText.js -------------------------------------------------------------------------------- /api/server/middleware/noIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/noIndex.js -------------------------------------------------------------------------------- /api/server/middleware/registerLimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/registerLimiter.js -------------------------------------------------------------------------------- /api/server/middleware/requireJwtAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/requireJwtAuth.js -------------------------------------------------------------------------------- /api/server/middleware/requireLocalAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/requireLocalAuth.js -------------------------------------------------------------------------------- /api/server/middleware/setHeaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/setHeaders.js -------------------------------------------------------------------------------- /api/server/middleware/uaParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/uaParser.js -------------------------------------------------------------------------------- /api/server/middleware/uploadLimiters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/uploadLimiters.js -------------------------------------------------------------------------------- /api/server/middleware/validateEndpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/validateEndpoint.js -------------------------------------------------------------------------------- /api/server/middleware/validateMessageReq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/validateMessageReq.js -------------------------------------------------------------------------------- /api/server/middleware/validateModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/validateModel.js -------------------------------------------------------------------------------- /api/server/middleware/validateRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/middleware/validateRegistration.js -------------------------------------------------------------------------------- /api/server/routes/__tests__/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/__tests__/config.spec.js -------------------------------------------------------------------------------- /api/server/routes/ask/addToCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/addToCache.js -------------------------------------------------------------------------------- /api/server/routes/ask/anthropic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/anthropic.js -------------------------------------------------------------------------------- /api/server/routes/ask/askChatGPTBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/askChatGPTBrowser.js -------------------------------------------------------------------------------- /api/server/routes/ask/bingAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/bingAI.js -------------------------------------------------------------------------------- /api/server/routes/ask/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/custom.js -------------------------------------------------------------------------------- /api/server/routes/ask/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/google.js -------------------------------------------------------------------------------- /api/server/routes/ask/gptPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/gptPlugins.js -------------------------------------------------------------------------------- /api/server/routes/ask/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/index.js -------------------------------------------------------------------------------- /api/server/routes/ask/openAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ask/openAI.js -------------------------------------------------------------------------------- /api/server/routes/assistants/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/assistants/actions.js -------------------------------------------------------------------------------- /api/server/routes/assistants/assistants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/assistants/assistants.js -------------------------------------------------------------------------------- /api/server/routes/assistants/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/assistants/chat.js -------------------------------------------------------------------------------- /api/server/routes/assistants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/assistants/index.js -------------------------------------------------------------------------------- /api/server/routes/assistants/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/assistants/tools.js -------------------------------------------------------------------------------- /api/server/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/auth.js -------------------------------------------------------------------------------- /api/server/routes/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/balance.js -------------------------------------------------------------------------------- /api/server/routes/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/config.js -------------------------------------------------------------------------------- /api/server/routes/convos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/convos.js -------------------------------------------------------------------------------- /api/server/routes/edit/anthropic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/anthropic.js -------------------------------------------------------------------------------- /api/server/routes/edit/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/custom.js -------------------------------------------------------------------------------- /api/server/routes/edit/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/google.js -------------------------------------------------------------------------------- /api/server/routes/edit/gptPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/gptPlugins.js -------------------------------------------------------------------------------- /api/server/routes/edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/index.js -------------------------------------------------------------------------------- /api/server/routes/edit/openAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/edit/openAI.js -------------------------------------------------------------------------------- /api/server/routes/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/endpoints.js -------------------------------------------------------------------------------- /api/server/routes/files/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/files/avatar.js -------------------------------------------------------------------------------- /api/server/routes/files/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/files/files.js -------------------------------------------------------------------------------- /api/server/routes/files/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/files/images.js -------------------------------------------------------------------------------- /api/server/routes/files/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/files/index.js -------------------------------------------------------------------------------- /api/server/routes/files/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/files/multer.js -------------------------------------------------------------------------------- /api/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/index.js -------------------------------------------------------------------------------- /api/server/routes/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/keys.js -------------------------------------------------------------------------------- /api/server/routes/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/messages.js -------------------------------------------------------------------------------- /api/server/routes/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/models.js -------------------------------------------------------------------------------- /api/server/routes/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/oauth.js -------------------------------------------------------------------------------- /api/server/routes/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/plugins.js -------------------------------------------------------------------------------- /api/server/routes/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/presets.js -------------------------------------------------------------------------------- /api/server/routes/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/prompts.js -------------------------------------------------------------------------------- /api/server/routes/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/search.js -------------------------------------------------------------------------------- /api/server/routes/ssebowa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/ssebowa.js -------------------------------------------------------------------------------- /api/server/routes/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/tokenizer.js -------------------------------------------------------------------------------- /api/server/routes/types/assistants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/types/assistants.js -------------------------------------------------------------------------------- /api/server/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/routes/user.js -------------------------------------------------------------------------------- /api/server/services/ActionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/ActionService.js -------------------------------------------------------------------------------- /api/server/services/AppService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/AppService.js -------------------------------------------------------------------------------- /api/server/services/AppService.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/AppService.spec.js -------------------------------------------------------------------------------- /api/server/services/AssistantService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/AssistantService.js -------------------------------------------------------------------------------- /api/server/services/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/AuthService.js -------------------------------------------------------------------------------- /api/server/services/AuthService.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/AuthService.spec.js -------------------------------------------------------------------------------- /api/server/services/Config/EndpointService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/EndpointService.js -------------------------------------------------------------------------------- /api/server/services/Config/getCustomConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/getCustomConfig.js -------------------------------------------------------------------------------- /api/server/services/Config/handleRateLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/handleRateLimits.js -------------------------------------------------------------------------------- /api/server/services/Config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/index.js -------------------------------------------------------------------------------- /api/server/services/Config/loadAsyncEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadAsyncEndpoints.js -------------------------------------------------------------------------------- /api/server/services/Config/loadConfigEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadConfigEndpoints.js -------------------------------------------------------------------------------- /api/server/services/Config/loadConfigModels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadConfigModels.js -------------------------------------------------------------------------------- /api/server/services/Config/loadCustomConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadCustomConfig.js -------------------------------------------------------------------------------- /api/server/services/Config/loadDefaultEConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadDefaultEConfig.js -------------------------------------------------------------------------------- /api/server/services/Config/loadDefaultModels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadDefaultModels.js -------------------------------------------------------------------------------- /api/server/services/Config/loadOverrideConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Config/loadOverrideConfig.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/anthropic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/anthropic/index.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/assistant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/assistant/index.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/custom/index.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/google/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/google/index.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/gptPlugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/gptPlugins/index.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/openAI/addTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/openAI/addTitle.js -------------------------------------------------------------------------------- /api/server/services/Endpoints/openAI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Endpoints/openAI/index.js -------------------------------------------------------------------------------- /api/server/services/Files/Firebase/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Firebase/crud.js -------------------------------------------------------------------------------- /api/server/services/Files/Firebase/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Firebase/images.js -------------------------------------------------------------------------------- /api/server/services/Files/Firebase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Firebase/index.js -------------------------------------------------------------------------------- /api/server/services/Files/Firebase/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Firebase/initialize.js -------------------------------------------------------------------------------- /api/server/services/Files/Local/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Local/crud.js -------------------------------------------------------------------------------- /api/server/services/Files/Local/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Local/images.js -------------------------------------------------------------------------------- /api/server/services/Files/Local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/Local/index.js -------------------------------------------------------------------------------- /api/server/services/Files/OpenAI/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/OpenAI/crud.js -------------------------------------------------------------------------------- /api/server/services/Files/OpenAI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/OpenAI/index.js -------------------------------------------------------------------------------- /api/server/services/Files/images/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/avatar.js -------------------------------------------------------------------------------- /api/server/services/Files/images/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/convert.js -------------------------------------------------------------------------------- /api/server/services/Files/images/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/encode.js -------------------------------------------------------------------------------- /api/server/services/Files/images/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/index.js -------------------------------------------------------------------------------- /api/server/services/Files/images/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/parse.js -------------------------------------------------------------------------------- /api/server/services/Files/images/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/images/resize.js -------------------------------------------------------------------------------- /api/server/services/Files/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/process.js -------------------------------------------------------------------------------- /api/server/services/Files/strategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Files/strategies.js -------------------------------------------------------------------------------- /api/server/services/ModelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/ModelService.js -------------------------------------------------------------------------------- /api/server/services/ModelService.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/ModelService.spec.js -------------------------------------------------------------------------------- /api/server/services/PluginService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/PluginService.js -------------------------------------------------------------------------------- /api/server/services/Runs/RunManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Runs/RunManager.js -------------------------------------------------------------------------------- /api/server/services/Runs/handle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Runs/handle.js -------------------------------------------------------------------------------- /api/server/services/Runs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Runs/index.js -------------------------------------------------------------------------------- /api/server/services/Runs/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Runs/methods.js -------------------------------------------------------------------------------- /api/server/services/Threads/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Threads/index.js -------------------------------------------------------------------------------- /api/server/services/Threads/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/Threads/manage.js -------------------------------------------------------------------------------- /api/server/services/ToolService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/ToolService.js -------------------------------------------------------------------------------- /api/server/services/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/UserService.js -------------------------------------------------------------------------------- /api/server/services/signPayload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/services/signPayload.js -------------------------------------------------------------------------------- /api/server/socialLogins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/socialLogins.js -------------------------------------------------------------------------------- /api/server/utils/citations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/citations.js -------------------------------------------------------------------------------- /api/server/utils/countTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/countTokens.js -------------------------------------------------------------------------------- /api/server/utils/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/crypto.js -------------------------------------------------------------------------------- /api/server/utils/emails/passwordReset.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/emails/passwordReset.handlebars -------------------------------------------------------------------------------- /api/server/utils/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/files.js -------------------------------------------------------------------------------- /api/server/utils/handleText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/handleText.js -------------------------------------------------------------------------------- /api/server/utils/handleText.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/handleText.spec.js -------------------------------------------------------------------------------- /api/server/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/index.js -------------------------------------------------------------------------------- /api/server/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/math.js -------------------------------------------------------------------------------- /api/server/utils/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/queue.js -------------------------------------------------------------------------------- /api/server/utils/removePorts.js: -------------------------------------------------------------------------------- 1 | module.exports = (req) => req?.ip?.replace(/:\d+[^:]*$/, ''); 2 | -------------------------------------------------------------------------------- /api/server/utils/sendEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/sendEmail.js -------------------------------------------------------------------------------- /api/server/utils/streamResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/server/utils/streamResponse.js -------------------------------------------------------------------------------- /api/strategies/discordStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/discordStrategy.js -------------------------------------------------------------------------------- /api/strategies/facebookStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/facebookStrategy.js -------------------------------------------------------------------------------- /api/strategies/githubStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/githubStrategy.js -------------------------------------------------------------------------------- /api/strategies/googleStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/googleStrategy.js -------------------------------------------------------------------------------- /api/strategies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/index.js -------------------------------------------------------------------------------- /api/strategies/joseStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/joseStrategy.js -------------------------------------------------------------------------------- /api/strategies/jwtStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/jwtStrategy.js -------------------------------------------------------------------------------- /api/strategies/localStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/localStrategy.js -------------------------------------------------------------------------------- /api/strategies/openidStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/openidStrategy.js -------------------------------------------------------------------------------- /api/strategies/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/process.js -------------------------------------------------------------------------------- /api/strategies/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/validators.js -------------------------------------------------------------------------------- /api/strategies/validators.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/strategies/validators.spec.js -------------------------------------------------------------------------------- /api/test/.env.test.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/.env.test.example -------------------------------------------------------------------------------- /api/test/__mocks__/KeyvMongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/__mocks__/KeyvMongo.js -------------------------------------------------------------------------------- /api/test/__mocks__/auth.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/__mocks__/auth.mock.json -------------------------------------------------------------------------------- /api/test/__mocks__/fetchEventSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/__mocks__/fetchEventSource.js -------------------------------------------------------------------------------- /api/test/__mocks__/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/__mocks__/logger.js -------------------------------------------------------------------------------- /api/test/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/test/jestSetup.js -------------------------------------------------------------------------------- /api/typedefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/typedefs.js -------------------------------------------------------------------------------- /api/utils/LoggingSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/LoggingSystem.js -------------------------------------------------------------------------------- /api/utils/azureUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/azureUtils.js -------------------------------------------------------------------------------- /api/utils/azureUtils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/azureUtils.spec.js -------------------------------------------------------------------------------- /api/utils/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/debug.js -------------------------------------------------------------------------------- /api/utils/extractBaseURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/extractBaseURL.js -------------------------------------------------------------------------------- /api/utils/extractBaseURL.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/extractBaseURL.spec.js -------------------------------------------------------------------------------- /api/utils/findMessageContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/findMessageContent.js -------------------------------------------------------------------------------- /api/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/index.js -------------------------------------------------------------------------------- /api/utils/loadYaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/loadYaml.js -------------------------------------------------------------------------------- /api/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/logger.js -------------------------------------------------------------------------------- /api/utils/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/tokens.js -------------------------------------------------------------------------------- /api/utils/tokens.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/api/utils/tokens.spec.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/bun.lockb -------------------------------------------------------------------------------- /client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/.DS_Store -------------------------------------------------------------------------------- /client/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/babel.config.cjs -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/index.html -------------------------------------------------------------------------------- /client/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/jest.config.cjs -------------------------------------------------------------------------------- /client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/nginx.conf -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/postcss.config.cjs -------------------------------------------------------------------------------- /client/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/.DS_Store -------------------------------------------------------------------------------- /client/public/assets/anyscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/anyscale.png -------------------------------------------------------------------------------- /client/public/assets/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /client/public/assets/bingai-jb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/bingai-jb.png -------------------------------------------------------------------------------- /client/public/assets/bingai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/bingai.png -------------------------------------------------------------------------------- /client/public/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/favicon-16x16.png -------------------------------------------------------------------------------- /client/public/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/favicon-32x32.png -------------------------------------------------------------------------------- /client/public/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/favicon.png -------------------------------------------------------------------------------- /client/public/assets/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/fireworks.png -------------------------------------------------------------------------------- /client/public/assets/google-palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/google-palm.svg -------------------------------------------------------------------------------- /client/public/assets/groq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/groq.png -------------------------------------------------------------------------------- /client/public/assets/mistral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/mistral.png -------------------------------------------------------------------------------- /client/public/assets/ollama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/ollama.png -------------------------------------------------------------------------------- /client/public/assets/openrouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/openrouter.png -------------------------------------------------------------------------------- /client/public/assets/perplexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/perplexity.png -------------------------------------------------------------------------------- /client/public/assets/ssebowaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/ssebowaIcon.png -------------------------------------------------------------------------------- /client/public/assets/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/together.png -------------------------------------------------------------------------------- /client/public/assets/usericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/usericon.png -------------------------------------------------------------------------------- /client/public/assets/web-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/assets/web-browser.svg -------------------------------------------------------------------------------- /client/public/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /client/public/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /client/public/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /client/public/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /client/public/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /client/public/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/public/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /client/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/.DS_Store -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/Providers/AssistantsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/AssistantsContext.tsx -------------------------------------------------------------------------------- /client/src/Providers/AssistantsMapContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/AssistantsMapContext.tsx -------------------------------------------------------------------------------- /client/src/Providers/ChatContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/ChatContext.tsx -------------------------------------------------------------------------------- /client/src/Providers/FileMapContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/FileMapContext.tsx -------------------------------------------------------------------------------- /client/src/Providers/ToastContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/ToastContext.tsx -------------------------------------------------------------------------------- /client/src/Providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/Providers/index.ts -------------------------------------------------------------------------------- /client/src/common/assistants-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/common/assistants-types.ts -------------------------------------------------------------------------------- /client/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/common/index.ts -------------------------------------------------------------------------------- /client/src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/common/types.ts -------------------------------------------------------------------------------- /client/src/components/Auth/ApiErrorWatcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/ApiErrorWatcher.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/Login.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/LoginForm.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Registration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/Registration.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/ResetPassword.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/SocialButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/SocialButton.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Auth/index.ts -------------------------------------------------------------------------------- /client/src/components/Chat/ChatView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/ChatView.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Header.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/ChatForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/ChatForm.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/Files/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/Files/Image.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/OptionsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/OptionsBar.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/SendButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/SendButton.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/StopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/StopButton.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Input/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Input/Textarea.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Landing.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Menus/Presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Menus/Presets/index.ts -------------------------------------------------------------------------------- /client/src/components/Chat/Menus/PresetsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Menus/PresetsMenu.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Menus/UI/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Menus/UI/MenuItem.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Menus/UI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Menus/UI/index.ts -------------------------------------------------------------------------------- /client/src/components/Chat/Menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Menus/index.ts -------------------------------------------------------------------------------- /client/src/components/Chat/Messages/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Messages/Message.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Messages/SubRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Messages/SubRow.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/Presentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/Presentation.tsx -------------------------------------------------------------------------------- /client/src/components/Chat/SearchView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Chat/SearchView.tsx -------------------------------------------------------------------------------- /client/src/components/Conversations/Convo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Conversations/Convo.tsx -------------------------------------------------------------------------------- /client/src/components/Conversations/Pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Conversations/Pages.tsx -------------------------------------------------------------------------------- /client/src/components/Conversations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Conversations/index.ts -------------------------------------------------------------------------------- /client/src/components/Endpoints/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Endpoints/Icon.tsx -------------------------------------------------------------------------------- /client/src/components/Endpoints/MinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Endpoints/MinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/Endpoints/Settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Endpoints/Settings/index.ts -------------------------------------------------------------------------------- /client/src/components/Endpoints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Endpoints/index.ts -------------------------------------------------------------------------------- /client/src/components/Input/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Input/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/Input/OptionsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Input/OptionsBar.tsx -------------------------------------------------------------------------------- /client/src/components/Input/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Input/SubmitButton.tsx -------------------------------------------------------------------------------- /client/src/components/Input/TextChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Input/TextChat.tsx -------------------------------------------------------------------------------- /client/src/components/Messages/Content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Messages/Content/index.ts -------------------------------------------------------------------------------- /client/src/components/Messages/HoverButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Messages/HoverButtons.tsx -------------------------------------------------------------------------------- /client/src/components/Messages/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Messages/Message.tsx -------------------------------------------------------------------------------- /client/src/components/Messages/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Messages/Messages.tsx -------------------------------------------------------------------------------- /client/src/components/Messages/MultiMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Messages/MultiMessage.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/ClearConvos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/ClearConvos.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/Logout.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/MobileNav.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/Nav.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/NavLink.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/NavLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/NavLinks.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/NavToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/NavToggle.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/NewChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/NewChat.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/SearchBar.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/Settings.tsx -------------------------------------------------------------------------------- /client/src/components/Nav/SettingsTabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/SettingsTabs/index.ts -------------------------------------------------------------------------------- /client/src/components/Nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Nav/index.ts -------------------------------------------------------------------------------- /client/src/components/Plugins/Store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Plugins/Store/index.ts -------------------------------------------------------------------------------- /client/src/components/Plugins/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Store'; 2 | -------------------------------------------------------------------------------- /client/src/components/SidePanel/Files/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/Files/Panel.tsx -------------------------------------------------------------------------------- /client/src/components/SidePanel/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/Nav.tsx -------------------------------------------------------------------------------- /client/src/components/SidePanel/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/SidePanel.tsx -------------------------------------------------------------------------------- /client/src/components/SidePanel/Switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/Switcher.tsx -------------------------------------------------------------------------------- /client/src/components/SidePanel/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/data.tsx -------------------------------------------------------------------------------- /client/src/components/SidePanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/SidePanel/index.ts -------------------------------------------------------------------------------- /client/src/components/Tools/ToolItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Tools/ToolItem.tsx -------------------------------------------------------------------------------- /client/src/components/Tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/Tools/index.ts -------------------------------------------------------------------------------- /client/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/index.ts -------------------------------------------------------------------------------- /client/src/components/svg/AnthropicIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/AnthropicIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/AssistantIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/AssistantIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/AttachmentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/AttachmentIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/AzureMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/AzureMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BingAIMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BingAIMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BingChatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BingChatIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BingIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BingIconBackup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BingIconBackup.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BingJbIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BingJbIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/BirthdayIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/BirthdayIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Blocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Blocks.tsx -------------------------------------------------------------------------------- /client/src/components/svg/CautionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/CautionIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/ChatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/ChatIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/CheckMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/CheckMark.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Clipboard.tsx -------------------------------------------------------------------------------- /client/src/components/svg/CodeyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/CodeyIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/ContinueIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/ContinueIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/ConvoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/ConvoIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/CrossIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/CrossIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/CustomMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/CustomMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/DarkModeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/DarkModeIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/DataIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/DataIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/DiscordIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/DislikeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/DislikeIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/DotsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/DotsIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/EditIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/ExperimentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/ExperimentIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/FacebookIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/FacebookIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Files/CodePaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Files/CodePaths.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Files/FileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Files/FileIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Files/FilePaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Files/FilePaths.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Files/SheetPaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Files/SheetPaths.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Files/TextPaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Files/TextPaths.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GPTIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GPTIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GearIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GearIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GeminiIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GeminiIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GithubIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GoogleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GoogleIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GoogleIconChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GoogleIconChat.tsx -------------------------------------------------------------------------------- /client/src/components/svg/GoogleMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/GoogleMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/LightModeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/LightModeIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/LightningIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/LightningIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/LikeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/LikeIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/LinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/LinkIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/LogOutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/LogOutIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/MessagesSquared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/MessagesSquared.tsx -------------------------------------------------------------------------------- /client/src/components/svg/MinimalPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/MinimalPlugin.tsx -------------------------------------------------------------------------------- /client/src/components/svg/NewChatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/NewChatIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/NewTrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/NewTrashIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/OGBingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/OGBingIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/OpenAIMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/OpenAIMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/OpenIDIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/OpenIDIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/PaLMIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/PaLMIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/PaLMinimalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/PaLMinimalIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Panel.tsx -------------------------------------------------------------------------------- /client/src/components/svg/PinIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/PinIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Plugin.tsx -------------------------------------------------------------------------------- /client/src/components/svg/RegenerateIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/RegenerateIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/RenameIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/RenameIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/SaveIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/SaveIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/SendIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/SendMessageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/SendMessageIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Sparkles.tsx -------------------------------------------------------------------------------- /client/src/components/svg/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/Spinner.tsx -------------------------------------------------------------------------------- /client/src/components/svg/SunIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/SunIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/SwitchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/SwitchIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/TrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/TrashIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/UserIcon.tsx -------------------------------------------------------------------------------- /client/src/components/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/svg/index.ts -------------------------------------------------------------------------------- /client/src/components/ui/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Accordion.tsx -------------------------------------------------------------------------------- /client/src/components/ui/AlertDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/AlertDialog.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Button.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Checkbox.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Collapsible.tsx -------------------------------------------------------------------------------- /client/src/components/ui/DelayedRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/DelayedRender.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Dialog.tsx -------------------------------------------------------------------------------- /client/src/components/ui/DialogTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/DialogTemplate.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Dropdown.tsx -------------------------------------------------------------------------------- /client/src/components/ui/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/DropdownMenu.tsx -------------------------------------------------------------------------------- /client/src/components/ui/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/FileUpload.tsx -------------------------------------------------------------------------------- /client/src/components/ui/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/HoverCard.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Input.tsx -------------------------------------------------------------------------------- /client/src/components/ui/InputNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/InputNumber.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Label.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Landing.tsx -------------------------------------------------------------------------------- /client/src/components/ui/MultiSelectPop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/MultiSelectPop.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Prompt.tsx -------------------------------------------------------------------------------- /client/src/components/ui/QuestionMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/QuestionMark.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Resizable.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Select.tsx -------------------------------------------------------------------------------- /client/src/components/ui/SelectDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/SelectDropDown.tsx -------------------------------------------------------------------------------- /client/src/components/ui/SelectDropDownPop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/SelectDropDownPop.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Separator.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Slider.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Switch.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Table.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Tabs.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Templates.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Textarea.tsx -------------------------------------------------------------------------------- /client/src/components/ui/ThemeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/ThemeSelector.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Toast.tsx -------------------------------------------------------------------------------- /client/src/components/ui/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/Tooltip.tsx -------------------------------------------------------------------------------- /client/src/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/components/ui/index.ts -------------------------------------------------------------------------------- /client/src/data-provider/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/data-provider/axios.ts -------------------------------------------------------------------------------- /client/src/data-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/data-provider/index.ts -------------------------------------------------------------------------------- /client/src/data-provider/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/data-provider/mutations.ts -------------------------------------------------------------------------------- /client/src/data-provider/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/data-provider/queries.ts -------------------------------------------------------------------------------- /client/src/hooks/ApiErrorBoundaryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/ApiErrorBoundaryContext.tsx -------------------------------------------------------------------------------- /client/src/hooks/Assistants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Assistants/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Assistants/useAssistantsMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Assistants/useAssistantsMap.ts -------------------------------------------------------------------------------- /client/src/hooks/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/AuthContext.tsx -------------------------------------------------------------------------------- /client/src/hooks/Config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Config/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Config/useConfigOverride.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Config/useConfigOverride.ts -------------------------------------------------------------------------------- /client/src/hooks/Conversations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Conversations/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Conversations/useGetSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Conversations/useGetSender.ts -------------------------------------------------------------------------------- /client/src/hooks/Conversations/usePresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Conversations/usePresets.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useDragHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useDragHelpers.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useFileDeletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useFileDeletion.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useFileHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useFileHandling.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useFileMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useFileMap.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useSetFilesToDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useSetFilesToDelete.ts -------------------------------------------------------------------------------- /client/src/hooks/Files/useUpdateFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Files/useUpdateFiles.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/useDebounce.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/useMultipleKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/useMultipleKeys.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/useRequiresKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/useRequiresKey.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/useTextarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/useTextarea.ts -------------------------------------------------------------------------------- /client/src/hooks/Input/useUserKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Input/useUserKey.ts -------------------------------------------------------------------------------- /client/src/hooks/Messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Messages/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Messages/useAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Messages/useAvatar.ts -------------------------------------------------------------------------------- /client/src/hooks/Messages/useMessageHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Messages/useMessageHelpers.ts -------------------------------------------------------------------------------- /client/src/hooks/Messages/useProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Messages/useProgress.ts -------------------------------------------------------------------------------- /client/src/hooks/Nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Nav/index.ts -------------------------------------------------------------------------------- /client/src/hooks/Nav/useNavScrolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Nav/useNavScrolling.ts -------------------------------------------------------------------------------- /client/src/hooks/Plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/Plugins/index.ts -------------------------------------------------------------------------------- /client/src/hooks/SSE/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/SSE/index.ts -------------------------------------------------------------------------------- /client/src/hooks/SSE/useContentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/SSE/useContentHandler.ts -------------------------------------------------------------------------------- /client/src/hooks/SSE/useSSE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/SSE/useSSE.ts -------------------------------------------------------------------------------- /client/src/hooks/ScreenshotContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/ScreenshotContext.tsx -------------------------------------------------------------------------------- /client/src/hooks/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/ThemeContext.tsx -------------------------------------------------------------------------------- /client/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/index.ts -------------------------------------------------------------------------------- /client/src/hooks/useChatHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useChatHelpers.ts -------------------------------------------------------------------------------- /client/src/hooks/useConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useConversation.ts -------------------------------------------------------------------------------- /client/src/hooks/useConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useConversations.ts -------------------------------------------------------------------------------- /client/src/hooks/useDefaultConvo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useDefaultConvo.ts -------------------------------------------------------------------------------- /client/src/hooks/useDelayedRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useDelayedRender.tsx -------------------------------------------------------------------------------- /client/src/hooks/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useDocumentTitle.ts -------------------------------------------------------------------------------- /client/src/hooks/useGenerations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useGenerations.ts -------------------------------------------------------------------------------- /client/src/hooks/useGenerationsByLatest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useGenerationsByLatest.ts -------------------------------------------------------------------------------- /client/src/hooks/useLocalStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useLocalStorage.tsx -------------------------------------------------------------------------------- /client/src/hooks/useLocalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useLocalize.ts -------------------------------------------------------------------------------- /client/src/hooks/useMediaQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useMediaQuery.tsx -------------------------------------------------------------------------------- /client/src/hooks/useMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useMessageHandler.ts -------------------------------------------------------------------------------- /client/src/hooks/useNavigateToConvo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useNavigateToConvo.tsx -------------------------------------------------------------------------------- /client/src/hooks/useNewConvo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useNewConvo.ts -------------------------------------------------------------------------------- /client/src/hooks/useOnClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useOnClickOutside.ts -------------------------------------------------------------------------------- /client/src/hooks/useOriginNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useOriginNavigate.ts -------------------------------------------------------------------------------- /client/src/hooks/usePresetIndexOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/usePresetIndexOptions.ts -------------------------------------------------------------------------------- /client/src/hooks/usePresetOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/usePresetOptions.ts -------------------------------------------------------------------------------- /client/src/hooks/useScrollToRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useScrollToRef.ts -------------------------------------------------------------------------------- /client/src/hooks/useServerStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useServerStream.ts -------------------------------------------------------------------------------- /client/src/hooks/useSetIndexOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useSetIndexOptions.ts -------------------------------------------------------------------------------- /client/src/hooks/useSetOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useSetOptions.ts -------------------------------------------------------------------------------- /client/src/hooks/useSetStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useSetStorage.ts -------------------------------------------------------------------------------- /client/src/hooks/useTimeout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useTimeout.tsx -------------------------------------------------------------------------------- /client/src/hooks/useToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/hooks/useToast.ts -------------------------------------------------------------------------------- /client/src/localization/Translation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/Translation.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Ar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Ar.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Br.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Br.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/De.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/De.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Eng.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Eng.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Es.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Es.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Fr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Fr.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/He.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/He.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Id.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/It.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/It.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Jp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Jp.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Ko.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Ko.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Nl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Nl.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Pl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Pl.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Ru.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Ru.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Sv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Sv.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Tr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Tr.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Vi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Vi.tsx -------------------------------------------------------------------------------- /client/src/localization/languages/Zh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/localization/languages/Zh.tsx -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/mobile.css -------------------------------------------------------------------------------- /client/src/routes/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/Chat.tsx -------------------------------------------------------------------------------- /client/src/routes/ChatRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/ChatRoute.tsx -------------------------------------------------------------------------------- /client/src/routes/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/Root.tsx -------------------------------------------------------------------------------- /client/src/routes/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/Search.tsx -------------------------------------------------------------------------------- /client/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/index.tsx -------------------------------------------------------------------------------- /client/src/routes/useAuthRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/routes/useAuthRedirect.ts -------------------------------------------------------------------------------- /client/src/store/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/conversation.ts -------------------------------------------------------------------------------- /client/src/store/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/conversations.ts -------------------------------------------------------------------------------- /client/src/store/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/endpoints.ts -------------------------------------------------------------------------------- /client/src/store/families.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/families.ts -------------------------------------------------------------------------------- /client/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/index.ts -------------------------------------------------------------------------------- /client/src/store/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/language.ts -------------------------------------------------------------------------------- /client/src/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/models.ts -------------------------------------------------------------------------------- /client/src/store/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/preset.ts -------------------------------------------------------------------------------- /client/src/store/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/search.ts -------------------------------------------------------------------------------- /client/src/store/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/settings.ts -------------------------------------------------------------------------------- /client/src/store/submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/submission.ts -------------------------------------------------------------------------------- /client/src/store/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/text.ts -------------------------------------------------------------------------------- /client/src/store/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/toast.ts -------------------------------------------------------------------------------- /client/src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/store/user.ts -------------------------------------------------------------------------------- /client/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/style.css -------------------------------------------------------------------------------- /client/src/utils/buildDefaultConvo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/buildDefaultConvo.ts -------------------------------------------------------------------------------- /client/src/utils/buildTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/buildTree.ts -------------------------------------------------------------------------------- /client/src/utils/cleanupPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/cleanupPreset.ts -------------------------------------------------------------------------------- /client/src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/cn.ts -------------------------------------------------------------------------------- /client/src/utils/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/content.ts -------------------------------------------------------------------------------- /client/src/utils/convos.fakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/convos.fakeData.ts -------------------------------------------------------------------------------- /client/src/utils/convos.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/convos.spec.ts -------------------------------------------------------------------------------- /client/src/utils/convos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/convos.ts -------------------------------------------------------------------------------- /client/src/utils/endpoints.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/endpoints.spec.ts -------------------------------------------------------------------------------- /client/src/utils/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/endpoints.ts -------------------------------------------------------------------------------- /client/src/utils/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/files.ts -------------------------------------------------------------------------------- /client/src/utils/getDefaultEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/getDefaultEndpoint.ts -------------------------------------------------------------------------------- /client/src/utils/getLocalStorageItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/getLocalStorageItems.ts -------------------------------------------------------------------------------- /client/src/utils/getLoginError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/getLoginError.ts -------------------------------------------------------------------------------- /client/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/index.ts -------------------------------------------------------------------------------- /client/src/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/json.ts -------------------------------------------------------------------------------- /client/src/utils/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/languages.ts -------------------------------------------------------------------------------- /client/src/utils/latex.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/latex.spec.ts -------------------------------------------------------------------------------- /client/src/utils/latex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/latex.ts -------------------------------------------------------------------------------- /client/src/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/map.ts -------------------------------------------------------------------------------- /client/src/utils/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/presets.ts -------------------------------------------------------------------------------- /client/src/utils/resetConvo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/resetConvo.ts -------------------------------------------------------------------------------- /client/src/utils/validateIframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/src/utils/validateIframe.ts -------------------------------------------------------------------------------- /client/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/tailwind.config.cjs -------------------------------------------------------------------------------- /client/test/layout-test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/test/layout-test-utils.tsx -------------------------------------------------------------------------------- /client/test/matchMedia.mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/test/matchMedia.mock -------------------------------------------------------------------------------- /client/test/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/test/setupTests.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/tsconfig.node.json -------------------------------------------------------------------------------- /client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/client/vite.config.ts -------------------------------------------------------------------------------- /config/add-balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/add-balance.js -------------------------------------------------------------------------------- /config/ban-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/ban-user.js -------------------------------------------------------------------------------- /config/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/connect.js -------------------------------------------------------------------------------- /config/create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/create-user.js -------------------------------------------------------------------------------- /config/delete-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/delete-user.js -------------------------------------------------------------------------------- /config/deployed-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/deployed-update.js -------------------------------------------------------------------------------- /config/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/helpers.js -------------------------------------------------------------------------------- /config/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/install.js -------------------------------------------------------------------------------- /config/list-balances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/list-balances.js -------------------------------------------------------------------------------- /config/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/loader.js -------------------------------------------------------------------------------- /config/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/packages.js -------------------------------------------------------------------------------- /config/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/prepare.js -------------------------------------------------------------------------------- /config/stop-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/stop-backend.js -------------------------------------------------------------------------------- /config/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/update.js -------------------------------------------------------------------------------- /config/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/config/upgrade.js -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.librechat.ai 2 | -------------------------------------------------------------------------------- /docs/assets/LibreChat-wide-margin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/LibreChat-wide-margin.svg -------------------------------------------------------------------------------- /docs/assets/LibreChat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/LibreChat.svg -------------------------------------------------------------------------------- /docs/assets/favicon_package/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/browserconfig.xml -------------------------------------------------------------------------------- /docs/assets/favicon_package/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/favicon-16x16.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/favicon-32x32.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/favicon.ico -------------------------------------------------------------------------------- /docs/assets/favicon_package/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/mstile-144x144.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/mstile-150x150.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/mstile-310x150.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/mstile-310x310.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/mstile-70x70.png -------------------------------------------------------------------------------- /docs/assets/favicon_package/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/assets/favicon_package/site.webmanifest -------------------------------------------------------------------------------- /docs/contributions/coding_conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/coding_conventions.md -------------------------------------------------------------------------------- /docs/contributions/documentation_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/documentation_guidelines.md -------------------------------------------------------------------------------- /docs/contributions/how_to_contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/how_to_contribute.md -------------------------------------------------------------------------------- /docs/contributions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/index.md -------------------------------------------------------------------------------- /docs/contributions/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/testing.md -------------------------------------------------------------------------------- /docs/contributions/translation_contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/contributions/translation_contribution.md -------------------------------------------------------------------------------- /docs/deployment/azure-terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/azure-terraform.md -------------------------------------------------------------------------------- /docs/deployment/cloudflare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/cloudflare.md -------------------------------------------------------------------------------- /docs/deployment/digitalocean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/digitalocean.md -------------------------------------------------------------------------------- /docs/deployment/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/heroku.md -------------------------------------------------------------------------------- /docs/deployment/hetzner_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/hetzner_ubuntu.md -------------------------------------------------------------------------------- /docs/deployment/huggingface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/huggingface.md -------------------------------------------------------------------------------- /docs/deployment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/index.md -------------------------------------------------------------------------------- /docs/deployment/linode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/linode.md -------------------------------------------------------------------------------- /docs/deployment/meilisearch_in_render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/meilisearch_in_render.md -------------------------------------------------------------------------------- /docs/deployment/ngrok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/ngrok.md -------------------------------------------------------------------------------- /docs/deployment/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/render.md -------------------------------------------------------------------------------- /docs/deployment/zeabur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/deployment/zeabur.md -------------------------------------------------------------------------------- /docs/dev/Dockerfile-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/Dockerfile-app -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/dev/deploy-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/deploy-compose.yml -------------------------------------------------------------------------------- /docs/dev/eslintrc-stripped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/eslintrc-stripped.js -------------------------------------------------------------------------------- /docs/dev/meilisearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/meilisearch.yml -------------------------------------------------------------------------------- /docs/dev/single-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/dev/single-compose.yml -------------------------------------------------------------------------------- /docs/features/bing_jailbreak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/bing_jailbreak.md -------------------------------------------------------------------------------- /docs/features/firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/firebase.md -------------------------------------------------------------------------------- /docs/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/index.md -------------------------------------------------------------------------------- /docs/features/logging_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/logging_system.md -------------------------------------------------------------------------------- /docs/features/manage_your_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/manage_your_database.md -------------------------------------------------------------------------------- /docs/features/mod_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/mod_system.md -------------------------------------------------------------------------------- /docs/features/plugins/azure_ai_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/azure_ai_search.md -------------------------------------------------------------------------------- /docs/features/plugins/google_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/google_search.md -------------------------------------------------------------------------------- /docs/features/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/index.md -------------------------------------------------------------------------------- /docs/features/plugins/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/introduction.md -------------------------------------------------------------------------------- /docs/features/plugins/make_your_own.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/make_your_own.md -------------------------------------------------------------------------------- /docs/features/plugins/stable_diffusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/stable_diffusion.md -------------------------------------------------------------------------------- /docs/features/plugins/wolfram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/plugins/wolfram.md -------------------------------------------------------------------------------- /docs/features/presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/presets.md -------------------------------------------------------------------------------- /docs/features/third_party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/third_party.md -------------------------------------------------------------------------------- /docs/features/token_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/features/token_usage.md -------------------------------------------------------------------------------- /docs/general_info/breaking_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/general_info/breaking_changes.md -------------------------------------------------------------------------------- /docs/general_info/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/general_info/index.md -------------------------------------------------------------------------------- /docs/general_info/multilingual_information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/general_info/multilingual_information.md -------------------------------------------------------------------------------- /docs/general_info/project_origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/general_info/project_origin.md -------------------------------------------------------------------------------- /docs/general_info/tech_stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/general_info/tech_stack.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install/configuration/ai_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/ai_endpoints.md -------------------------------------------------------------------------------- /docs/install/configuration/ai_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/ai_setup.md -------------------------------------------------------------------------------- /docs/install/configuration/azure_openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/azure_openai.md -------------------------------------------------------------------------------- /docs/install/configuration/custom_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/custom_config.md -------------------------------------------------------------------------------- /docs/install/configuration/default_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/default_language.md -------------------------------------------------------------------------------- /docs/install/configuration/docker_override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/docker_override.md -------------------------------------------------------------------------------- /docs/install/configuration/dotenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/dotenv.md -------------------------------------------------------------------------------- /docs/install/configuration/free_ai_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/free_ai_apis.md -------------------------------------------------------------------------------- /docs/install/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/index.md -------------------------------------------------------------------------------- /docs/install/configuration/litellm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/litellm.md -------------------------------------------------------------------------------- /docs/install/configuration/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/misc.md -------------------------------------------------------------------------------- /docs/install/configuration/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/mongodb.md -------------------------------------------------------------------------------- /docs/install/configuration/ollama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/ollama.md -------------------------------------------------------------------------------- /docs/install/configuration/user_auth_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/configuration/user_auth_system.md -------------------------------------------------------------------------------- /docs/install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/index.md -------------------------------------------------------------------------------- /docs/install/installation/container_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/installation/container_install.md -------------------------------------------------------------------------------- /docs/install/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/installation/index.md -------------------------------------------------------------------------------- /docs/install/installation/linux_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/installation/linux_install.md -------------------------------------------------------------------------------- /docs/install/installation/mac_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/installation/mac_install.md -------------------------------------------------------------------------------- /docs/install/installation/windows_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/docs/install/installation/windows_install.md -------------------------------------------------------------------------------- /e2e/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/.DS_Store -------------------------------------------------------------------------------- /e2e/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/jestSetup.js -------------------------------------------------------------------------------- /e2e/playwright.config.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/playwright.config.local.ts -------------------------------------------------------------------------------- /e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/playwright.config.ts -------------------------------------------------------------------------------- /e2e/setup/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/authenticate.ts -------------------------------------------------------------------------------- /e2e/setup/cleanupUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/cleanupUser.ts -------------------------------------------------------------------------------- /e2e/setup/global-setup.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/global-setup.local.ts -------------------------------------------------------------------------------- /e2e/setup/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/global-setup.ts -------------------------------------------------------------------------------- /e2e/setup/global-teardown.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/global-teardown.local.ts -------------------------------------------------------------------------------- /e2e/setup/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/setup/global-teardown.ts -------------------------------------------------------------------------------- /e2e/specs/keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/keys.spec.ts -------------------------------------------------------------------------------- /e2e/specs/landing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/landing.spec.ts -------------------------------------------------------------------------------- /e2e/specs/messages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/messages.spec.ts -------------------------------------------------------------------------------- /e2e/specs/nav.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/nav.spec.ts -------------------------------------------------------------------------------- /e2e/specs/popup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/popup.spec.ts -------------------------------------------------------------------------------- /e2e/specs/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/e2e/specs/settings.spec.ts -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/Screenshot_imgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/Screenshot_imgen.png -------------------------------------------------------------------------------- /images/Screenshot_llm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/Screenshot_llm.png -------------------------------------------------------------------------------- /images/Screenshot_vlm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/Screenshot_vlm1.png -------------------------------------------------------------------------------- /images/college.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/college.png -------------------------------------------------------------------------------- /images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/cover.jpg -------------------------------------------------------------------------------- /images/cover2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/cover2.jpg -------------------------------------------------------------------------------- /images/sbwvlm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/sbwvlm.jpg -------------------------------------------------------------------------------- /images/ssebowa_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/ssebowa_banner.jpg -------------------------------------------------------------------------------- /images/ssebowa_charity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/images/ssebowa_charity.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/index.html -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/package.json -------------------------------------------------------------------------------- /packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/.DS_Store -------------------------------------------------------------------------------- /packages/data-provider/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/.DS_Store -------------------------------------------------------------------------------- /packages/data-provider/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test_bundle/ 3 | -------------------------------------------------------------------------------- /packages/data-provider/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/babel.config.js -------------------------------------------------------------------------------- /packages/data-provider/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/jest.config.js -------------------------------------------------------------------------------- /packages/data-provider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/package.json -------------------------------------------------------------------------------- /packages/data-provider/react-query/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/react-query/package.json -------------------------------------------------------------------------------- /packages/data-provider/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/rollup.config.js -------------------------------------------------------------------------------- /packages/data-provider/server-rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/server-rollup.config.js -------------------------------------------------------------------------------- /packages/data-provider/specs/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/specs/actions.spec.ts -------------------------------------------------------------------------------- /packages/data-provider/specs/azure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/specs/azure.spec.ts -------------------------------------------------------------------------------- /packages/data-provider/specs/filetypes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/specs/filetypes.spec.ts -------------------------------------------------------------------------------- /packages/data-provider/specs/openapiSpecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/specs/openapiSpecs.ts -------------------------------------------------------------------------------- /packages/data-provider/specs/parsers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/specs/parsers.spec.ts -------------------------------------------------------------------------------- /packages/data-provider/src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/actions.ts -------------------------------------------------------------------------------- /packages/data-provider/src/api-endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/api-endpoints.ts -------------------------------------------------------------------------------- /packages/data-provider/src/azure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/azure.ts -------------------------------------------------------------------------------- /packages/data-provider/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/config.ts -------------------------------------------------------------------------------- /packages/data-provider/src/createPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/createPayload.ts -------------------------------------------------------------------------------- /packages/data-provider/src/data-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/data-service.ts -------------------------------------------------------------------------------- /packages/data-provider/src/file-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/file-config.ts -------------------------------------------------------------------------------- /packages/data-provider/src/headers-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/headers-helpers.ts -------------------------------------------------------------------------------- /packages/data-provider/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/index.ts -------------------------------------------------------------------------------- /packages/data-provider/src/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/keys.ts -------------------------------------------------------------------------------- /packages/data-provider/src/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/parsers.ts -------------------------------------------------------------------------------- /packages/data-provider/src/react-query/index.ts: -------------------------------------------------------------------------------- 1 | export * from './react-query-service'; 2 | -------------------------------------------------------------------------------- /packages/data-provider/src/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/request.ts -------------------------------------------------------------------------------- /packages/data-provider/src/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/schemas.ts -------------------------------------------------------------------------------- /packages/data-provider/src/sse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/sse.js -------------------------------------------------------------------------------- /packages/data-provider/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/types.ts -------------------------------------------------------------------------------- /packages/data-provider/src/types/assistants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/types/assistants.ts -------------------------------------------------------------------------------- /packages/data-provider/src/types/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/types/files.ts -------------------------------------------------------------------------------- /packages/data-provider/src/types/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/types/mutations.ts -------------------------------------------------------------------------------- /packages/data-provider/src/types/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/src/types/queries.ts -------------------------------------------------------------------------------- /packages/data-provider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/tsconfig.json -------------------------------------------------------------------------------- /packages/data-provider/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/packages/data-provider/tsconfig.spec.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/prettier.config.js -------------------------------------------------------------------------------- /uploads/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/uploads/.DS_Store -------------------------------------------------------------------------------- /uploads/temp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssebowa/ssebowa-UI/HEAD/uploads/temp/.DS_Store --------------------------------------------------------------------------------