@rynfar/meridian 1.27.1 → 1.27.2

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.
@@ -7868,8 +7868,8 @@ var passthroughAdapter = {
7868
7868
  usesPassthrough() {
7869
7869
  return true;
7870
7870
  },
7871
- prefersStreaming(_body) {
7872
- return false;
7871
+ prefersStreaming(body) {
7872
+ return body?.stream === true;
7873
7873
  }
7874
7874
  };
7875
7875
 
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  startProxyServer
4
- } from "./cli-9bsar34x.js";
4
+ } from "./cli-mx5hhmme.js";
5
5
  import"./cli-rtab0qa6.js";
6
6
  import"./cli-m9pfb7h9.js";
7
7
  import {
@@ -8,8 +8,7 @@
8
8
  *
9
9
  * Key characteristics:
10
10
  * - Passthrough mode always enabled (overrides MERIDIAN_PASSTHROUGH env var)
11
- * - Non-streaming: LiteLLM health checks don't send x-litellm-* headers
12
- * so we can't reliably distinguish them; non-streaming is safe for all requests
11
+ * - Streaming: respects the client's stream parameter (body.stream)
13
12
  * - Session continuity: uses x-litellm-session-id header when present
14
13
  * - CWD: extracts from <env cwd="..."> blocks in the prompt if available
15
14
  * - MCP server name: "litellm" (tools appear as mcp__litellm__*)
@@ -1 +1 @@
1
- {"version":3,"file":"passthrough.d.ts","sourceRoot":"","sources":["../../../src/proxy/adapters/passthrough.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAiD9C,eAAO,MAAM,kBAAkB,EAAE,YA4EhC,CAAA"}
1
+ {"version":3,"file":"passthrough.d.ts","sourceRoot":"","sources":["../../../src/proxy/adapters/passthrough.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAiD9C,eAAO,MAAM,kBAAkB,EAAE,YA4EhC,CAAA"}
package/dist/server.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  getMaxSessionsLimit,
7
7
  hashMessage,
8
8
  startProxyServer
9
- } from "./cli-9bsar34x.js";
9
+ } from "./cli-mx5hhmme.js";
10
10
  import"./cli-rtab0qa6.js";
11
11
  import"./cli-m9pfb7h9.js";
12
12
  import"./cli-a05ws7rb.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rynfar/meridian",
3
- "version": "1.27.1",
3
+ "version": "1.27.2",
4
4
  "description": "Local Anthropic API powered by your Claude Max subscription. One subscription, every agent.",
5
5
  "type": "module",
6
6
  "main": "./dist/server.js",