Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created September 21, 2024 11:07
Show Gist options
  • Save wullemsb/1aca79ce1005f087afafe5763e42bee4 to your computer and use it in GitHub Desktop.
Save wullemsb/1aca79ce1005f087afafe5763e42bee4 to your computer and use it in GitHub Desktop.
var chat = new Chat(ollama);
while (true)
{
Console.Write("User>");
var message = Console.ReadLine();
Console.Write("Assistant>");
await foreach (var answerToken in chat.Send(message))
Console.Write(answerToken);
Console.WriteLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment