agentic-ui-libs 0.1.5 → 0.1.6
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 +7 -7
- package/dist/ui-libs.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21866,7 +21866,7 @@ const Da = ({
|
|
|
21866
21866
|
const r = window.location.origin, n = EW(e.type || "human", t);
|
|
21867
21867
|
return `${r}/agenticai/assets/${n}/${e.name}.svg`;
|
|
21868
21868
|
}, Uv = (e) => {
|
|
21869
|
-
if (!e) return "
|
|
21869
|
+
if (!e) return "assets/icons/models/custom-api.svg";
|
|
21870
21870
|
const t = e.toLowerCase(), r = {
|
|
21871
21871
|
// OpenAI variations
|
|
21872
21872
|
openai: "Open AI.svg",
|
|
@@ -21903,11 +21903,11 @@ const Da = ({
|
|
|
21903
21903
|
customapi: "custom-api.svg"
|
|
21904
21904
|
};
|
|
21905
21905
|
if (r[t])
|
|
21906
|
-
return `
|
|
21906
|
+
return `assets/icons/models/${r[t]}`;
|
|
21907
21907
|
for (const [n, a] of Object.entries(r))
|
|
21908
21908
|
if (t.includes(n) || n.includes(t))
|
|
21909
|
-
return `
|
|
21910
|
-
return "
|
|
21909
|
+
return `assets/icons/models/${a}`;
|
|
21910
|
+
return "assets/icons/models/custom-api.svg";
|
|
21911
21911
|
}, MW = {
|
|
21912
21912
|
xs: "w-6 h-6 text-xs",
|
|
21913
21913
|
small: "w-8 h-8 text-sm",
|
|
@@ -22184,11 +22184,11 @@ const LW = ({
|
|
|
22184
22184
|
customapi: "custom-api.svg"
|
|
22185
22185
|
};
|
|
22186
22186
|
if (r[t])
|
|
22187
|
-
return `
|
|
22187
|
+
return `assets/icons/models/${r[t]}`;
|
|
22188
22188
|
for (const [n, a] of Object.entries(r))
|
|
22189
22189
|
if (t.includes(n) || n.includes(t))
|
|
22190
|
-
return `
|
|
22191
|
-
return "
|
|
22190
|
+
return `assets/icons/models/${a}`;
|
|
22191
|
+
return "assets/icons/models/custom-api.svg";
|
|
22192
22192
|
}, FW = (e) => {
|
|
22193
22193
|
if (!e) return "";
|
|
22194
22194
|
const t = e.toLowerCase(), r = {
|