/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/LanguageModelProvider/ILanguageModelProvider.cs
20 строк
555 B
Kai Tao
Advanced Paste: No cache for foundry local model list (#43716)
20 ноя 2025, 04:57
Не верифицирован
20 ноя 2025, 04:57
4a0d991
Код
Авторство
О чём код?
// 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 Microsoft.Extensions.AI; namespace LanguageModelProvider; public interface ILanguageModelProvider { string Name { get; } string ProviderDescription { get; } Task<IEnumerable<ModelDetails>> GetModelsAsync(CancellationToken cancelationToken = default); IChatClient? GetIChatClient(string modelId); string GetIChatClientString(string url); }