Skip to content

Commit bf15552

Browse files
Fix typo in system message content
1 parent eaef62b commit bf15552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn-pr/wwl-data-ai/build-copilot-ai-studio/includes/3b-openai-client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ search_key = searchConnection.key
3636

3737
# Initialize prompt with system message
3838
prompt = [
39-
{"role": "system", "content": "You are a helful AI assistant."}
39+
{"role": "system", "content": "You are a helpful AI assistant."}
4040
]
4141

4242
# Add a user input message to the prompt
@@ -109,7 +109,7 @@ using OpenAI.Chat;
109109
// Initialize prompt with system message
110110
var prompt = new List<ChatMessage>()
111111
{
112-
new SystemChatMessage("You are a helful AI assistant.")
112+
new SystemChatMessage("You are a helpful AI assistant.")
113113
};
114114

115115
// Add a user input message to the prompt

0 commit comments

Comments
 (0)