claudish 3.3.9 → 3.3.10

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -57191,6 +57191,7 @@ class OpenAIHandler {
57191
57191
  const functionCalls = new Map;
57192
57192
  const stream = new ReadableStream({
57193
57193
  start: async (controller) => {
57194
+ log(`[OpenAIHandler] Sending message_start with placeholder tokens`);
57194
57195
  const messageStart = {
57195
57196
  type: "message_start",
57196
57197
  message: {
@@ -57207,6 +57208,10 @@ class OpenAIHandler {
57207
57208
  controller.enqueue(encoder.encode(`event: message_start
57208
57209
  data: ${JSON.stringify(messageStart)}
57209
57210
 
57211
+ `));
57212
+ controller.enqueue(encoder.encode(`event: ping
57213
+ data: {"type":"ping"}
57214
+
57210
57215
  `));
57211
57216
  try {
57212
57217
  while (true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudish",
3
- "version": "3.3.9",
3
+ "version": "3.3.10",
4
4
  "description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",