Added word for trained prompt
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -109,7 +109,7 @@ function App() { | ... | @@ -109,7 +109,7 @@ function App() { |
| 109 | userModifiedInput = chatInput + "?"; | 109 | userModifiedInput = chatInput + "?"; |
| 110 | } | 110 | } |
| 111 | } | 111 | } |
| 112 | let trained_prompt = chatInput + '. Respond without using markdown, HTML tags, or any special symbols for formatting.'; | 112 | let trained_prompt = chatInput + '. Respond without using markdown, HTML tags, asterisks, hashtags, or any special symbols for formatting.'; |
| 113 | let chatLogNew = [...chatLog, { user: "user", message: `${userModifiedInput}`} ] | 113 | let chatLogNew = [...chatLog, { user: "user", message: `${userModifiedInput}`} ] |
| 114 | setChatInput(""); | 114 | setChatInput(""); |
| 115 | setChatLog(chatLogNew) | 115 | setChatLog(chatLogNew) | ... | ... |
-
Please register or sign in to post a comment