@bytexbyte/nxtlinq-ai-agent-sdk 1.6.22 → 1.6.23

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.
@@ -1 +1 @@
1
- {"version":3,"file":"MessageList.d.ts","sourceRoot":"","sources":["../../../src/components/ui/MessageList.tsx"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAoB/B,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EA2K/B,CAAC"}
1
+ {"version":3,"file":"MessageList.d.ts","sourceRoot":"","sources":["../../../src/components/ui/MessageList.tsx"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAoB/B,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EA4K/B,CAAC"}
@@ -48,7 +48,8 @@ export const MessageList = () => {
48
48
  if (!modelValue)
49
49
  return '';
50
50
  // Special case: show "Adi" for specific serviceId
51
- if (serviceId === 'e48fc2b9-a7d1-49e3-85cb-9d621a0bf774') {
51
+ const targetServiceId = 'e48fc2b9-a7d1-49e3-85cb-9d621a0bf774';
52
+ if (serviceId && serviceId.trim() === targetServiceId) {
52
53
  return 'Adi';
53
54
  }
54
55
  // Find model in the list returned by API
@@ -1 +1 @@
1
- {"version":3,"file":"ModelSelector.d.ts","sourceRoot":"","sources":["../../../src/components/ui/ModelSelector.tsx"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAkJjC,CAAC"}
1
+ {"version":3,"file":"ModelSelector.d.ts","sourceRoot":"","sources":["../../../src/components/ui/ModelSelector.tsx"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAmJjC,CAAC"}
@@ -10,7 +10,8 @@ export const ModelSelector = () => {
10
10
  // Get fallback model label (first available model or 'Unknown')
11
11
  // Special case: show "Adi" for specific serviceId
12
12
  const getDisplayLabel = (label) => {
13
- if (serviceId === 'e48fc2b9-a7d1-49e3-85cb-9d621a0bf774') {
13
+ const targetServiceId = 'e48fc2b9-a7d1-49e3-85cb-9d621a0bf774';
14
+ if (serviceId && serviceId.trim() === targetServiceId) {
14
15
  return 'Adi';
15
16
  }
16
17
  return label;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytexbyte/nxtlinq-ai-agent-sdk",
3
- "version": "1.6.22",
3
+ "version": "1.6.23",
4
4
  "description": "Nxtlinq AI Agent SDK - Proprietary Software with enhanced async operation handling",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",