Unverified Commit 5b2155b0 authored by Jeff's avatar Jeff Committed by GitHub
Browse files

corrected Pydantic warning. (#2095)



* corrected Pydantic warning.

* Update clients/python/text_generation/types.py
Co-authored-by: default avatarDaniël de Kok <me@github.danieldk.eu>

---------
Co-authored-by: default avatarNicolas Patry <patry.nicolas@protonmail.com>
Co-authored-by: default avatarDaniël de Kok <me@github.danieldk.eu>
parent 1869ee2f
from enum import Enum
from pydantic import BaseModel, field_validator
from pydantic import BaseModel, field_validator, ConfigDict
from typing import Optional, List, Union, Any
from text_generation.errors import ValidationError
......@@ -452,5 +452,9 @@ class StreamResponse(BaseModel):
# Inference API currently deployed model
class DeployedModel(BaseModel):
# Disable warning for use of `model_` prefix in `model_id`. Be mindful about adding members
# with model_ prefixes, since this disables guardrails for colliding fields:
# https://github.com/pydantic/pydantic/issues/9177
model_config = ConfigDict(protected_namespaces=())
model_id: str
sha: str
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment