Root Cause
The parser was expecting chunks to contain triple backticks (`) as a marker to start appending content. However, the chunks were being split into smaller pieces that only contained a pair of backticks () and a backtick followed by a newline character (`\n). This caused the parser to never encounter the expected triple backticks, resulting in empty responses.
Fixes Issue #94: Chat Gives Empty Response
Root Cause The parser was expecting chunks to contain triple backticks (
`) as a marker to start appending content. However, the chunks were being split into smaller pieces that only contained a pair of backticks (
) and a backtick followed by a newline character (`\n). This caused the parser to never encounter the expected triple backticks, resulting in empty responses.