Skip to content

Commit 3397f5c

Browse files
Update CreateSettings.cs
- Fix grammar in "secret" system prompt.
1 parent c423ac0 commit 3397f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unity/Editor/CreateSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private void OnGUI()
122122

123123
// Replace the system prompt to explicitly instruct the model to use only these emotions.
124124
// (Note: some smaller models might still mess up, even with strict prompts.)
125-
createAgentScriptContent = createAgentScriptContent.Replace("For example: <angry>, <happy>, <sad>, etc.", $"You can only use this emotions: {emotionsString}. WRITE THEM ONLY LIKE I SAID.");
125+
createAgentScriptContent = createAgentScriptContent.Replace("For example: <angry>, <happy>, <sad>, etc.", $"You can only use these emotions: {emotionsString}. WRITE THEM ONLY LIKE I SAID.");
126126

127127
// Turn the template into a real editor window script.
128128
createAgentScriptContent = createAgentScriptContent.Replace("CreateAgentTemplate", "CreateAgent");

0 commit comments

Comments
 (0)