/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/LanguageModelProvider/FoundryLocal/PromptTemplate.cs
16 строк
497 B
Shawn Yuan
Advanced Paste: AI pasting enhancement (#42374)
05 ноя 2025, 11:13
Не верифицирован
05 ноя 2025, 11:13
a3b8dc6
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Text.Json.Serialization; namespace LanguageModelProvider.FoundryLocal; internal sealed record PromptTemplate { [JsonPropertyName("assistant")] public string Assistant { get; init; } = string.Empty; [JsonPropertyName("prompt")] public string Prompt { get; init; } = string.Empty; }