diff --git a/web/src/app/admin/assistants/AssistantEditor.tsx b/web/src/app/admin/assistants/AssistantEditor.tsx index 1ff355db4..c3d613c0c 100644 --- a/web/src/app/admin/assistants/AssistantEditor.tsx +++ b/web/src/app/admin/assistants/AssistantEditor.tsx @@ -481,8 +481,32 @@ export function AssistantEditor({ )} + -
+
+
+
+ Capabilities{" "} +
+ + + + + + +

+ You can give your assistant advanced capabilities + like image generation +

+
+
+
+
+ Advanced +
+
+ +
{imageGenerationTool && checkLLMSupportsImageInput( providerDisplayNameToProviderName.get( @@ -522,7 +546,6 @@ export function AssistantEditor({ {ccPairs.length > 0 && ( <> -
<> @@ -647,6 +670,8 @@ export function AssistantEditor({ <> {customTools.map((tool) => ( )}
-
- {llmProviders.length > 0 && ( - <> - - - { - setFieldValue("task_prompt", e.target.value); - triggerFinalPromptUpdate( - values.system_prompt, - e.target.value, - searchToolEnabled() - ); - }} - explanationText="Learn about prompting in our docs!" - explanationLink="https://docs.danswer.dev/guides/assistants" - /> - - )} -
-
-
- Add Starter Messages (Optional){" "} -
-
- ) => ( -
- {values.starter_messages && - values.starter_messages.length > 0 && - values.starter_messages.map((_, index) => { - return ( -
-
-
-
- - - Shows up as the "title" for - this Starter Message. For example, - "Write an email". - - - -
- -
- - - A description which tells the user what - they might want to use this Starter - Message for. For example "to a - client about a new feature" - - - -
- -
- - - The actual message to be sent as the - initial user message if a user selects - this starter prompt. For example, - "Write me an email to a client - about a new billing feature we just - released." - - - -
-
-
- arrayHelpers.remove(index)} - /> -
-
-
- ); - })} - - -
- )} - /> -
- - {isPaidEnterpriseFeaturesEnabled && - userGroups && - (!user || user.role === "admin") && ( + {llmProviders.length > 0 && ( <> - { + setFieldValue("task_prompt", e.target.value); + triggerFinalPromptUpdate( + values.system_prompt, + e.target.value, + searchToolEnabled() + ); + }} + explanationText="Learn about prompting in our docs!" + explanationLink="https://docs.danswer.dev/guides/assistants" /> - - {userGroups && - userGroups.length > 0 && - !values.is_public && ( -
- - Select which User Groups should have access to - this Assistant. - -
- {userGroups.map((userGroup) => { - const isSelected = values.groups.includes( - userGroup.id - ); - return ( - { - if (isSelected) { - setFieldValue( - "groups", - values.groups.filter( - (id) => id !== userGroup.id - ) - ); - } else { - setFieldValue("groups", [ - ...values.groups, - userGroup.id, - ]); - } - }} - > -
- -
- {userGroup.name} -
-
-
- ); - })} -
-
- )} )} +
+
+
+ Add Starter Messages (Optional){" "} +
+
+ + ) => ( +
+ {values.starter_messages && + values.starter_messages.length > 0 && + values.starter_messages.map((_, index) => { + return ( +
+
+
+
+ + + Shows up as the "title" for + this Starter Message. For example, + "Write an email". + + + +
-
- +
+ + + A description which tells the user + what they might want to use this + Starter Message for. For example + "to a client about a new + feature" + + + +
+ +
+ + + The actual message to be sent as the + initial user message if a user selects + this starter prompt. For example, + "Write me an email to a client + about a new billing feature we just + released." + + + +
+
+
+ + arrayHelpers.remove(index) + } + /> +
+
+
+ ); + })} + + +
+ )} + /> +
+ + {isPaidEnterpriseFeaturesEnabled && + userGroups && + (!user || user.role === "admin") && ( + <> + + + + + {userGroups && + userGroups.length > 0 && + !values.is_public && ( +
+ + Select which User Groups should have access to + this Assistant. + +
+ {userGroups.map((userGroup) => { + const isSelected = values.groups.includes( + userGroup.id + ); + return ( + { + if (isSelected) { + setFieldValue( + "groups", + values.groups.filter( + (id) => id !== userGroup.id + ) + ); + } else { + setFieldValue("groups", [ + ...values.groups, + userGroup.id, + ]); + } + }} + > +
+ +
+ {userGroup.name} +
+
+
+ ); + })} +
+
+ )} + + )} + +
+ +