-
Notifications
You must be signed in to change notification settings - Fork 790
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to read the reasoning_content with Microsoft.Extensions.AI? #6208
Comments
What library are you using to access deepseek? |
I use the "using Microsoft.Extensions.AI;" There's my complete code, it's the sample demo using Microsoft.Extensions.AI;
using System.ClientModel;
using System.ComponentModel;
namespace Issues
{
internal class Program
{
static async Task Main(string[] args)
{
var opeAiClient = new OpenAI.OpenAIClient(
new ApiKeyCredential(Environment.GetEnvironmentVariable("OpenAIKey")!),
new OpenAI.OpenAIClientOptions()
{
Endpoint = new Uri(Environment.GetEnvironmentVariable("OpenAIUri")!)
});
IChatClient chatClient = new OpenAIChatClient(opeAiClient, "deepseek-r1");
chatClient = new ChatClientBuilder(chatClient).UseFunctionInvocation().Build();
var tmpToolInstance = new TestTool();
List<AITool> tools =
[
//AIFunctionFactory.Create(tmpToolInstance.Has_Not_Any_Info),
// AIFunctionFactory.Create(tmpToolInstance.Update_Collection_Info),
];
var messages = new List<ChatMessage>()
{
new(ChatRole.System,@"Attempt to understand user issues and record relevant information.
##Information Content
Number:1
Description: Item Name
Number:2
Description: Quantity of items"),
};
while (true)
{
Console.Write($"\n\n user >>");
var userMsg = string.Empty;
while (string.IsNullOrWhiteSpace(userMsg))
{
userMsg = Console.ReadLine();
}
messages.Add(new ChatMessage(ChatRole.User, userMsg));
var aiRes = chatClient.GetStreamingResponseAsync(messages, new ChatOptions()
{
Tools = tools
});
await foreach (var chunk in aiRes)
{
Console.Write(chunk.Text);
}
}
}
public class TestTool
{
[Description("If no useful information is collected, this function will not return any information")]
public void Has_Not_Any_Info()
{
Console.WriteLine($"\n\n Call the method Has_Not_Any_Info ");
}
[Description("Save a collected information, this function will not return any information")]
public void Update_Collection_Info([Description("Info number")] int number, [Description("Detail info")] string data)
{
Console.WriteLine($"\n\n call the method Update_Collection_Info number: {number} data: {data}");
}
}
}
} Today, I think I have found the reason_content. |
The OpenAI library does not currently expose the ability to access this information. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm writing the deepseek-r1 agent with Microsoft.Extensions.AI, but I can't to read the reasoning_content in the Microsoft.Extensions.AI
There's the api's raw json response.
There's my code.
I can't find anything about the reasoning_content in debug model.
The text was updated successfully, but these errors were encountered: