Skip to content

Commit

Permalink
fix(chat): replace "model" by "agent" term (Issue #2797) (#2800)
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaBondar authored Dec 12, 2024
1 parent 643b7e3 commit a0ab0e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/chat-e2e/src/testData/expectedConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const ExpectedConstants = {
requiredFieldErrorMessage: 'Please fill in all required fields',
isolatedUrl: (modelId: string) => `${config.use!.baseURL}/models/${modelId}`,
modelNotFountErrorMessage:
'Model is not found.Please contact your administrator.',
'Agent is not found.Please contact your administrator.',
nameWithDotErrorMessage: 'Using a dot at the end of a name is not permitted.',
notAllowedDuplicatedFolderNameErrorMessage:
'Not allowed to have folders with same names',
Expand Down
2 changes: 1 addition & 1 deletion apps/chat/src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ export function Chat() {
return (
<div className="h-screen pt-2">
<NotFoundEntity
entity={t('Model is')}
entity={t('Agent is')}
additionalText={t('Please contact your administrator.') || ''}
/>
</div>
Expand Down

0 comments on commit a0ab0e7

Please sign in to comment.