Solve what? What is this screenshot showing us?
Please provide the text, from the actual log file.
Broken pipe means that something tried to write on a communications channel (pipe or socket) that had already been closed, for reception, by the receiving end. One cause of this is sending API requests and not waiting for, and reading out, the responses.
This sounds like a classic case of the receiving end closing the connection prematurely—“broken pipe” errors are usually a result of trying to write to a socket that’s no longer listening. If you’re interacting with an external API or even a local service via AGI or AMI, make sure you’re reading the full response before closing out your session. Also, as others mentioned, posting the raw log snippet instead of a screenshot would help a lot—especially for those of us trying to grep through errors or search based on exact phrasing.