diff --git a/web/hooks/useActiveModel.ts b/web/hooks/useActiveModel.ts
index eb207a8fd..5da30ecf7 100644
--- a/web/hooks/useActiveModel.ts
+++ b/web/hooks/useActiveModel.ts
@@ -27,7 +27,7 @@ export function useActiveModel() {
(activeModel && activeModel.id === modelId) ||
(stateModel.model === modelId && stateModel.loading)
) {
- console.debug(`Model ${modelId} is already init. Ignore..`)
+ console.debug(`Model ${modelId} is already initialized. Ignore..`)
return
}
@@ -64,13 +64,13 @@ export function useActiveModel() {
}))
} else {
console.debug(
- `Init model ${modelId} successfully!, take ${
+ `Model ${modelId} successfully initialized! Took ${
Date.now() - currentTime
}ms`
)
setActiveModel(model)
toaster({
- title: 'Success start a Model',
+ title: 'Success!',
description: `Model ${modelId} has been started.`,
})
setStateModel(() => ({
@@ -89,7 +89,7 @@ export function useActiveModel() {
setActiveModel(undefined)
setStateModel({ state: 'start', loading: false, model: '' })
toaster({
- title: 'Success stop a Model',
+ title: 'Success!',
description: `Model ${modelId} has been stopped.`,
})
}, 500)
diff --git a/web/hooks/useSendChatMessage.ts b/web/hooks/useSendChatMessage.ts
index 42ccda9b2..ad03abfb6 100644
--- a/web/hooks/useSendChatMessage.ts
+++ b/web/hooks/useSendChatMessage.ts
@@ -49,7 +49,7 @@ export default function useSendChatMessage() {
const summaryMsg: ChatCompletionMessage = {
role: ChatCompletionRole.User,
content:
- 'summary this conversation in less than 5 words, the response should just include the summary',
+ 'Summarize this conversation in less than 5 words, the response should just include the summary',
}
// Request convo summary
setTimeout(async () => {
diff --git a/web/screens/Chat/ChatInstruction/index.tsx b/web/screens/Chat/ChatInstruction/index.tsx
index bff82101e..6e7d3ddb6 100644
--- a/web/screens/Chat/ChatInstruction/index.tsx
+++ b/web/screens/Chat/ChatInstruction/index.tsx
@@ -31,10 +31,7 @@ const ChatInstruction = () => {
}
return (
-
- What does this Assistant do? How does it behave? What should it avoid
- doing?
-
+
(Optional) Give your assistant an initial prompt.
{!isSettingInstruction && activeConvoId && (
<>
>
)}
@@ -60,7 +57,7 @@ const ChatInstruction = () => {
className="w-32"
onClick={() => setSystemPrompt(instruction)}
>
- Set Instruction
+ Set a Prompt
)}
diff --git a/web/screens/Chat/index.tsx b/web/screens/Chat/index.tsx
index 492880e00..633c699cc 100644
--- a/web/screens/Chat/index.tsx
+++ b/web/screens/Chat/index.tsx
@@ -197,8 +197,8 @@ const ChatScreen = () => {
{downloadedModels.length === 0 && (
- {`Ups, you don't have a Model`}
- {`let’s download your first model.`}
+ {`Oops, you don't have a Model`}
+ {`Let’s download your first model.`}