@workglow/ai 0.2.31 → 0.2.32
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/README.md +21 -21
- package/dist/browser.js +2 -2
- package/dist/browser.js.map +3 -3
- package/dist/bun.js +2 -2
- package/dist/bun.js.map +3 -3
- package/dist/node.js +2 -2
- package/dist/node.js.map +3 -3
- package/dist/provider-utils/BaseCloudProvider.d.ts +46 -0
- package/dist/provider-utils/BaseCloudProvider.d.ts.map +1 -0
- package/dist/provider-utils/CloudProviderClient.d.ts +40 -0
- package/dist/provider-utils/CloudProviderClient.d.ts.map +1 -0
- package/dist/provider-utils/HfModelSearch.d.ts +33 -0
- package/dist/provider-utils/HfModelSearch.d.ts.map +1 -0
- package/dist/provider-utils/OpenAIShapedChat.d.ts +71 -0
- package/dist/provider-utils/OpenAIShapedChat.d.ts.map +1 -0
- package/dist/provider-utils/PipelineTaskMapping.d.ts +12 -0
- package/dist/provider-utils/PipelineTaskMapping.d.ts.map +1 -0
- package/dist/provider-utils/ToolCallParsers.d.ts +252 -0
- package/dist/provider-utils/ToolCallParsers.d.ts.map +1 -0
- package/dist/provider-utils/imageOutputHelpers.d.ts +60 -0
- package/dist/provider-utils/imageOutputHelpers.d.ts.map +1 -0
- package/dist/provider-utils/modelSearchQuery.d.ts +23 -0
- package/dist/provider-utils/modelSearchQuery.d.ts.map +1 -0
- package/dist/provider-utils/registerProvider.d.ts +43 -0
- package/dist/provider-utils/registerProvider.d.ts.map +1 -0
- package/dist/provider-utils.d.ts +23 -0
- package/dist/provider-utils.d.ts.map +1 -0
- package/dist/provider-utils.js +1247 -0
- package/dist/provider-utils.js.map +19 -0
- package/dist/task/VectorSimilarityTask.d.ts +1 -1
- package/dist/task/VectorSimilarityTask.d.ts.map +1 -1
- package/package.json +20 -14
package/dist/node.js
CHANGED
|
@@ -458,7 +458,7 @@ class QueuedExecutionStrategy {
|
|
|
458
458
|
throw new TaskConfigurationError(`Queue "${this.queueName}" is not registered and autoCreate is disabled. ` + `Register the queue before executing tasks with this provider.`);
|
|
459
459
|
}
|
|
460
460
|
const storage = new InMemoryQueueStorage(this.queueName);
|
|
461
|
-
await storage.
|
|
461
|
+
await storage.migrate();
|
|
462
462
|
this.limiter = new ConcurrencyLimiter(this.concurrency);
|
|
463
463
|
const server = new JobQueueServer(AiJob, {
|
|
464
464
|
storage,
|
|
@@ -7464,4 +7464,4 @@ export {
|
|
|
7464
7464
|
AI_PROVIDER_REGISTRY
|
|
7465
7465
|
};
|
|
7466
7466
|
|
|
7467
|
-
//# debugId=
|
|
7467
|
+
//# debugId=C49AE667395C5D5064756E2164756E21
|