(self)
| 2589 | |
| 2590 | @model_validator(mode="after") |
| 2591 | def validate_after(self) -> "CreateEmbeddingRequest": |
| 2592 | self.normalized_input() |
| 2593 | return self |
| 2594 | |
| 2595 | def normalized_input(self) -> List[Union[str, List[int]]]: |
| 2596 | if isinstance(self.input, str): |
nothing calls this directly
no test coverage detected