@forzalabs/remora 0.0.26 → 0.0.27
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/Constants.js
CHANGED
package/engines/ai/LLM.js
CHANGED
|
@@ -202,14 +202,14 @@ class LLM {
|
|
|
202
202
|
$schema: zod_2.z.string().describe('The schema of the producer. This should always be the same.'),
|
|
203
203
|
name: zod_2.z.string(),
|
|
204
204
|
description: zod_2.z.string(),
|
|
205
|
+
source: zod_2.z.string().describe('The name of the source linked to this producer.'),
|
|
206
|
+
settings: zod_2.z.object({
|
|
207
|
+
fileKey: zod_2.z.string().describe('The name of the file'),
|
|
208
|
+
fileType: zod_2.z.string().describe('The file extension (CSV | JSONL | JSON)')
|
|
209
|
+
}),
|
|
205
210
|
dimensions: zod_2.z.array(zod_2.z.object({
|
|
206
211
|
name: zod_2.z.string(),
|
|
207
212
|
// alias: z.string().optional(),
|
|
208
|
-
source: zod_2.z.string().describe('The name of the source linked to this producer.'),
|
|
209
|
-
settings: zod_2.z.object({
|
|
210
|
-
fileKey: zod_2.z.string().describe('The name of the file'),
|
|
211
|
-
fileType: zod_2.z.string().describe('The file extension (CSV | JSONL | JSON)')
|
|
212
|
-
}),
|
|
213
213
|
description: zod_2.z.string().optional(),
|
|
214
214
|
type: zod_2.z.enum(['string', 'number', 'datetime']),
|
|
215
215
|
pk: zod_2.z.boolean().optional(),
|