You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Setting output verbosity: similarly, [output verbosity](https://platform.openai.com/docs/guides/latest-model#verbosity) is not exposed in the base API.
122
119
123
120
These can be used as extension properties on `ChatOptions` whenever `Devlooped.Extensions.AI.OpenAI` is imported:
124
121
125
122
```csharp
126
123
varoptions=newChatOptions
127
124
{
128
-
ReasoningEffort=ReasoningEffort.High, // 👈 or Medium/Low/Minimal/None, extension property
129
125
Verbosity=Verbosity.Low// 👈 or Medium/High, extension property
Copy file name to clipboardExpand all lines: src/Extensions.Console/JsonConsoleLoggingExtensions.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public ChatClientBuilder UseJsonConsoleLogging(JsonConsoleOptions? consoleOption
51
51
{
52
52
consoleOptions??=JsonConsoleOptions.Default;
53
53
54
-
if(consoleOptions.InteractiveConfirm&&ConsoleExtensions.IsConsoleInteractive&&!AnsiConsole.Confirm("Do you want to enable rich JSON console logging for HTTP pipeline messages?"))
54
+
if(consoleOptions.InteractiveConfirm&&ConsoleExtensions.IsConsoleInteractive&&!AnsiConsole.Confirm("Do you want to enable rich JSON console logging for chat messages and responses?"))
0 commit comments