Created
September 8, 2025 18:13
-
-
Save dontpaniclabsgists/3083f9e74fe818a3d83ddc7177d8112c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example of our service architecture | |
| class FaceDetectionService: | |
| def detect_faces(self, request: FaceDetectionRequest) -> FaceDetectionResponse: | |
| # Implementation using DeepFace or Azure Face API | |
| pass | |
| class ArchiveService: | |
| def store_faces(self, request: StoreFacesRequest) -> StoreFacesResponse: | |
| # Store face embeddings in Qdrant vector database | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment