- When using a Google Drive Service Account, you can either have Danswer
+ When using a Google Drive Service Account, you can either have Darwin
act as the service account itself OR you can specify an account for
the service account to impersonate.
@@ -378,7 +378,7 @@ export const DriveOAuthSection = ({
@@ -197,7 +197,7 @@ function Main() {
Embedding models are used to generate embeddings for your documents,
- which then power Danswer's search.
+ which then power Darwin's search.
{currentModel ? (
@@ -277,9 +277,9 @@ function Main() {
.
-
NOTE: not all models listed will work with Danswer, since
+
NOTE: not all models listed will work with Darwin, since
some have unique interfaces or special requirements. If in doubt,
- reach out to the Danswer team.
+ reach out to the Darwin team.
diff --git a/web/src/app/admin/models/llm/LLMConfiguration.tsx b/web/src/app/admin/models/llm/LLMConfiguration.tsx
index f8fb7512740..d157b034e9c 100644
--- a/web/src/app/admin/models/llm/LLMConfiguration.tsx
+++ b/web/src/app/admin/models/llm/LLMConfiguration.tsx
@@ -155,7 +155,7 @@ export function LLMConfiguration() {
>
) : (
- Please set one up below in order to start using Danswer!
+ Please set one up below in order to start using Darwin!
)}
diff --git a/web/src/app/admin/settings/SettingsForm.tsx b/web/src/app/admin/settings/SettingsForm.tsx
index 858a5c0ff8b..ee6983c9252 100644
--- a/web/src/app/admin/settings/SettingsForm.tsx
+++ b/web/src/app/admin/settings/SettingsForm.tsx
@@ -242,7 +242,7 @@ export function SettingsForm() {
Chat Settings
{
const numValue = parseInt(e.target.value, 10);
diff --git a/web/src/app/admin/settings/page.tsx b/web/src/app/admin/settings/page.tsx
index eff4262f0d8..c7537ecbfda 100644
--- a/web/src/app/admin/settings/page.tsx
+++ b/web/src/app/admin/settings/page.tsx
@@ -12,7 +12,7 @@ export default async function Page() {
/>
- Manage general Danswer settings applicable to all users in the
+ Manage general Darwin settings applicable to all users in the
workspace.
diff --git a/web/src/app/assistants/gallery/AssistantsGallery.tsx b/web/src/app/assistants/gallery/AssistantsGallery.tsx
index 4b9eaff718b..64c96af2cff 100644
--- a/web/src/app/assistants/gallery/AssistantsGallery.tsx
+++ b/web/src/app/assistants/gallery/AssistantsGallery.tsx
@@ -194,7 +194,7 @@ export function AssistantsGallery({
)}
{assistant.description}
- Author: {assistant.owner?.email || "Danswer"}
+ Author: {assistant.owner?.email || "Darwin"}
))}
diff --git a/web/src/app/auth/login/LoginText.tsx b/web/src/app/auth/login/LoginText.tsx
index b465ad33530..52a241bad94 100644
--- a/web/src/app/auth/login/LoginText.tsx
+++ b/web/src/app/auth/login/LoginText.tsx
@@ -12,6 +12,6 @@ export const LoginText = () => {
}
return (
- <>Log In to {settings?.enterpriseSettings?.application_name || "Danswer"}>
+ <>Log In to {settings?.enterpriseSettings?.application_name || "Darwin"}>
);
};
diff --git a/web/src/app/auth/signup/page.tsx b/web/src/app/auth/signup/page.tsx
index 9a2631c4350..6a3c15abc48 100644
--- a/web/src/app/auth/signup/page.tsx
+++ b/web/src/app/auth/signup/page.tsx
@@ -56,7 +56,7 @@ const Page = async () => {
- Sign Up for Danswer
+ Sign Up for Darwin
{alternativeAssistant
? alternativeAssistant.name
- : personaName || "Danswer"}
+ : personaName || "Darwin"}
{query === undefined &&
diff --git a/web/src/app/chat/sessionSidebar/ChatSidebar.tsx b/web/src/app/chat/sessionSidebar/ChatSidebar.tsx
index 9b0d94020f0..e9207488e06 100644
--- a/web/src/app/chat/sessionSidebar/ChatSidebar.tsx
+++ b/web/src/app/chat/sessionSidebar/ChatSidebar.tsx
@@ -89,12 +89,12 @@ export const ChatSidebar = ({
{!NEXT_PUBLIC_DO_NOT_USE_TOGGLE_OFF_DANSWER_POWERED && (
- Powered by Danswer
+ Powered by Darwin
)}