microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
devtools-port-no-auth

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.AI.Models.OpenAI/OpenAIChatModel.Options.cs

22lines · modeblame

82a4e3c3Rajan1 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
73e7847aAlex Acebo1 years ago4using Microsoft.Teams.Common.Logging;
5
6using OpenAI;
7
8namespace Microsoft.Teams.AI.Models.OpenAI;
9
10public partial class OpenAIChatModel
11{
12/// <summary>
13/// the model options
14/// </summary>
15public class Options : OpenAIClientOptions
16{
17/// <summary>
18/// the logger instance
19/// </summary>
20public ILogger? Logger { get; set; }
21}
22}