utilitas 2000.3.45 → 2000.3.46
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/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/embedding.mjs +3 -0
- package/lib/manifest.mjs +1 -1
- package/package.json +1 -1
package/lib/embedding.mjs
CHANGED
|
@@ -142,6 +142,9 @@ const embed = async (input, options = {}) => {
|
|
|
142
142
|
body.model = `${source ? `${source}/` : ''}${body.model}`;
|
|
143
143
|
case OPENAI:
|
|
144
144
|
resp = await client.embeddings.create(body);
|
|
145
|
+
break;
|
|
146
|
+
default:
|
|
147
|
+
throw new Error(`Unsupported provider: ${provider}`);
|
|
145
148
|
}
|
|
146
149
|
assert(resp?.data?.length, 'No embeddings returned.', 500);
|
|
147
150
|
if (options?.raw) { return resp; }
|
package/lib/manifest.mjs
CHANGED