From bc6ebaaf4444652f037acb4204f36a84b8f7c63c Mon Sep 17 00:00:00 2001 From: Yaohui Liu Date: Thu, 11 May 2023 16:34:30 +0800 Subject: [PATCH] docs: update readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1595d0dc..85c2ed58 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ while (true) Console.ForegroundColor = ConsoleColor.Green; var question = Console.ReadLine(); Console.ForegroundColor = ConsoleColor.White; - var outputs = _model.Call(question); + var outputs = session.Chat(question); // It's simple to use the chat API. foreach (var output in outputs) { Console.Write(output);