Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for EmbeddedModel (1.64 seconds)

  1. tests/test_compat.py

                return False
    
        class EmbeddedModel(BaseModel):
            model_config = ConfigDict(arbitrary_types_allowed=True)
            value: str | Missing = Missing()
    
        class Model(BaseModel):
            model_config = ConfigDict(
                arbitrary_types_allowed=True,
            )
            value: str | Missing = Missing()
            embedded_model: EmbeddedModel = EmbeddedModel()
    
        @app.post("/")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top