Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created September 8, 2025 18:13
Show Gist options
  • Select an option

  • Save dontpaniclabsgists/3083f9e74fe818a3d83ddc7177d8112c to your computer and use it in GitHub Desktop.

Select an option

Save dontpaniclabsgists/3083f9e74fe818a3d83ddc7177d8112c to your computer and use it in GitHub Desktop.
# 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