| 58 | |
| 59 | |
| 60 | class DocumentCreate(DocumentBase): |
| 61 | collection_id: str |
| 62 | embedding: list[float] | None = ( |
| 63 | None # Embedding can be added during creation or later |
| 64 | ) |
| 65 | |
| 66 | |
| 67 | class DocumentUpdate(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected