Spaces:
Sleeping
Sleeping
github-actions[bot]
Sync backend to Hugging Face Space (commit: 39b5c807918249fa80049d49f4b6a74d6a0ed1fc)
6d86412 | from pydantic import BaseModel, Field | |
| class DoctorProfile(BaseModel): | |
| code_name: str | |
| source: str | |
| vector: list[float] = Field(default_factory=list) | |
| cluster_id: int | None = None | |
| traits: dict[str, float] = Field(default_factory=dict) | |