We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a8679 commit c0d8505Copy full SHA for c0d8505
lib/ex_openai/streaming_client.ex
@@ -148,6 +148,14 @@ defmodule ExOpenAI.StreamingClient do
148
{:noreply, state}
149
end
150
151
+ def handle_info(
152
+ %HTTPoison.AsyncChunk{chunk: ": OPENROUTER PROCESSING\n\n"},
153
+ state
154
+ ) do
155
+ Logger.debug("received : OPENROUTER PROCESSING stamp")
156
+ {:noreply, state}
157
+ end
158
+
159
# def handle_info(%HTTPoison.AsyncChunk{chunk: "data: " <> chunk_data}, state) do
160
# Logger.debug("Received AsyncChunk DATA: #{inspect(chunk_data)}")
161
# end
0 commit comments