Open sdk1990 opened 1 month ago
+1 I'm also running into this
Strangely, I was able to fix it by changing line 1831 in node_modules/zod/lib/types.js
:
_getCached() {
if (this._cached != null) // note using non-strict equality fixes it somehow
return this._cached;
const shape = this._def.shape();
const keys = util_1.util.objectKeys(shape);
return (this._cached = { shape, keys });
}
This is an odd issue. Feel like zod bug... I'm trying to come up with a narrower repro.
This seems to work fine
import { z } from 'zod';
export const nutritionGoalInputSchema = z.object({
age: z
.number()
.min(0, 'Age must be a non-negative number.')
.describe(
'The age of the individual in years. Must be a non-negative number.'
),
gender: z
.enum(['female', 'male'])
.describe(
'The biological gender of the individual, either "female" or "male".'
),
weightKg: z
.number()
.min(0, 'Weight must be a non-negative number.')
.describe(
'The body weight of the individual in kilograms. Must be a non-negative number.'
),
lengthCm: z
.number()
.min(0, 'Height must be a non-negative number.')
.describe(
'The height of the individual in centimeters. Must be a non-negative number.'
),
activityLevel: z
.enum([
'extra_active',
'very_active',
'moderately_active',
'lightly_active',
'sedentary',
])
.describe(
'The general activity level (Physical Activity Level) of the individual throughout the day excluding formal exercise."'
),
dietaryGoals: z.object({
goalType: z
.enum(['fat_loss', 'muscle_gain'])
.describe(
'The primary dietary objective of the individual. Options are: "fat_loss" for reducing body fat percentage, and "muscle_gain" for increasing muscle mass.'
),
}),
dietaryRestrictions: z
.array(z.union([z.enum(['1', '2', '3']), z.string()]))
.optional()
.describe(
'A list of dietary restrictions or preferences for the individual. These can include specific dietary patterns like "vegan", "vegetarian", "kosher" or "halal"'
),
});
export const nutritionGoalOutputSchema = z.object({
specs: z.object({
calories: z
.number()
.min(0, 'Calories must be a non-negative number.')
.describe(
"The total estimated energy requirement for the individual in kilocalories (kcal) per day. This is calculated based on the individual's activity level, age, weight, height, gender, and dietary goals."
),
protein: z
.number()
.min(0, 'Protein must be a non-negative number.')
.describe(
'The total daily recommended protein intake in grams (g) for the individual, calculated based on body weight, activity level, and dietary objectives.'
),
fat: z
.number()
.min(0, 'Fat must be a non-negative number.')
.describe(
'The total daily recommended fat intake in grams (g) for the individual, derived from the percentage of total calories allocated to dietary fat based on activity level and goals.'
),
carbs: z
.number()
.min(0, 'Carbohydrates must be a non-negative number.')
.describe(
'The total daily recommended carbohydrate intake in grams (g) for the individual, derived from the remaining calories after accounting for protein and fat, adjusted for dietary preferences and activity level.'
),
}),
});
console.log(
nutritionGoalInputSchema.parse({
age: 33,
gender: 'female',
weightKg: 88,
lengthCm: 33,
activityLevel: 'sedentary',
dietaryGoals: {
goalType: 'muscle_gain',
},
dietaryRestrictions: ['1'],
} as z.infer<typeof nutritionGoalInputSchema>)
);
console.log(
nutritionGoalOutputSchema.parse({
specs: {
calories: 123,
carbs: 2344,
fat: 343,
protein: 233
},
} as z.infer<typeof nutritionGoalOutputSchema>)
);
Describe the bug I have configured Genkit to be working with Cloud Functions using the onFlow wrapper. When running a flow from Genkit Tools UI I receive the following error:
Cannot destructure property 'shape' of 'this._getCached(...)' as it is undefined.
To Reproduce Init Genkit:
Zod schema's:
Flow:
Expected behavior I expected the flow to run as desired. When I test the prompt from the Genkit Tools UI, it works as expected.
Screenshots Failing flow:
Runtime (please complete the following information):
** Node version
Additional context Using Cloud Functions 2nd gen with local emulators.