mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 00:42:56 +00:00
13 lines
363 B
C#
13 lines
363 B
C#
|
using AIStudio.Settings;
|
||
|
|
||
|
namespace AIStudio.Tools;
|
||
|
|
||
|
public static class ChatTemplateExtensions
|
||
|
{
|
||
|
public static IEnumerable<ChatTemplate> GetAllChatTemplates(this IEnumerable<ChatTemplate> chatTemplates)
|
||
|
{
|
||
|
yield return ChatTemplate.NO_CHATTEMPLATE;
|
||
|
foreach (var chatTemplate in chatTemplates)
|
||
|
yield return chatTemplate;
|
||
|
}
|
||
|
}
|