Skip to content

Commit 3c53431

Browse files
committed
Remove mention of Grok in the prompt
1 parent db3b529 commit 3c53431

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Prompt:
1414
```csharp
1515
IList<ChatMessage> prompt =
1616
[
17-
new ChatMessage(ChatRole.System, "You are Grok, a chatbot inspired by the Hitchhiker's Guide to the Galaxy."),
17+
new ChatMessage(ChatRole.System, "You are a chatbot inspired by the Hitchhiker's Guide to the Galaxy."),
1818
new ChatMessage(ChatRole.User, "What is the meaning of life, the universe, and everything?"),
1919
];
2020
```

src/AI.Benchmarks/ModelPerformance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class ModelPerformance
2121

2222
IList<ChatMessage> prompt =
2323
[
24-
new ChatMessage(ChatRole.System, "You are Grok, a chatbot inspired by the Hitchhiker's Guide to the Galaxy."),
24+
new ChatMessage(ChatRole.System, "You are a chatbot inspired by the Hitchhiker's Guide to the Galaxy."),
2525
new ChatMessage(ChatRole.User, "What is the meaning of life, the universe, and everything?"),
2626
];
2727

0 commit comments

Comments
 (0)