ai-protocol-adapters 1.0.0-alpha.15 → 1.0.0-alpha.16

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/dist/index.js CHANGED
@@ -4300,9 +4300,6 @@ var StreamingProtocolAdapter = class {
4300
4300
  );
4301
4301
  } else if (state.thinkingBlockStarted) {
4302
4302
  sseLines.push(
4303
- "event: content_block_delta",
4304
- 'data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"</thinking>"}}',
4305
- "",
4306
4303
  "event: content_block_stop",
4307
4304
  'data: {"type":"content_block_stop","index":0}',
4308
4305
  ""
package/dist/index.mjs CHANGED
@@ -4193,9 +4193,6 @@ var StreamingProtocolAdapter = class {
4193
4193
  );
4194
4194
  } else if (state.thinkingBlockStarted) {
4195
4195
  sseLines.push(
4196
- "event: content_block_delta",
4197
- 'data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"</thinking>"}}',
4198
- "",
4199
4196
  "event: content_block_stop",
4200
4197
  'data: {"type":"content_block_stop","index":0}',
4201
4198
  ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-protocol-adapters",
3
- "version": "1.0.0-alpha.15",
3
+ "version": "1.0.0-alpha.16",
4
4
  "description": "Universal AI Protocol Converter - OpenAI ⇄ Anthropic with full TypeScript support",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",