This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from goalchain import Field, ValidationError, Goal, GoalChain | |
import os | |
os.environ["OPENAI_API_KEY"] = "sk-ABC..." # SPECIFY OPENAI API KEY | |
def quantity_validator(value): | |
try: | |
value = int(value) | |
except (ValueError, TypeError): | |
raise ValidationError("Quantity must be a valid number") |