microsoft / typechat.net

MIT License
184 stars 26 forks source link

Missing newline character in string concatenation in file ‘PromptLibrary.cs’ #191

Closed JiChao99 closed 11 months ago

JiChao99 commented 11 months ago

examples/typechat.examplesLib/PromptLibrary.cs

-      PromptSection section = $"Use precise date and times RELATIVE TO CURRENT DATE: {now.ToLongDateString()} CURRENT TIME: {now.ToLongTimeString()}";
+      PromptSection section = $"Use precise date and times RELATIVE TO CURRENT DATE: {now.ToLongDateString()} CURRENT TIME: {now.ToLongTimeString()}\n";
       section += "Also turn ranges like next week and next month into precise dates";
umeshma commented 11 months ago

Thank you for reporting this. I have merged in the fix.