-
Notifications
You must be signed in to change notification settings - Fork 16.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add enum output parser #5165
add enum output parser #5165
Conversation
|
||
@root_validator() | ||
def raise_deprecation(cls, values: Dict) -> Dict: | ||
enum = values["enum"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this not new? what the deprecation warning?
|
||
|
||
class EnumOutputParser(BaseOutputParser): | ||
enum: Type[Enum] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe too much but could add a strict: bool
param and when not strict is one then parser just checks if any of the enum vals occur in the response (instead of exactly matching)
No description provided.