We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaef62b commit bf15552Copy full SHA for bf15552
learn-pr/wwl-data-ai/build-copilot-ai-studio/includes/3b-openai-client.md
@@ -36,7 +36,7 @@ search_key = searchConnection.key
36
37
# Initialize prompt with system message
38
prompt = [
39
- {"role": "system", "content": "You are a helful AI assistant."}
+ {"role": "system", "content": "You are a helpful AI assistant."}
40
]
41
42
# Add a user input message to the prompt
@@ -109,7 +109,7 @@ using OpenAI.Chat;
109
// Initialize prompt with system message
110
var prompt = new List<ChatMessage>()
111
{
112
- new SystemChatMessage("You are a helful AI assistant.")
+ new SystemChatMessage("You are a helpful AI assistant.")
113
};
114
115
// Add a user input message to the prompt
0 commit comments