diff --git a/commanddash_web_app/src/lib/components/chat/ChatIntroduction.svelte b/commanddash_web_app/src/lib/components/chat/ChatIntroduction.svelte index 65788c8c..ed2934a3 100644 --- a/commanddash_web_app/src/lib/components/chat/ChatIntroduction.svelte +++ b/commanddash_web_app/src/lib/components/chat/ChatIntroduction.svelte @@ -1,46 +1,61 @@
-
-
- {envPublic.PUBLIC_APP_NAME} -
+
+
+ +

+ {agentDisplayName} +

+

- AI-First (docs) in your users IDE + {agentDescription}

@@ -48,14 +63,17 @@

Use case

{#each questionnaires as questionnaire} - {/each}
- -
\ No newline at end of file + diff --git a/commanddash_web_app/src/lib/components/chat/ChatWindow.svelte b/commanddash_web_app/src/lib/components/chat/ChatWindow.svelte index d9e60ac7..11c123b0 100644 --- a/commanddash_web_app/src/lib/components/chat/ChatWindow.svelte +++ b/commanddash_web_app/src/lib/components/chat/ChatWindow.svelte @@ -12,6 +12,9 @@ export let messages: Message[] = []; export let loading = false; export let agentName: string = "dash"; + export let agentDisplayName: string = "Dash"; + export let agentDescription: string = ""; + export let agentLogo: string = ""; export let agentVersion: string = "1.0.3"; export let agentPrivate: boolean = false; @@ -90,7 +93,7 @@ /> {/if} {:else} - + {/if} diff --git a/commanddash_web_app/src/routes/conversation/[id]/+page.svelte b/commanddash_web_app/src/routes/conversation/[id]/+page.svelte index f73aebb8..d60c970a 100644 --- a/commanddash_web_app/src/routes/conversation/[id]/+page.svelte +++ b/commanddash_web_app/src/routes/conversation/[id]/+page.svelte @@ -34,4 +34,11 @@ }); - +