Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 26, 2024
1 parent 5024615 commit e32a8dc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions MyApp/_posts/2024-11-28_ai-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,10 @@ var response = client.Post(new QueueOpenAiChatCompletion
Request = new()
{
Model = "gpt-4-turbo",
Messages = new List<OpenAiMessage>
{
Messages = [
new() { Role = "system", Content = "You are a helpful AI assistant." },
new() { Role = "user", Content = "How do LLMs work?" }
},
],
MaxTokens = 50
}
});
Expand Down

0 comments on commit e32a8dc

Please sign in to comment.