Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenkirstaetter committed Dec 16, 2024
1 parent 9ecc8fc commit cd2eb28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ IGenerativeAI genAi = new GoogleAI(apiKey);
var model = genAi.GenerativeModel(Model.Gemini15ProLatest, systemInstruction: systemInstruction);
var request = new GenerateContentRequest(prompt);

var response = await model.GenerateContent(prompt);
var response = await model.GenerateContent(request);
Console.WriteLine(response.Text);
```

Expand Down

0 comments on commit cd2eb28

Please sign in to comment.