What happened?
Hello!
I am currently using Alpha3 and ran into this problem:
I called RestHandler#sendMessage and expected to create a task with one TextPart.
But we get a part object like this:
{
"tasks": [
{
"xxx": "xxx",
"parts": [
{
"text": "abc",
"metadata": {},
"filename": "",
"mediaType": ""
}
]
}
]
}
I believe the filename field is not supposed to be there.
I also found RestHandler use grpc models/functions internally, which might be the problem: when it performs proto deserialization, it added the filename to the part model.
Relevant log output
Code of Conduct