diff --git a/frontend/public/messages/en.json b/frontend/public/messages/en.json index 6e7df33e..caf7c7b4 100644 --- a/frontend/public/messages/en.json +++ b/frontend/public/messages/en.json @@ -103,13 +103,14 @@ "continueButtonText": "Continue", "createConfig": "Create Configuration", "createPromptConfigTitle": "New Model Configuration", - "credits": "Credits Left: ", + "credits": "Free Credits Left: ", "duration": "Duration", "durationTooltip": "Duration: Total time for complete output. Output streams automatically, with the first response occurring almost immediately.", "finishReason": "Finish Reason", "message": "Message", "messageContent": "Prompt Template", "modelResponse": "Model Response", + "modelResponse": "Model Response", "modelType": "Model", "modelVendor": "Provider", "noVariablesHeadline": "The template has no variables - add as necessary or click on run test", @@ -139,11 +140,11 @@ "saveButtonText": "Save", "saveMessage": "Add Message", "skipAndSaveButtonText": "Skip Testing and Save", + "testInputs": "Test Inputs", "testName": "Test Name", "testResults": "Test Results", "totalCost": "Total Cost", - "variables": "Variables", - "variablesTooltip": "Required test inputs. Please add the values for the template variables.", + "variablesTooltip": "Required test inputs. Please add the values for the template variables. Variables are values defined inside '{'} in the template", "wrapVariable": "use '{ '} to wrap a variable" }, "createProject": { diff --git a/frontend/src/app/[locale]/projects/[projectId]/applications/[applicationId]/config-create-wizard/page.tsx b/frontend/src/app/[locale]/projects/[projectId]/applications/[applicationId]/config-create-wizard/page.tsx index d80d827f..3a66fc50 100644 --- a/frontend/src/app/[locale]/projects/[projectId]/applications/[applicationId]/config-create-wizard/page.tsx +++ b/frontend/src/app/[locale]/projects/[projectId]/applications/[applicationId]/config-create-wizard/page.tsx @@ -160,7 +160,7 @@ export default function PromptConfigCreateWizard({ setTemplateVariables={handleTemplateVariablesChange} applicationId={applicationId} projectId={projectId} - projectCredits={project?.credits} + projectCredits={project?.credits ?? '1'} modelType={store.modelType} modelVendor={store.modelVendor} parameters={store.parameters} diff --git a/frontend/src/components/projects/[projectId]/applications/[applicationId]/config-create-wizard/prompt-config-testing-form.tsx b/frontend/src/components/projects/[projectId]/applications/[applicationId]/config-create-wizard/prompt-config-testing-form.tsx index 5e394d5d..40fdc03d 100644 --- a/frontend/src/components/projects/[projectId]/applications/[applicationId]/config-create-wizard/prompt-config-testing-form.tsx +++ b/frontend/src/components/projects/[projectId]/applications/[applicationId]/config-create-wizard/prompt-config-testing-form.tsx @@ -1,5 +1,5 @@ import { useTranslations } from 'next-intl'; -import { ChevronRight, PlayFill, Record, Repeat } from 'react-bootstrap-icons'; +import { PlayFill, Record, Repeat } from 'react-bootstrap-icons'; import { CardHeaderWithTooltip } from '@/components/card-header-with-tooltip'; import { PromptContentDisplay } from '@/components/prompt-display-components/prompt-content-display'; @@ -42,7 +42,6 @@ export function PromptConfigTestingForm({ modelType, parameters, promptConfigId, - showPromptTemplateDisplay = true, }: { applicationId: string; handleError: (error: unknown) => void; @@ -50,11 +49,10 @@ export function PromptConfigTestingForm({ modelType: ModelType; modelVendor: T; parameters: ModelParameters; - projectCredits?: string; + projectCredits: string; projectId: string; promptConfigId?: string; setTemplateVariables: (templateVariables: Record) => void; - showPromptTemplateDisplay?: boolean; templateVariables: Record; }) { const t = useTranslations('createConfigWizard'); @@ -121,21 +119,38 @@ export function PromptConfigTestingForm({ } }; + const responseContent = modelResponses + .map((message) => message.content) + .join(''); + return (
- {showPromptTemplateDisplay && ( + + {`${t('credits') + projectCredits}$`} + +
- )} + +
{expectedVariables.length > 0 && ( <> +
@@ -149,44 +164,36 @@ export function PromptConfigTestingForm({
)} -
- - - {projectCredits && ( - - {`${t('credits') + projectCredits}$`} - + {responseContent && ( + <> +
+

{t('modelResponse')}

+
+
+ + {responseContent} + +
+
+ + )} + {(testRecord ?? testFinishReason) && ( + <> +
+

{t('testResults')}

+
+ +
+ )} -
-

{t('testResults')}

-
- -
- - - {modelResponses - .map((message) => message.content) - .join('')} - -
-
-
); } diff --git a/frontend/src/components/projects/[projectId]/applications/[applicationId]/configs/[configId]/prompt-config-testing.tsx b/frontend/src/components/projects/[projectId]/applications/[applicationId]/configs/[configId]/prompt-config-testing.tsx index 951dd723..a89dea65 100644 --- a/frontend/src/components/projects/[projectId]/applications/[applicationId]/configs/[configId]/prompt-config-testing.tsx +++ b/frontend/src/components/projects/[projectId]/applications/[applicationId]/configs/[configId]/prompt-config-testing.tsx @@ -203,7 +203,6 @@ export function PromptConfigTesting({ setTemplateVariables={setTemplateVariables} handleError={handleError} messages={messages} - showPromptTemplateDisplay={false} />
({
{messageContent.map((msg, i) => ( diff --git a/frontend/src/components/prompt-display-components/prompt-test-inputs.tsx b/frontend/src/components/prompt-display-components/prompt-test-inputs.tsx index 88c25c50..bf72702f 100644 --- a/frontend/src/components/prompt-display-components/prompt-test-inputs.tsx +++ b/frontend/src/components/prompt-display-components/prompt-test-inputs.tsx @@ -11,11 +11,10 @@ export function PromptTestInputs({ }) { return (
-
+
{expectedVariables.map((variable) => (
- div { } .rounded-data-card { - @apply mt-3.5 rounded-4xl w-full bg-base-200 py-8 px-16; + @apply mt-3.5 rounded-4xl w-full bg-base-200 px-16; } .rounded-dark-card { - @apply mt-3.5 rounded-4xl w-full bg-base-300 py-8 px-16 shadow-xl; + @apply mt-3.5 rounded-4xl w-full bg-base-300 px-16 shadow-xl; } .analytics {