-
Notifications
You must be signed in to change notification settings - Fork 16.3k
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
core[patch]: pydantic ^2.5 #26396
core[patch]: pydantic ^2.5 #26396
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
@@ -31,7 +31,7 @@ class DallEAPIWrapper(BaseModel): | |||
async_client: Any = Field(default=None, exclude=True) #: :meta private: | |||
model_name: str = Field(default="dall-e-2", alias="model") | |||
model_kwargs: Dict[str, Any] = Field(default_factory=dict) | |||
openai_api_key: Secret[str] = Field( | |||
openai_api_key: SecretStr = Field( |
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.
thank you
.gitignore
Outdated
@@ -183,3 +183,5 @@ docs/docs/templates | |||
|
|||
prof | |||
virtualenv/ | |||
|
|||
$GITHUB_OUTPUT |
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.
why is this necessary?
@@ -54,24 +54,15 @@ jobs: | |||
run: | | |||
make test | |||
|
|||
- name: Ensure the tests did not create any additional files |
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.
not necessary?
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.
just moves it to end so it checks min tests also
No description provided.