How do I return file in current implementation? #129
-
Hello! Just checked the docs and tests and did not find any sample on how I can return file as tool answer, for example. Could anyone shed some light on it? |
Beta Was this translation helpful? Give feedback.
Answered by
stephentoub
Mar 28, 2025
Replies: 2 comments
-
There are a variety of ways, but probably the easiest is to just return a [McpServerTool]
public static DataContent GetMyImage()
{
byte[] bytes = File.ReadAllBytes("path/to/my/image.png");
return new DataContent(bytes, "image/png");
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
eiriktsarpalis
-
Thanks a lot, will try |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are a variety of ways, but probably the easiest is to just return a
Microsoft.Extensions.AI.DataContent
, e.g.