We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
engine marzano(0.1) language python `from pydantic import $X` => `from langchain_core.pydantic_v1 import $X`
from pydantic import ( BaseModel, ConfigDict, Extra, Field, ValidationError, create_model, root_validator, validate_arguments, )
gets mapped to (missing ()
(
from langchain_core.pydantic_v1 import BaseModel ConfigDict, Extra, Field, ValidationError, create_model, root_validator, validate_arguments
The text was updated successfully, but these errors were encountered:
FYI you can use this workaround:
engine marzano(0.1) language python `from $pydantic import $_` where { $pydantic <: contains `pydantic` => `langchain_core.pydantic_v1` }
Sorry, something went wrong.
No branches or pull requests
gets mapped to (missing
(
)The text was updated successfully, but these errors were encountered: