@ynhcj/xiaoyi-channel 0.0.96-next → 0.0.97-next

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.
@@ -0,0 +1,2 @@
1
+ import { xiaoyiProvider } from "./src/provider.js";
2
+ export default xiaoyiProvider;
@@ -0,0 +1,4 @@
1
+ // Provider discovery entry for fast-path provider resolution.
2
+ // Exported as default so normalizeDiscoveryModule can unwrap it via .default.
3
+ import { xiaoyiProvider } from "./src/provider.js";
4
+ export default xiaoyiProvider;
@@ -438,6 +438,7 @@ export const xiaoyiProvider = {
438
438
  * since the default agent timeout is 48 hours).
439
439
  */
440
440
  wrapStreamFn: (ctx) => {
441
+ console.log("[xiaoyiprovider] wrapStreamFn CALLED — provider resolved by openclaw");
441
442
  const underlying = ctx.streamFn;
442
443
  if (!underlying)
443
444
  return underlying;
@@ -2,6 +2,7 @@
2
2
  "id": "xiaoyi-channel",
3
3
  "channels": ["xiaoyi-channel"],
4
4
  "providers": ["xiaoyiprovider"],
5
+ "providerDiscoveryEntry": "./dist/provider-discovery.js",
5
6
  "skills": [],
6
7
  "configSchema": {
7
8
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ynhcj/xiaoyi-channel",
3
- "version": "0.0.96-next",
3
+ "version": "0.0.97-next",
4
4
  "description": "OpenClaw Xiaoyi Channel plugin - Xiaoyi A2A protocol integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",