@iinm/plain-agent 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iinm/plain-agent",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A lightweight CLI-based coding agent",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -419,14 +419,6 @@ function convertOpenAIStreamDataToAgentPartialContent(streamEvent) {
419
419
  };
420
420
  }
421
421
 
422
- if (streamEvent.type === "response.reasoning_summary_text.done") {
423
- return {
424
- type: "thinking",
425
- position: "delta",
426
- content: streamEvent.text,
427
- };
428
- }
429
-
430
422
  if (streamEvent.type === "response.output_item.done") {
431
423
  if (streamEvent.item.type === "reasoning") {
432
424
  return {