├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .env ├── .env.ci ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report--chat-ui-.md │ ├── config-support.md │ ├── feature-request--chat-ui-.md │ └── huggingchat.md ├── release.yml └── workflows │ ├── build-docs.yml │ ├── build-image.yml │ ├── build-pr-docs.yml │ ├── deploy-dev.yml │ ├── deploy-prod.yml │ ├── lint-and-test.yml │ ├── slugify.yaml │ ├── trufflehog.yml │ └── upload-pr-documentation.yml ├── .gitignore ├── .husky ├── lint-stage-config.js └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── PRIVACY.md ├── README.md ├── chart ├── Chart.yaml ├── env │ ├── dev.yaml │ └── prod.yaml ├── templates │ ├── _helpers.tpl │ ├── config.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── infisical.yaml │ ├── ingress-internal.yaml │ ├── ingress.yaml │ ├── network-policy.yaml │ ├── service-account.yaml │ ├── service-monitor.yaml │ └── service.yaml └── values.yaml ├── docker-compose.yml ├── docs └── source │ ├── _toctree.yml │ ├── configuration │ ├── common-issues.md │ ├── llm-router.md │ ├── mcp-tools.md │ ├── metrics.md │ ├── open-id.md │ ├── overview.md │ └── theming.md │ ├── developing │ └── architecture.md │ ├── index.md │ └── installation │ ├── docker.md │ ├── helm.md │ └── local.md ├── entrypoint.sh ├── models └── add-your-models-here.txt ├── package.json ├── postcss.config.js ├── scripts ├── config.ts ├── populate.ts ├── samples.txt ├── setups │ ├── vitest-setup-client.ts │ └── vitest-setup-server.ts └── updateLocalEnv.ts ├── server.log ├── src ├── ambient.d.ts ├── app.d.ts ├── app.html ├── hooks.server.ts ├── hooks.ts ├── lib │ ├── APIClient.ts │ ├── actions │ │ ├── clickOutside.ts │ │ └── snapScrollToBottom.ts │ ├── buildPrompt.ts │ ├── components │ │ ├── AnnouncementBanner.svelte │ │ ├── BackgroundGenerationPoller.svelte │ │ ├── CodeBlock.svelte │ │ ├── CopyToClipBoardBtn.svelte │ │ ├── DeleteConversationModal.svelte │ │ ├── EditConversationModal.svelte │ │ ├── ExpandNavigation.svelte │ │ ├── HoverTooltip.svelte │ │ ├── HtmlPreviewModal.svelte │ │ ├── InfiniteScroll.svelte │ │ ├── MobileNav.svelte │ │ ├── Modal.svelte │ │ ├── ModelCardMetadata.svelte │ │ ├── NavConversationItem.svelte │ │ ├── NavMenu.svelte │ │ ├── Pagination.svelte │ │ ├── PaginationArrow.svelte │ │ ├── Portal.svelte │ │ ├── RetryBtn.svelte │ │ ├── ScrollToBottomBtn.svelte │ │ ├── ScrollToPreviousBtn.svelte │ │ ├── ShareConversationModal.svelte │ │ ├── StopGeneratingBtn.svelte │ │ ├── SubscribeModal.svelte │ │ ├── Switch.svelte │ │ ├── SystemPromptModal.svelte │ │ ├── Toast.svelte │ │ ├── Tooltip.svelte │ │ ├── WelcomeModal.svelte │ │ ├── chat │ │ │ ├── Alternatives.svelte │ │ │ ├── BlockWrapper.svelte │ │ │ ├── ChatInput.svelte │ │ │ ├── ChatIntroduction.svelte │ │ │ ├── ChatMessage.svelte │ │ │ ├── ChatWindow.svelte │ │ │ ├── FileDropzone.svelte │ │ │ ├── MarkdownBlock.svelte │ │ │ ├── MarkdownRenderer.svelte │ │ │ ├── MarkdownRenderer.svelte.test.ts │ │ │ ├── MessageAvatar.svelte │ │ │ ├── ModelSwitch.svelte │ │ │ ├── OpenReasoningResults.svelte │ │ │ ├── ToolUpdate.svelte │ │ │ ├── UploadedFile.svelte │ │ │ ├── UrlFetchModal.svelte │ │ │ └── VoiceRecorder.svelte │ │ ├── icons │ │ │ ├── IconBurger.svelte │ │ │ ├── IconChevron.svelte │ │ │ ├── IconDazzled.svelte │ │ │ ├── IconLoading.svelte │ │ │ ├── IconMCP.svelte │ │ │ ├── IconMoon.svelte │ │ │ ├── IconNew.svelte │ │ │ ├── IconOmni.svelte │ │ │ ├── IconPaperclip.svelte │ │ │ ├── IconShare.svelte │ │ │ ├── IconSun.svelte │ │ │ ├── Logo.svelte │ │ │ └── LogoHuggingFaceBorderless.svelte │ │ ├── mcp │ │ │ ├── AddServerForm.svelte │ │ │ ├── MCPServerManager.svelte │ │ │ └── ServerCard.svelte │ │ ├── players │ │ │ └── AudioPlayer.svelte │ │ └── voice │ │ │ └── AudioWaveform.svelte │ ├── constants │ │ ├── mcpExamples.ts │ │ ├── mime.ts │ │ ├── pagination.ts │ │ ├── publicSepToken.ts │ │ └── routerExamples.ts │ ├── createShareLink.ts │ ├── jobs │ │ └── refresh-conversation-stats.ts │ ├── migrations │ │ ├── lock.ts │ │ ├── migrations.spec.ts │ │ ├── migrations.ts │ │ └── routines │ │ │ ├── 01-update-search-assistants.ts │ │ │ ├── 02-update-assistants-models.ts │ │ │ ├── 04-update-message-updates.ts │ │ │ ├── 05-update-message-files.ts │ │ │ ├── 06-trim-message-updates.ts │ │ │ ├── 08-update-featured-to-review.ts │ │ │ ├── 09-delete-empty-conversations.spec.ts │ │ │ ├── 09-delete-empty-conversations.ts │ │ │ ├── 10-update-reports-assistantid.ts │ │ │ └── index.ts │ ├── server │ │ ├── abortRegistry.ts │ │ ├── abortedGenerations.ts │ │ ├── adminToken.ts │ │ ├── api │ │ │ ├── authPlugin.ts │ │ │ ├── index.ts │ │ │ └── routes │ │ │ │ └── groups │ │ │ │ ├── conversations.ts │ │ │ │ ├── debug.ts │ │ │ │ ├── misc.ts │ │ │ │ ├── models.ts │ │ │ │ └── user.ts │ │ ├── apiToken.ts │ │ ├── auth.ts │ │ ├── config.ts │ │ ├── conversation.ts │ │ ├── database.ts │ │ ├── endpoints │ │ │ ├── document.ts │ │ │ ├── endpoints.ts │ │ │ ├── images.ts │ │ │ ├── openai │ │ │ │ ├── endpointOai.ts │ │ │ │ ├── openAIChatToTextGenerationStream.ts │ │ │ │ └── openAICompletionToTextGenerationStream.ts │ │ │ └── preprocessMessages.ts │ │ ├── exitHandler.ts │ │ ├── files │ │ │ ├── downloadFile.ts │ │ │ └── uploadFile.ts │ │ ├── findRepoRoot.ts │ │ ├── fonts │ │ │ ├── Inter-Black.ttf │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-ExtraBold.ttf │ │ │ ├── Inter-ExtraLight.ttf │ │ │ ├── Inter-Light.ttf │ │ │ ├── Inter-Medium.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-SemiBold.ttf │ │ │ └── Inter-Thin.ttf │ │ ├── generateFromDefaultEndpoint.ts │ │ ├── isURLLocal.spec.ts │ │ ├── isURLLocal.ts │ │ ├── logger.ts │ │ ├── mcp │ │ │ ├── clientPool.ts │ │ │ ├── hf.ts │ │ │ ├── httpClient.ts │ │ │ ├── registry.ts │ │ │ └── tools.ts │ │ ├── metrics.ts │ │ ├── models.ts │ │ ├── router │ │ │ ├── arch.ts │ │ │ ├── endpoint.ts │ │ │ ├── multimodal.ts │ │ │ ├── policy.ts │ │ │ ├── toolsRoute.ts │ │ │ └── types.ts │ │ ├── sendSlack.ts │ │ ├── textGeneration │ │ │ ├── generate.ts │ │ │ ├── index.ts │ │ │ ├── mcp │ │ │ │ ├── fileRefs.ts │ │ │ │ ├── routerResolution.ts │ │ │ │ ├── runMcpFlow.ts │ │ │ │ └── toolInvocation.ts │ │ │ ├── reasoning.ts │ │ │ ├── title.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── prepareFiles.ts │ │ │ │ ├── routing.ts │ │ │ │ └── toolPrompt.ts │ │ ├── urlSafety.ts │ │ └── usageLimits.ts │ ├── stores │ │ ├── backgroundGenerations.svelte.ts │ │ ├── backgroundGenerations.ts │ │ ├── errors.ts │ │ ├── isAborted.ts │ │ ├── loading.ts │ │ ├── mcpServers.ts │ │ ├── pendingMessage.ts │ │ ├── settings.ts │ │ ├── shareModal.ts │ │ └── titleUpdate.ts │ ├── switchTheme.ts │ ├── types │ │ ├── AbortedGeneration.ts │ │ ├── Assistant.ts │ │ ├── AssistantStats.ts │ │ ├── ConfigKey.ts │ │ ├── ConvSidebar.ts │ │ ├── Conversation.ts │ │ ├── ConversationStats.ts │ │ ├── Message.ts │ │ ├── MessageEvent.ts │ │ ├── MessageUpdate.ts │ │ ├── MigrationResult.ts │ │ ├── Model.ts │ │ ├── Report.ts │ │ ├── Review.ts │ │ ├── Semaphore.ts │ │ ├── Session.ts │ │ ├── Settings.ts │ │ ├── SharedConversation.ts │ │ ├── Template.ts │ │ ├── Timestamps.ts │ │ ├── TokenCache.ts │ │ ├── Tool.ts │ │ ├── UrlDependency.ts │ │ └── User.ts │ ├── utils │ │ ├── PublicConfig.svelte.ts │ │ ├── auth.ts │ │ ├── chunk.ts │ │ ├── cookiesAreEnabled.ts │ │ ├── debounce.ts │ │ ├── deepestChild.ts │ │ ├── favicon.ts │ │ ├── fetchJSON.ts │ │ ├── file2base64.ts │ │ ├── formatUserCount.ts │ │ ├── getHref.ts │ │ ├── getReturnFromGenerator.ts │ │ ├── hashConv.ts │ │ ├── hf.ts │ │ ├── isDesktop.ts │ │ ├── isUrl.ts │ │ ├── isVirtualKeyboard.ts │ │ ├── loadAttachmentsFromUrls.ts │ │ ├── marked.ts │ │ ├── mcpValidation.ts │ │ ├── mergeAsyncGenerators.ts │ │ ├── messageUpdates.ts │ │ ├── mime.ts │ │ ├── models.ts │ │ ├── parseBlocks.ts │ │ ├── parseIncompleteMarkdown.ts │ │ ├── parseStringToList.ts │ │ ├── randomUuid.ts │ │ ├── searchTokens.ts │ │ ├── sha256.ts │ │ ├── stringifyError.ts │ │ ├── sum.ts │ │ ├── template.spec.ts │ │ ├── template.ts │ │ ├── timeout.ts │ │ ├── tree │ │ │ ├── addChildren.spec.ts │ │ │ ├── addChildren.ts │ │ │ ├── addSibling.spec.ts │ │ │ ├── addSibling.ts │ │ │ ├── buildSubtree.spec.ts │ │ │ ├── buildSubtree.ts │ │ │ ├── convertLegacyConversation.spec.ts │ │ │ ├── convertLegacyConversation.ts │ │ │ ├── isMessageId.spec.ts │ │ │ ├── isMessageId.ts │ │ │ ├── tree.d.ts │ │ │ └── treeHelpers.spec.ts │ │ ├── updates.ts │ │ └── urlParams.ts │ └── workers │ │ └── markdownWorker.ts ├── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ ├── .well-known │ │ └── oauth-cimd │ │ │ └── +server.ts │ ├── __debug │ │ └── openai │ │ │ └── +server.ts │ ├── admin │ │ ├── export │ │ │ └── +server.ts │ │ └── stats │ │ │ └── compute │ │ │ └── +server.ts │ ├── api │ │ ├── conversation │ │ │ └── [id] │ │ │ │ ├── +server.ts │ │ │ │ └── message │ │ │ │ └── [messageId] │ │ │ │ └── +server.ts │ │ ├── conversations │ │ │ └── +server.ts │ │ ├── fetch-url │ │ │ └── +server.ts │ │ ├── mcp │ │ │ ├── health │ │ │ │ └── +server.ts │ │ │ └── servers │ │ │ │ └── +server.ts │ │ ├── models │ │ │ └── +server.ts │ │ ├── transcribe │ │ │ └── +server.ts │ │ ├── user │ │ │ ├── +server.ts │ │ │ └── validate-token │ │ │ │ └── +server.ts │ │ └── v2 │ │ │ └── [...slugs] │ │ │ └── +server.ts │ ├── conversation │ │ ├── +server.ts │ │ └── [id] │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── +server.ts │ │ │ ├── message │ │ │ └── [messageId] │ │ │ │ └── prompt │ │ │ │ └── +server.ts │ │ │ ├── output │ │ │ └── [sha256] │ │ │ │ └── +server.ts │ │ │ ├── share │ │ │ └── +server.ts │ │ │ └── stop-generating │ │ │ └── +server.ts │ ├── healthcheck │ │ └── +server.ts │ ├── login │ │ ├── +server.ts │ │ └── callback │ │ │ ├── +server.ts │ │ │ ├── updateUser.spec.ts │ │ │ └── updateUser.ts │ ├── logout │ │ └── +server.ts │ ├── metrics │ │ └── +server.ts │ ├── models │ │ ├── +page.svelte │ │ └── [...model] │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── thumbnail.png │ │ │ ├── +server.ts │ │ │ └── ModelThumbnail.svelte │ ├── privacy │ │ └── +page.svelte │ ├── r │ │ └── [id] │ │ │ └── +page.server.ts │ └── settings │ │ ├── (nav) │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── +page.svelte │ │ ├── +server.ts │ │ ├── [...model] │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── application │ │ │ └── +page.svelte │ │ └── +layout.svelte └── styles │ ├── highlight-js.css │ └── main.css ├── static ├── chatui │ ├── apple-touch-icon.png │ ├── favicon-dev.svg │ ├── favicon.ico │ ├── favicon.svg │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-36x36.png │ ├── icon-48x48.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ ├── icon-96x96.png │ ├── icon.svg │ ├── logo.svg │ └── manifest.json ├── huggingchat │ ├── apple-touch-icon.png │ ├── assistants-thumbnail.png │ ├── castle-example.jpg │ ├── favicon-dark.svg │ ├── favicon-dev.svg │ ├── favicon.ico │ ├── favicon.svg │ ├── fulltext-logo.svg │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-36x36.png │ ├── icon-48x48.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ ├── icon-96x96.png │ ├── icon.svg │ ├── logo.svg │ ├── manifest.json │ ├── routes.chat.json │ ├── thumbnail.png │ └── tools-thumbnail.png └── robots.txt ├── stub └── @reflink │ └── reflink │ ├── index.js │ └── package.json ├── svelte.config.js ├── tailwind.config.cjs ├── tsconfig.json └── vite.config.ts /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.env -------------------------------------------------------------------------------- /.env.ci: -------------------------------------------------------------------------------- 1 | MONGODB_URL=mongodb://localhost:27017/ -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report--chat-ui-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/ISSUE_TEMPLATE/bug-report--chat-ui-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/ISSUE_TEMPLATE/config-support.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request--chat-ui-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/ISSUE_TEMPLATE/feature-request--chat-ui-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/huggingchat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/ISSUE_TEMPLATE/huggingchat.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/build-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/build-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-pr-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/build-pr-docs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/deploy-prod.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/lint-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/slugify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/slugify.yaml -------------------------------------------------------------------------------- /.github/workflows/trufflehog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/trufflehog.yml -------------------------------------------------------------------------------- /.github/workflows/upload-pr-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.github/workflows/upload-pr-documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/lint-stage-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.husky/lint-stage-config.js -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/README.md -------------------------------------------------------------------------------- /chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/Chart.yaml -------------------------------------------------------------------------------- /chart/env/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/env/dev.yaml -------------------------------------------------------------------------------- /chart/env/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/env/prod.yaml -------------------------------------------------------------------------------- /chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/config.yaml -------------------------------------------------------------------------------- /chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /chart/templates/infisical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/infisical.yaml -------------------------------------------------------------------------------- /chart/templates/ingress-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/ingress-internal.yaml -------------------------------------------------------------------------------- /chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /chart/templates/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/network-policy.yaml -------------------------------------------------------------------------------- /chart/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/service-account.yaml -------------------------------------------------------------------------------- /chart/templates/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/service-monitor.yaml -------------------------------------------------------------------------------- /chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/templates/service.yaml -------------------------------------------------------------------------------- /chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/chart/values.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/source/_toctree.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/_toctree.yml -------------------------------------------------------------------------------- /docs/source/configuration/common-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/common-issues.md -------------------------------------------------------------------------------- /docs/source/configuration/llm-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/llm-router.md -------------------------------------------------------------------------------- /docs/source/configuration/mcp-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/mcp-tools.md -------------------------------------------------------------------------------- /docs/source/configuration/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/metrics.md -------------------------------------------------------------------------------- /docs/source/configuration/open-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/open-id.md -------------------------------------------------------------------------------- /docs/source/configuration/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/overview.md -------------------------------------------------------------------------------- /docs/source/configuration/theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/configuration/theming.md -------------------------------------------------------------------------------- /docs/source/developing/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/developing/architecture.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/installation/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/installation/docker.md -------------------------------------------------------------------------------- /docs/source/installation/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/installation/helm.md -------------------------------------------------------------------------------- /docs/source/installation/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/docs/source/installation/local.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /models/add-your-models-here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/models/add-your-models-here.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/scripts/config.ts -------------------------------------------------------------------------------- /scripts/populate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/scripts/populate.ts -------------------------------------------------------------------------------- /scripts/samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/scripts/samples.txt -------------------------------------------------------------------------------- /scripts/setups/vitest-setup-client.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/setups/vitest-setup-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/scripts/setups/vitest-setup-server.ts -------------------------------------------------------------------------------- /scripts/updateLocalEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/scripts/updateLocalEnv.ts -------------------------------------------------------------------------------- /server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/server.log -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/app.html -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/lib/APIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/APIClient.ts -------------------------------------------------------------------------------- /src/lib/actions/clickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/actions/clickOutside.ts -------------------------------------------------------------------------------- /src/lib/actions/snapScrollToBottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/actions/snapScrollToBottom.ts -------------------------------------------------------------------------------- /src/lib/buildPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/buildPrompt.ts -------------------------------------------------------------------------------- /src/lib/components/AnnouncementBanner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/AnnouncementBanner.svelte -------------------------------------------------------------------------------- /src/lib/components/BackgroundGenerationPoller.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/BackgroundGenerationPoller.svelte -------------------------------------------------------------------------------- /src/lib/components/CodeBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/CodeBlock.svelte -------------------------------------------------------------------------------- /src/lib/components/CopyToClipBoardBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/CopyToClipBoardBtn.svelte -------------------------------------------------------------------------------- /src/lib/components/DeleteConversationModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/DeleteConversationModal.svelte -------------------------------------------------------------------------------- /src/lib/components/EditConversationModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/EditConversationModal.svelte -------------------------------------------------------------------------------- /src/lib/components/ExpandNavigation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/ExpandNavigation.svelte -------------------------------------------------------------------------------- /src/lib/components/HoverTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/HoverTooltip.svelte -------------------------------------------------------------------------------- /src/lib/components/HtmlPreviewModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/HtmlPreviewModal.svelte -------------------------------------------------------------------------------- /src/lib/components/InfiniteScroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/InfiniteScroll.svelte -------------------------------------------------------------------------------- /src/lib/components/MobileNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/MobileNav.svelte -------------------------------------------------------------------------------- /src/lib/components/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Modal.svelte -------------------------------------------------------------------------------- /src/lib/components/ModelCardMetadata.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/ModelCardMetadata.svelte -------------------------------------------------------------------------------- /src/lib/components/NavConversationItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/NavConversationItem.svelte -------------------------------------------------------------------------------- /src/lib/components/NavMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/NavMenu.svelte -------------------------------------------------------------------------------- /src/lib/components/Pagination.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Pagination.svelte -------------------------------------------------------------------------------- /src/lib/components/PaginationArrow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/PaginationArrow.svelte -------------------------------------------------------------------------------- /src/lib/components/Portal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Portal.svelte -------------------------------------------------------------------------------- /src/lib/components/RetryBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/RetryBtn.svelte -------------------------------------------------------------------------------- /src/lib/components/ScrollToBottomBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/ScrollToBottomBtn.svelte -------------------------------------------------------------------------------- /src/lib/components/ScrollToPreviousBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/ScrollToPreviousBtn.svelte -------------------------------------------------------------------------------- /src/lib/components/ShareConversationModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/ShareConversationModal.svelte -------------------------------------------------------------------------------- /src/lib/components/StopGeneratingBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/StopGeneratingBtn.svelte -------------------------------------------------------------------------------- /src/lib/components/SubscribeModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/SubscribeModal.svelte -------------------------------------------------------------------------------- /src/lib/components/Switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Switch.svelte -------------------------------------------------------------------------------- /src/lib/components/SystemPromptModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/SystemPromptModal.svelte -------------------------------------------------------------------------------- /src/lib/components/Toast.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Toast.svelte -------------------------------------------------------------------------------- /src/lib/components/Tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/Tooltip.svelte -------------------------------------------------------------------------------- /src/lib/components/WelcomeModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/WelcomeModal.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/Alternatives.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/Alternatives.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/BlockWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/BlockWrapper.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ChatInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ChatInput.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ChatIntroduction.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ChatIntroduction.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ChatMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ChatMessage.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ChatWindow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ChatWindow.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/FileDropzone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/FileDropzone.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/MarkdownBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/MarkdownBlock.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/MarkdownRenderer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/MarkdownRenderer.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/MarkdownRenderer.svelte.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/MarkdownRenderer.svelte.test.ts -------------------------------------------------------------------------------- /src/lib/components/chat/MessageAvatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/MessageAvatar.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ModelSwitch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ModelSwitch.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/OpenReasoningResults.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/OpenReasoningResults.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/ToolUpdate.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/ToolUpdate.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/UploadedFile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/UploadedFile.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/UrlFetchModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/UrlFetchModal.svelte -------------------------------------------------------------------------------- /src/lib/components/chat/VoiceRecorder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/chat/VoiceRecorder.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconBurger.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconBurger.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconChevron.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconChevron.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconDazzled.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconDazzled.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconLoading.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconMCP.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconMCP.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconMoon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconMoon.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconNew.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconNew.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconOmni.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconOmni.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconPaperclip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconPaperclip.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconShare.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconShare.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/IconSun.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/IconSun.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/Logo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/Logo.svelte -------------------------------------------------------------------------------- /src/lib/components/icons/LogoHuggingFaceBorderless.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/icons/LogoHuggingFaceBorderless.svelte -------------------------------------------------------------------------------- /src/lib/components/mcp/AddServerForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/mcp/AddServerForm.svelte -------------------------------------------------------------------------------- /src/lib/components/mcp/MCPServerManager.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/mcp/MCPServerManager.svelte -------------------------------------------------------------------------------- /src/lib/components/mcp/ServerCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/mcp/ServerCard.svelte -------------------------------------------------------------------------------- /src/lib/components/players/AudioPlayer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/players/AudioPlayer.svelte -------------------------------------------------------------------------------- /src/lib/components/voice/AudioWaveform.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/components/voice/AudioWaveform.svelte -------------------------------------------------------------------------------- /src/lib/constants/mcpExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/constants/mcpExamples.ts -------------------------------------------------------------------------------- /src/lib/constants/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/constants/mime.ts -------------------------------------------------------------------------------- /src/lib/constants/pagination.ts: -------------------------------------------------------------------------------- 1 | export const CONV_NUM_PER_PAGE = 30; 2 | -------------------------------------------------------------------------------- /src/lib/constants/publicSepToken.ts: -------------------------------------------------------------------------------- 1 | export const PUBLIC_SEP_TOKEN = ""; 2 | -------------------------------------------------------------------------------- /src/lib/constants/routerExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/constants/routerExamples.ts -------------------------------------------------------------------------------- /src/lib/createShareLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/createShareLink.ts -------------------------------------------------------------------------------- /src/lib/jobs/refresh-conversation-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/jobs/refresh-conversation-stats.ts -------------------------------------------------------------------------------- /src/lib/migrations/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/lock.ts -------------------------------------------------------------------------------- /src/lib/migrations/migrations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/migrations.spec.ts -------------------------------------------------------------------------------- /src/lib/migrations/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/migrations.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/01-update-search-assistants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/01-update-search-assistants.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/02-update-assistants-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/02-update-assistants-models.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/04-update-message-updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/04-update-message-updates.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/05-update-message-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/05-update-message-files.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/06-trim-message-updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/06-trim-message-updates.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/08-update-featured-to-review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/08-update-featured-to-review.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/09-delete-empty-conversations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/09-delete-empty-conversations.spec.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/09-delete-empty-conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/09-delete-empty-conversations.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/10-update-reports-assistantid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/10-update-reports-assistantid.ts -------------------------------------------------------------------------------- /src/lib/migrations/routines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/migrations/routines/index.ts -------------------------------------------------------------------------------- /src/lib/server/abortRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/abortRegistry.ts -------------------------------------------------------------------------------- /src/lib/server/abortedGenerations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/abortedGenerations.ts -------------------------------------------------------------------------------- /src/lib/server/adminToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/adminToken.ts -------------------------------------------------------------------------------- /src/lib/server/api/authPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/authPlugin.ts -------------------------------------------------------------------------------- /src/lib/server/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/index.ts -------------------------------------------------------------------------------- /src/lib/server/api/routes/groups/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/routes/groups/conversations.ts -------------------------------------------------------------------------------- /src/lib/server/api/routes/groups/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/routes/groups/debug.ts -------------------------------------------------------------------------------- /src/lib/server/api/routes/groups/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/routes/groups/misc.ts -------------------------------------------------------------------------------- /src/lib/server/api/routes/groups/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/routes/groups/models.ts -------------------------------------------------------------------------------- /src/lib/server/api/routes/groups/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/api/routes/groups/user.ts -------------------------------------------------------------------------------- /src/lib/server/apiToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/apiToken.ts -------------------------------------------------------------------------------- /src/lib/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/auth.ts -------------------------------------------------------------------------------- /src/lib/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/config.ts -------------------------------------------------------------------------------- /src/lib/server/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/conversation.ts -------------------------------------------------------------------------------- /src/lib/server/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/database.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/document.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/endpoints.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/images.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/openai/endpointOai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/openai/endpointOai.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/openai/openAIChatToTextGenerationStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/openai/openAIChatToTextGenerationStream.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/openai/openAICompletionToTextGenerationStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/openai/openAICompletionToTextGenerationStream.ts -------------------------------------------------------------------------------- /src/lib/server/endpoints/preprocessMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/endpoints/preprocessMessages.ts -------------------------------------------------------------------------------- /src/lib/server/exitHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/exitHandler.ts -------------------------------------------------------------------------------- /src/lib/server/files/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/files/downloadFile.ts -------------------------------------------------------------------------------- /src/lib/server/files/uploadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/files/uploadFile.ts -------------------------------------------------------------------------------- /src/lib/server/findRepoRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/findRepoRoot.ts -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Black.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Light.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /src/lib/server/fonts/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/fonts/Inter-Thin.ttf -------------------------------------------------------------------------------- /src/lib/server/generateFromDefaultEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/generateFromDefaultEndpoint.ts -------------------------------------------------------------------------------- /src/lib/server/isURLLocal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/isURLLocal.spec.ts -------------------------------------------------------------------------------- /src/lib/server/isURLLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/isURLLocal.ts -------------------------------------------------------------------------------- /src/lib/server/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/logger.ts -------------------------------------------------------------------------------- /src/lib/server/mcp/clientPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/mcp/clientPool.ts -------------------------------------------------------------------------------- /src/lib/server/mcp/hf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/mcp/hf.ts -------------------------------------------------------------------------------- /src/lib/server/mcp/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/mcp/httpClient.ts -------------------------------------------------------------------------------- /src/lib/server/mcp/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/mcp/registry.ts -------------------------------------------------------------------------------- /src/lib/server/mcp/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/mcp/tools.ts -------------------------------------------------------------------------------- /src/lib/server/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/metrics.ts -------------------------------------------------------------------------------- /src/lib/server/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/models.ts -------------------------------------------------------------------------------- /src/lib/server/router/arch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/arch.ts -------------------------------------------------------------------------------- /src/lib/server/router/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/endpoint.ts -------------------------------------------------------------------------------- /src/lib/server/router/multimodal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/multimodal.ts -------------------------------------------------------------------------------- /src/lib/server/router/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/policy.ts -------------------------------------------------------------------------------- /src/lib/server/router/toolsRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/toolsRoute.ts -------------------------------------------------------------------------------- /src/lib/server/router/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/router/types.ts -------------------------------------------------------------------------------- /src/lib/server/sendSlack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/sendSlack.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/generate.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/index.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/mcp/fileRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/mcp/fileRefs.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/mcp/routerResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/mcp/routerResolution.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/mcp/runMcpFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/mcp/runMcpFlow.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/mcp/toolInvocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/mcp/toolInvocation.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/reasoning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/reasoning.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/title.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/types.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/utils/prepareFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/utils/prepareFiles.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/utils/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/utils/routing.ts -------------------------------------------------------------------------------- /src/lib/server/textGeneration/utils/toolPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/textGeneration/utils/toolPrompt.ts -------------------------------------------------------------------------------- /src/lib/server/urlSafety.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/urlSafety.ts -------------------------------------------------------------------------------- /src/lib/server/usageLimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/server/usageLimits.ts -------------------------------------------------------------------------------- /src/lib/stores/backgroundGenerations.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/backgroundGenerations.svelte.ts -------------------------------------------------------------------------------- /src/lib/stores/backgroundGenerations.ts: -------------------------------------------------------------------------------- 1 | export * from "./backgroundGenerations.svelte"; 2 | -------------------------------------------------------------------------------- /src/lib/stores/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/errors.ts -------------------------------------------------------------------------------- /src/lib/stores/isAborted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/isAborted.ts -------------------------------------------------------------------------------- /src/lib/stores/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/loading.ts -------------------------------------------------------------------------------- /src/lib/stores/mcpServers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/mcpServers.ts -------------------------------------------------------------------------------- /src/lib/stores/pendingMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/pendingMessage.ts -------------------------------------------------------------------------------- /src/lib/stores/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/settings.ts -------------------------------------------------------------------------------- /src/lib/stores/shareModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/shareModal.ts -------------------------------------------------------------------------------- /src/lib/stores/titleUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/stores/titleUpdate.ts -------------------------------------------------------------------------------- /src/lib/switchTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/switchTheme.ts -------------------------------------------------------------------------------- /src/lib/types/AbortedGeneration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/AbortedGeneration.ts -------------------------------------------------------------------------------- /src/lib/types/Assistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Assistant.ts -------------------------------------------------------------------------------- /src/lib/types/AssistantStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/AssistantStats.ts -------------------------------------------------------------------------------- /src/lib/types/ConfigKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/ConfigKey.ts -------------------------------------------------------------------------------- /src/lib/types/ConvSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/ConvSidebar.ts -------------------------------------------------------------------------------- /src/lib/types/Conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Conversation.ts -------------------------------------------------------------------------------- /src/lib/types/ConversationStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/ConversationStats.ts -------------------------------------------------------------------------------- /src/lib/types/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Message.ts -------------------------------------------------------------------------------- /src/lib/types/MessageEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/MessageEvent.ts -------------------------------------------------------------------------------- /src/lib/types/MessageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/MessageUpdate.ts -------------------------------------------------------------------------------- /src/lib/types/MigrationResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/MigrationResult.ts -------------------------------------------------------------------------------- /src/lib/types/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Model.ts -------------------------------------------------------------------------------- /src/lib/types/Report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Report.ts -------------------------------------------------------------------------------- /src/lib/types/Review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Review.ts -------------------------------------------------------------------------------- /src/lib/types/Semaphore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Semaphore.ts -------------------------------------------------------------------------------- /src/lib/types/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Session.ts -------------------------------------------------------------------------------- /src/lib/types/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Settings.ts -------------------------------------------------------------------------------- /src/lib/types/SharedConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/SharedConversation.ts -------------------------------------------------------------------------------- /src/lib/types/Template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Template.ts -------------------------------------------------------------------------------- /src/lib/types/Timestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Timestamps.ts -------------------------------------------------------------------------------- /src/lib/types/TokenCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/TokenCache.ts -------------------------------------------------------------------------------- /src/lib/types/Tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/Tool.ts -------------------------------------------------------------------------------- /src/lib/types/UrlDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/UrlDependency.ts -------------------------------------------------------------------------------- /src/lib/types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/types/User.ts -------------------------------------------------------------------------------- /src/lib/utils/PublicConfig.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/PublicConfig.svelte.ts -------------------------------------------------------------------------------- /src/lib/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/auth.ts -------------------------------------------------------------------------------- /src/lib/utils/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/chunk.ts -------------------------------------------------------------------------------- /src/lib/utils/cookiesAreEnabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/cookiesAreEnabled.ts -------------------------------------------------------------------------------- /src/lib/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/debounce.ts -------------------------------------------------------------------------------- /src/lib/utils/deepestChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/deepestChild.ts -------------------------------------------------------------------------------- /src/lib/utils/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/favicon.ts -------------------------------------------------------------------------------- /src/lib/utils/fetchJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/fetchJSON.ts -------------------------------------------------------------------------------- /src/lib/utils/file2base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/file2base64.ts -------------------------------------------------------------------------------- /src/lib/utils/formatUserCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/formatUserCount.ts -------------------------------------------------------------------------------- /src/lib/utils/getHref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/getHref.ts -------------------------------------------------------------------------------- /src/lib/utils/getReturnFromGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/getReturnFromGenerator.ts -------------------------------------------------------------------------------- /src/lib/utils/hashConv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/hashConv.ts -------------------------------------------------------------------------------- /src/lib/utils/hf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/hf.ts -------------------------------------------------------------------------------- /src/lib/utils/isDesktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/isDesktop.ts -------------------------------------------------------------------------------- /src/lib/utils/isUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/isUrl.ts -------------------------------------------------------------------------------- /src/lib/utils/isVirtualKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/isVirtualKeyboard.ts -------------------------------------------------------------------------------- /src/lib/utils/loadAttachmentsFromUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/loadAttachmentsFromUrls.ts -------------------------------------------------------------------------------- /src/lib/utils/marked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/marked.ts -------------------------------------------------------------------------------- /src/lib/utils/mcpValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/mcpValidation.ts -------------------------------------------------------------------------------- /src/lib/utils/mergeAsyncGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/mergeAsyncGenerators.ts -------------------------------------------------------------------------------- /src/lib/utils/messageUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/messageUpdates.ts -------------------------------------------------------------------------------- /src/lib/utils/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/mime.ts -------------------------------------------------------------------------------- /src/lib/utils/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/models.ts -------------------------------------------------------------------------------- /src/lib/utils/parseBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/parseBlocks.ts -------------------------------------------------------------------------------- /src/lib/utils/parseIncompleteMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/parseIncompleteMarkdown.ts -------------------------------------------------------------------------------- /src/lib/utils/parseStringToList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/parseStringToList.ts -------------------------------------------------------------------------------- /src/lib/utils/randomUuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/randomUuid.ts -------------------------------------------------------------------------------- /src/lib/utils/searchTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/searchTokens.ts -------------------------------------------------------------------------------- /src/lib/utils/sha256.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/sha256.ts -------------------------------------------------------------------------------- /src/lib/utils/stringifyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/stringifyError.ts -------------------------------------------------------------------------------- /src/lib/utils/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/sum.ts -------------------------------------------------------------------------------- /src/lib/utils/template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/template.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/template.ts -------------------------------------------------------------------------------- /src/lib/utils/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/timeout.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/addChildren.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/addChildren.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/addChildren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/addChildren.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/addSibling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/addSibling.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/addSibling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/addSibling.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/buildSubtree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/buildSubtree.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/buildSubtree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/buildSubtree.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/convertLegacyConversation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/convertLegacyConversation.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/convertLegacyConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/convertLegacyConversation.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/isMessageId.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/isMessageId.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/isMessageId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/isMessageId.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/tree.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/tree.d.ts -------------------------------------------------------------------------------- /src/lib/utils/tree/treeHelpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/tree/treeHelpers.spec.ts -------------------------------------------------------------------------------- /src/lib/utils/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/updates.ts -------------------------------------------------------------------------------- /src/lib/utils/urlParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/utils/urlParams.ts -------------------------------------------------------------------------------- /src/lib/workers/markdownWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/lib/workers/markdownWorker.ts -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/+layout.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/.well-known/oauth-cimd/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/.well-known/oauth-cimd/+server.ts -------------------------------------------------------------------------------- /src/routes/__debug/openai/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/__debug/openai/+server.ts -------------------------------------------------------------------------------- /src/routes/admin/export/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/admin/export/+server.ts -------------------------------------------------------------------------------- /src/routes/admin/stats/compute/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/admin/stats/compute/+server.ts -------------------------------------------------------------------------------- /src/routes/api/conversation/[id]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/conversation/[id]/+server.ts -------------------------------------------------------------------------------- /src/routes/api/conversation/[id]/message/[messageId]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/conversation/[id]/message/[messageId]/+server.ts -------------------------------------------------------------------------------- /src/routes/api/conversations/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/conversations/+server.ts -------------------------------------------------------------------------------- /src/routes/api/fetch-url/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/fetch-url/+server.ts -------------------------------------------------------------------------------- /src/routes/api/mcp/health/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/mcp/health/+server.ts -------------------------------------------------------------------------------- /src/routes/api/mcp/servers/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/mcp/servers/+server.ts -------------------------------------------------------------------------------- /src/routes/api/models/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/models/+server.ts -------------------------------------------------------------------------------- /src/routes/api/transcribe/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/transcribe/+server.ts -------------------------------------------------------------------------------- /src/routes/api/user/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/user/+server.ts -------------------------------------------------------------------------------- /src/routes/api/user/validate-token/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/user/validate-token/+server.ts -------------------------------------------------------------------------------- /src/routes/api/v2/[...slugs]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/api/v2/[...slugs]/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/+page.svelte -------------------------------------------------------------------------------- /src/routes/conversation/[id]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/+page.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/message/[messageId]/prompt/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/message/[messageId]/prompt/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/output/[sha256]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/output/[sha256]/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/share/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/share/+server.ts -------------------------------------------------------------------------------- /src/routes/conversation/[id]/stop-generating/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/conversation/[id]/stop-generating/+server.ts -------------------------------------------------------------------------------- /src/routes/healthcheck/+server.ts: -------------------------------------------------------------------------------- 1 | export async function GET() { 2 | return new Response("OK", { status: 200 }); 3 | } 4 | -------------------------------------------------------------------------------- /src/routes/login/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/login/+server.ts -------------------------------------------------------------------------------- /src/routes/login/callback/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/login/callback/+server.ts -------------------------------------------------------------------------------- /src/routes/login/callback/updateUser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/login/callback/updateUser.spec.ts -------------------------------------------------------------------------------- /src/routes/login/callback/updateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/login/callback/updateUser.ts -------------------------------------------------------------------------------- /src/routes/logout/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/logout/+server.ts -------------------------------------------------------------------------------- /src/routes/metrics/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/metrics/+server.ts -------------------------------------------------------------------------------- /src/routes/models/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/models/+page.svelte -------------------------------------------------------------------------------- /src/routes/models/[...model]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/models/[...model]/+page.svelte -------------------------------------------------------------------------------- /src/routes/models/[...model]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/models/[...model]/+page.ts -------------------------------------------------------------------------------- /src/routes/models/[...model]/thumbnail.png/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/models/[...model]/thumbnail.png/+server.ts -------------------------------------------------------------------------------- /src/routes/models/[...model]/thumbnail.png/ModelThumbnail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/models/[...model]/thumbnail.png/ModelThumbnail.svelte -------------------------------------------------------------------------------- /src/routes/privacy/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/privacy/+page.svelte -------------------------------------------------------------------------------- /src/routes/r/[id]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/r/[id]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/settings/(nav)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/(nav)/+layout.svelte -------------------------------------------------------------------------------- /src/routes/settings/(nav)/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /src/routes/settings/(nav)/+page.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/settings/(nav)/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/(nav)/+server.ts -------------------------------------------------------------------------------- /src/routes/settings/(nav)/[...model]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/(nav)/[...model]/+page.svelte -------------------------------------------------------------------------------- /src/routes/settings/(nav)/[...model]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/(nav)/[...model]/+page.ts -------------------------------------------------------------------------------- /src/routes/settings/(nav)/application/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/(nav)/application/+page.svelte -------------------------------------------------------------------------------- /src/routes/settings/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/routes/settings/+layout.svelte -------------------------------------------------------------------------------- /src/styles/highlight-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/styles/highlight-js.css -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /static/chatui/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/apple-touch-icon.png -------------------------------------------------------------------------------- /static/chatui/favicon-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/favicon-dev.svg -------------------------------------------------------------------------------- /static/chatui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/favicon.ico -------------------------------------------------------------------------------- /static/chatui/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/favicon.svg -------------------------------------------------------------------------------- /static/chatui/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-128x128.png -------------------------------------------------------------------------------- /static/chatui/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-144x144.png -------------------------------------------------------------------------------- /static/chatui/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-192x192.png -------------------------------------------------------------------------------- /static/chatui/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-256x256.png -------------------------------------------------------------------------------- /static/chatui/icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-36x36.png -------------------------------------------------------------------------------- /static/chatui/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-48x48.png -------------------------------------------------------------------------------- /static/chatui/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-512x512.png -------------------------------------------------------------------------------- /static/chatui/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-72x72.png -------------------------------------------------------------------------------- /static/chatui/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon-96x96.png -------------------------------------------------------------------------------- /static/chatui/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/icon.svg -------------------------------------------------------------------------------- /static/chatui/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/logo.svg -------------------------------------------------------------------------------- /static/chatui/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/chatui/manifest.json -------------------------------------------------------------------------------- /static/huggingchat/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/apple-touch-icon.png -------------------------------------------------------------------------------- /static/huggingchat/assistants-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/assistants-thumbnail.png -------------------------------------------------------------------------------- /static/huggingchat/castle-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/castle-example.jpg -------------------------------------------------------------------------------- /static/huggingchat/favicon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/favicon-dark.svg -------------------------------------------------------------------------------- /static/huggingchat/favicon-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/favicon-dev.svg -------------------------------------------------------------------------------- /static/huggingchat/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/favicon.ico -------------------------------------------------------------------------------- /static/huggingchat/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/favicon.svg -------------------------------------------------------------------------------- /static/huggingchat/fulltext-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/fulltext-logo.svg -------------------------------------------------------------------------------- /static/huggingchat/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-128x128.png -------------------------------------------------------------------------------- /static/huggingchat/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-144x144.png -------------------------------------------------------------------------------- /static/huggingchat/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-192x192.png -------------------------------------------------------------------------------- /static/huggingchat/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-256x256.png -------------------------------------------------------------------------------- /static/huggingchat/icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-36x36.png -------------------------------------------------------------------------------- /static/huggingchat/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-48x48.png -------------------------------------------------------------------------------- /static/huggingchat/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-512x512.png -------------------------------------------------------------------------------- /static/huggingchat/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-72x72.png -------------------------------------------------------------------------------- /static/huggingchat/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon-96x96.png -------------------------------------------------------------------------------- /static/huggingchat/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/icon.svg -------------------------------------------------------------------------------- /static/huggingchat/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/logo.svg -------------------------------------------------------------------------------- /static/huggingchat/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/manifest.json -------------------------------------------------------------------------------- /static/huggingchat/routes.chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/routes.chat.json -------------------------------------------------------------------------------- /static/huggingchat/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/thumbnail.png -------------------------------------------------------------------------------- /static/huggingchat/tools-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/huggingchat/tools-thumbnail.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/static/robots.txt -------------------------------------------------------------------------------- /stub/@reflink/reflink/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stub/@reflink/reflink/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/stub/@reflink/reflink/package.json -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/chat-ui/HEAD/vite.config.ts --------------------------------------------------------------------------------