Skip to content

Commit

Permalink
ui: update form default values
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Apr 16, 2024
1 parent 744d90e commit d7b6f01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/dialogs/create-chat-engine-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ export function CreateChatEngineDialog ({
return (
<ImportDialog
trigger={<Button className="gap-1" size="sm" variant="secondary">New</Button>}
title="Create chat engine"
title="Create Chat Engine"
onSubmit={createChatEngine}
defaultValues={{
name: '',
engine: 'condense-question',
engine_options: {
reranker: { provider: 'cohere', config: {} },
llm: { provider: 'openai', config: {} },
reranker: { provider: 'llm', config: { model: '-' } },
llm: { provider: 'openai', config: { model: 'gpt-3.5-turbo' } },
prompts: {
textQa: defaultTextQaPrompt,
refine: defaultRefinePrompt,
Expand Down

0 comments on commit d7b6f01

Please sign in to comment.